From 1958f545a7b03dd1b5f991c4972c41c1235a3007 Mon Sep 17 00:00:00 2001 From: Jake Ward Date: Sat, 3 Oct 2020 07:54:50 +0100 Subject: [PATCH] style(theme): Add theme "blueberry" (#531) * Add blueberry theme * Change text color --- themes/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/themes/index.js b/themes/index.js index 172bda7..0a98213 100644 --- a/themes/index.js +++ b/themes/index.js @@ -227,6 +227,12 @@ const themes = { text_color: "ffffff", bg_color: "20232a", }, + blueberry: { + title_color: "82aaff", + icon_color: "89ddff", + text_color: "27e8a7", + bg_color: "242938" + } }; module.exports = themes;