markdown-home-tab/src/modules/theme/constants/theme.ts
2023-04-26 22:26:04 +06:00

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",
};