chore: kanban template

This commit is contained in:
e2e
2026-06-21 18:23:51 +02:00
commit c8a1fa4519
209 changed files with 215578 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
import { createTheme, type MantineThemeOverride } from '@mantine/core'
import { generateColors } from '@mantine/colors-generator'
import base from './base.json'
import active from './active.json'
import { palettes } from './palettes'
export type Palette = {
name: string
description?: string
primaryColor?: string
bases?: Record<string, string>
}
// Each palette extends the shared base (fonts, radius, component defaults) and
// auto-expands its `bases` hexes into full 10-shade Mantine scales, so a palette
// only declares one colour per semantic role.
export const buildTheme = (palette: Palette): MantineThemeOverride => {
const colors = Object.fromEntries(
Object.entries(palette.bases ?? {}).map(([role, hex]) => [role, generateColors(hex)]),
)
return createTheme({
...(base as MantineThemeOverride),
...(palette.primaryColor ? { primaryColor: palette.primaryColor } : {}),
...(Object.keys(colors).length ? { colors } : {}),
})
}
export const themes: Record<string, MantineThemeOverride> = Object.fromEntries(
Object.entries(palettes).map(([id, palette]) => [id, buildTheme(palette as Palette)]),
)
export { palettes }
export const activeId = active.id
export const activeTheme: MantineThemeOverride = themes[active.id] ?? themes.default
// Back-compat: existing imports of `theme` resolve to the active palette.
export const theme = activeTheme