-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy paththemeConfig.ts
More file actions
26 lines (23 loc) · 836 Bytes
/
themeConfig.ts
File metadata and controls
26 lines (23 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export type Theme = "light" | "dark" | "system";
export type ColorTheme =
| "default"
| "iridescent-void"
| "carbon"
| "purple-stuff"
| "hot-tamale"
| "custom";
export type FontFamily = "dm-sans" | "inter" | "plus-jakarta-sans";
export const COLOR_THEMES: { id: ColorTheme; label: string }[] = [
{ id: "default", label: "Default" },
{ id: "iridescent-void", label: "Iridescent Void" },
{ id: "carbon", label: "Carbon" },
{ id: "purple-stuff", label: "Deep Purple" },
{ id: "hot-tamale", label: "Hot Tamale" },
{ id: "custom", label: "Custom" },
];
export const FONT_FAMILIES: { id: FontFamily; label: string }[] = [
{ id: "inter", label: "Inter" },
{ id: "dm-sans", label: "DM Sans" },
{ id: "plus-jakarta-sans", label: "Plus Jakarta Sans" },
];
export const DEFAULT_COLOR_THEME: ColorTheme = "carbon";