template_0205

This commit is contained in:
Sofio
2026-02-05 13:16:05 +08:00
commit d93e4d9c9f
197 changed files with 52810 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { colors as colorsLight } from "./colors"
import { colors as colorsDark } from "./colorsDark"
import { spacing as spacingLight } from "./spacing"
import { spacing as spacingDark } from "./spacingDark"
import { timing } from "./timing"
import type { Theme } from "./types"
import { typography } from "./typography"
// Here we define our themes.
export const lightTheme: Theme = {
colors: colorsLight,
spacing: spacingLight,
typography,
timing,
isDark: false,
}
export const darkTheme: Theme = {
colors: colorsDark,
spacing: spacingDark,
typography,
timing,
isDark: true,
}