-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e206da
commit 77335a9
Showing
6 changed files
with
12 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,18 @@ | ||
// src/themes/index.ts | ||
import baseDark from "./dark/base"; | ||
import baseLight from "./light/base"; | ||
import blueLight from "./light/blue"; | ||
// import pinkLight from "./light/pink"; | ||
// import greenLight from "./light/green"; | ||
import { IThemes } from "./utils"; | ||
|
||
const THEMES = { | ||
const themeList = { | ||
baseLight: "baseLight", | ||
blueLight: "blueLight", | ||
baseDark: "baseDark", | ||
// pinkLight: "pinkLight", | ||
// greenLight: "greenLight", | ||
}; | ||
|
||
export type ThemeType = keyof typeof THEMES; | ||
export type IThemeType = keyof typeof themeList; | ||
|
||
export const zeniThemes: IThemes = { | ||
baseLight, | ||
baseDark, | ||
blueLight, | ||
// pinkLight, | ||
// greenLight, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters