mirror of
https://github.com/muerwre/markdown-home-tab.git
synced 2025-04-25 00:46:41 +07:00
18 lines
398 B
TypeScript
18 lines
398 B
TypeScript
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",
|
|
};
|