mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 08:41:37 +00:00
10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
export const MEDIA = '(prefers-color-scheme: dark)';
|
|
export const THEME_CATPUCCIN_MAP = {
|
|
latte: 'light' as const,
|
|
mocha: 'dark' as const,
|
|
};
|
|
export const THEME_MAP = {
|
|
light: 'latte' as const,
|
|
dark: 'mocha' as const,
|
|
};
|