style(theme): Add monokai theme (#124)

* style(theme): Add new theme

* style(theme): Change monokai style

* style(theme): Change monokai style

* feat(theme): Add theme randomizer

* fix(theme): Make randomizer asynchronous

* feat(theme): Add theme randomizer

* fix(theme): Fix everything back ._.

* fix(theme): Change theme based on review
This commit is contained in:
Naufal Yudhistira 2020-07-24 23:28:23 +07:00 committed by GitHub
parent f355f48bb4
commit 7b509d3128
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,6 +77,12 @@ const themes = {
text_color: "6e93b5", text_color: "6e93b5",
bg_color: "172f45", bg_color: "172f45",
}, },
monokai: {
title_color: "eb1f6a",
icon_color: "e28905",
text_color: "f1f1eb",
bg_color: "272822",
}
}; };
module.exports = themes; module.exports = themes;