Update builtin themes

This commit is contained in:
syuilo
2019-02-07 02:36:02 +09:00
parent b91de4ac12
commit 7dfe7005e0
6 changed files with 50 additions and 3 deletions

View File

@ -23,6 +23,7 @@ export const colorfulTheme: Theme = require('../theme/colorful.json5');
export const rainyTheme: Theme = require('../theme/rainy.json5');
export const mauveTheme: Theme = require('../theme/mauve.json5');
export const grayTheme: Theme = require('../theme/gray.json5');
export const tweetDeckTheme: Theme = require('../theme/tweet-deck.json5');
export const builtinThemes = [
lightTheme,
@ -38,6 +39,7 @@ export const builtinThemes = [
rainyTheme,
mauveTheme,
grayTheme,
tweetDeckTheme,
];
export function applyTheme(theme: Theme, persisted = true) {