Add new theme

This commit is contained in:
syuilo
2018-10-08 15:23:20 +09:00
parent 567cedc7cc
commit a70ced8e90
2 changed files with 22 additions and 0 deletions

View File

@ -13,12 +13,14 @@ export type Theme = {
export const lightTheme: Theme = require('../theme/light.json5');
export const darkTheme: Theme = require('../theme/dark.json5');
export const pinkTheme: Theme = require('../theme/pink.json5');
export const blackTheme: Theme = require('../theme/black.json5');
export const halloweenTheme: Theme = require('../theme/halloween.json5');
export const builtinThemes = [
lightTheme,
darkTheme,
pinkTheme,
blackTheme,
halloweenTheme
];