From e18f57be3e2e17c6401e7e9aceb395a44315afc2 Mon Sep 17 00:00:00 2001 From: Ryuya Ikeda Date: Sun, 2 Aug 2020 16:13:00 +0900 Subject: [PATCH] style(theme): add solarized themes (#281) --- themes/index.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/themes/index.js b/themes/index.js index 6460dd3..2f0c78a 100644 --- a/themes/index.js +++ b/themes/index.js @@ -125,6 +125,18 @@ const themes = { text_color: "ffd95b", bg_color: "000000", }, + "solarized-dark": { + title_color: "268bd2", + icon_color: "b58900", + text_color: "859900", + bg_color: "002b36", + }, + "solarized-light": { + title_color: "268bd2", + icon_color: "b58900", + text_color: "859900", + bg_color: "fdf6e3", + }, }; module.exports = themes;