mirror of
https://github.com/muerwre/markdown-home-tab.git
synced 2025-04-25 00:46:41 +07:00
added theme detection
This commit is contained in:
parent
378687df52
commit
70f6dcd495
11 changed files with 133 additions and 19 deletions
|
@ -1,3 +1,18 @@
|
|||
import { ColorSettings } from "~/modules/settings/context/SettingsContext";
|
||||
|
||||
export enum Theme {
|
||||
Dark = "dark",
|
||||
Light = "light",
|
||||
}
|
||||
|
||||
export const defaultDarkTheme: ColorSettings = {
|
||||
backgroundColor: "#2e2e2e",
|
||||
textColor: "#eeeeee",
|
||||
linkColor: "#25bfe6",
|
||||
};
|
||||
|
||||
export const defaultLightTheme: ColorSettings = {
|
||||
backgroundColor: "#eeeeee",
|
||||
textColor: "#2e2e2e",
|
||||
linkColor: "#25bfe6",
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue