diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-08 15:23:20 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-08 15:23:20 +0900 |
| commit | a70ced8e90dfdff9744bc3ce674d3bb2afa83ab2 (patch) | |
| tree | 9516a731cdf7217790a368f0e8ea073fd20d503e /src/client/app/theme.ts | |
| parent | Improve usability (diff) | |
| download | sharkey-a70ced8e90dfdff9744bc3ce674d3bb2afa83ab2.tar.gz sharkey-a70ced8e90dfdff9744bc3ce674d3bb2afa83ab2.tar.bz2 sharkey-a70ced8e90dfdff9744bc3ce674d3bb2afa83ab2.zip | |
Add new theme
Diffstat (limited to 'src/client/app/theme.ts')
| -rw-r--r-- | src/client/app/theme.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/app/theme.ts b/src/client/app/theme.ts index 828ce33862..9c5be74fa1 100644 --- a/src/client/app/theme.ts +++ b/src/client/app/theme.ts @@ -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 ]; |