chore: starter template

This commit is contained in:
e2e
2026-07-10 20:07:50 +02:00
commit 44d0c8239b
157 changed files with 6462 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{
"name": "Default",
"description": "Confident indigo with soft elevation — a solid, non-gray starting point.",
"brand": {
"colors": { "primary": "#4f46e5", "secondary": "#0ea5e9", "accent": "#f59e0b" },
"fonts": { "heading": "Inter", "body": "Inter" }
},
"structure": {
"defaultRadius": "md",
"autoContrast": true,
"primaryShade": { "light": 6, "dark": 5 },
"shadows": {
"xs": "0 1px 3px rgba(0,0,0,0.08)",
"sm": "0 2px 8px rgba(0,0,0,0.10)",
"md": "0 6px 18px -4px rgba(0,0,0,0.15)",
"lg": "0 12px 32px -8px rgba(0,0,0,0.20)",
"xl": "0 20px 48px -12px rgba(0,0,0,0.24)"
},
"defaultGradient": { "from": "primary.5", "to": "secondary.6", "deg": 135 },
"components": {
"Card": { "defaultProps": { "shadow": "sm", "radius": "md", "withBorder": true } },
"Paper": { "defaultProps": { "shadow": "sm", "radius": "md" } }
}
}
}

View File

@@ -0,0 +1,8 @@
// Generated by the fabric-theme tool — do not edit by hand.
// One JSON per theme. Each bundles a `brand` (colours + fonts) and a
// `structure` (radius/shadows/spacing) section. Add themes via the fabric-theme tool.
import t_default from './default.json'
export const themeSpecs: Record<string, unknown> = {
default: t_default,
}