From 9abba006a96fb959c6ed54cb92aeea5bb1ad6124 Mon Sep 17 00:00:00 2001 From: Gustavo Varallo Date: Thu, 27 Aug 2020 10:58:31 -0300 Subject: [PATCH] style(theme): Added "react" theme (#423) Made with the color scheme from [ReactJS Website](https://reactjs.org/). --- themes/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/themes/index.js b/themes/index.js index 8da43e8..35ada57 100644 --- a/themes/index.js +++ b/themes/index.js @@ -203,6 +203,12 @@ const themes = { text_color: "ebcfb2", bg_color: "373f51", }, + react: { + title_color: "61dafb", + icon_color: "61dafb", + text_color: "ffffff", + bg_color: "20232a", + }, }; module.exports = themes;