style(theme): add solarized themes (#281)

This commit is contained in:
Ryuya Ikeda 2020-08-02 16:13:00 +09:00 committed by GitHub
parent 8dca589a13
commit e18f57be3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -125,6 +125,18 @@ const themes = {
text_color: "ffd95b", text_color: "ffd95b",
bg_color: "000000", 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; module.exports = themes;