chore: germantax customer project

This commit is contained in:
e2e
2026-07-11 09:05:27 +02:00
commit edcccc2a6c
145 changed files with 9830 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
import { createTheme, type MantineColorsTuple } from '@pikku/mantine/core'
const quorum: MantineColorsTuple = [
'#EAF1ED',
'#D5E6DB',
'#B0CFBB',
'#8FCBA9',
'#4E9B72',
'#2E6F54',
'#1F5641',
'#1A4837',
'#143A2C',
'#0E1F18',
]
const amber: MantineColorsTuple = [
'#FDF7EE',
'#F6EEDD',
'#F0E3C4',
'#EBC57A',
'#D4A84E',
'#C09030',
'#B08A3E',
'#8A6A1E',
'#6E5218',
'#523D12',
]
export const theme = createTheme({
primaryColor: 'quorum',
primaryShade: { light: 6, dark: 5 },
colors: { quorum, amber },
fontFamily: "'Public Sans', system-ui, sans-serif",
fontFamilyMonospace: "'IBM Plex Mono', ui-monospace, Menlo, monospace",
headings: {
fontFamily: "'Source Serif 4', Georgia, serif",
fontWeight: '600',
},
defaultRadius: 'sm',
})