From f3c39506b2138a2b95ded736d24982c9fcd21b3f Mon Sep 17 00:00:00 2001 From: Issy <48881813+issy@users.noreply.github.com> Date: Sat, 3 Apr 2021 15:08:18 +0100 Subject: [PATCH] style(themes): Add GitHub dark theme (#758) This styling falls in line with the recently released GitHub dark mode Co-authored-by: Anurag Hazra --- themes/index.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/themes/index.js b/themes/index.js index b2be9b832aecb..f63f73b6b7973 100644 --- a/themes/index.js +++ b/themes/index.js @@ -261,7 +261,7 @@ const themes = { title_color: "bf4a3f", icon_color: "a64833", text_color: "d9c8a9", - bg_color: "402b23", + bg_color: "402b23" }, outrun:{ title_color: "ffcc00", @@ -281,6 +281,12 @@ const themes = { text_color: "718CA1", bg_color: "1D252C", }, + github_dark: { + title_color: "58A6FF", + icon_color: "1F6FEB", + text_color: "C3D1D9", + bg_color: "0D1117" + } }; module.exports = themes;