@orange-halo/tokens 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,184 @@
1
+ {
2
+ "$description": "Component Design Tokens — Orange Halo Visual DNA applied. Each component has personality knobs.",
3
+ "button": {
4
+ "$description": "Button — chunky, tactile, playful with offset shadows",
5
+ "base": {
6
+ "fontFamily": { "$type": "fontFamily", "$value": "{typography.label.fontFamily}" },
7
+ "fontWeight": { "$type": "fontWeight", "$value": "{font.weight.medium}" },
8
+ "letterSpacing": { "$type": "dimension", "$value": "{font.letterSpacing.wide}" },
9
+ "borderRadius": { "$type": "dimension", "$value": "{radius.md}" },
10
+ "borderWidth": { "$type": "dimension", "$value": "2.5px" },
11
+ "transitionDuration": { "$type": "duration", "$value": "{motion.snappy}" },
12
+ "transitionEasing": { "$type": "cubicBezier", "$value": "{motion.easePlayful}" }
13
+ },
14
+ "size": {
15
+ "sm": {
16
+ "fontSize": { "$type": "dimension", "$value": "{font.size.sm}" },
17
+ "paddingX": { "$type": "dimension", "$value": "{spacing.3}" },
18
+ "paddingY": { "$type": "dimension", "$value": "{spacing.2}" },
19
+ "minHeight": { "$type": "dimension", "$value": "36px" },
20
+ "gap": { "$type": "dimension", "$value": "{spacing.1-5}" }
21
+ },
22
+ "md": {
23
+ "fontSize": { "$type": "dimension", "$value": "{font.size.sm}" },
24
+ "paddingX": { "$type": "dimension", "$value": "{spacing.4}" },
25
+ "paddingY": { "$type": "dimension", "$value": "{spacing.2-5}" },
26
+ "minHeight": { "$type": "dimension", "$value": "44px" },
27
+ "gap": { "$type": "dimension", "$value": "{spacing.2}" }
28
+ },
29
+ "lg": {
30
+ "fontSize": { "$type": "dimension", "$value": "{font.size.base}" },
31
+ "paddingX": { "$type": "dimension", "$value": "{spacing.6}" },
32
+ "paddingY": { "$type": "dimension", "$value": "{spacing.3-5}" },
33
+ "minHeight": { "$type": "dimension", "$value": "52px" },
34
+ "gap": { "$type": "dimension", "$value": "{spacing.2-5}" }
35
+ }
36
+ },
37
+ "variant": {
38
+ "primary": {
39
+ "$description": "Primary — warm orange, chunky tactile shadow",
40
+ "background": { "$type": "color", "$value": "{color.brand.primary}" },
41
+ "backgroundHover": { "$type": "color", "$value": "{color.brand.primaryHover}" },
42
+ "backgroundActive": { "$type": "color", "$value": "{color.brand.primaryActive}" },
43
+ "color": { "$type": "color", "$value": "{color.surface.white}" },
44
+ "borderColor": { "$type": "color", "$value": "{color.brand.primary}" },
45
+ "shadowColor": { "$type": "color", "$value": "{shadow.primary}" }
46
+ },
47
+ "secondary": {
48
+ "$description": "Secondary — cream surface with emphasis border",
49
+ "background": { "$type": "color", "$value": "{color.surface.base}" },
50
+ "backgroundHover": { "$type": "color", "$value": "{color.surface.white}" },
51
+ "backgroundActive": { "$type": "color", "$value": "{color.surface.activePressed}" },
52
+ "color": { "$type": "color", "$value": "{color.text.primary}" },
53
+ "borderColor": { "$type": "color", "$value": "{color.border.emphasis}" },
54
+ "shadowColor": { "$type": "color", "$value": "{shadow.secondary}" }
55
+ },
56
+ "accent": {
57
+ "$description": "Accent — blue, modern counterbalance",
58
+ "background": { "$type": "color", "$value": "{color.accent.default}" },
59
+ "backgroundHover": { "$type": "color", "$value": "{color.accent.hover}" },
60
+ "backgroundActive": { "$type": "color", "$value": "{color.accent.active}" },
61
+ "color": { "$type": "color", "$value": "{color.surface.white}" },
62
+ "borderColor": { "$type": "color", "$value": "{color.accent.default}" },
63
+ "shadowColor": { "$type": "color", "$value": "{color.accent.shadow}" }
64
+ }
65
+ },
66
+ "focus": {
67
+ "$description": "Warm, friendly focus ring",
68
+ "ringWidth": { "$type": "dimension", "$value": "3px" },
69
+ "ringColor": { "$type": "color", "$value": "{focus.ringColor}" },
70
+ "glowColor": { "$type": "color", "$value": "{focus.glowColor}" }
71
+ }
72
+ },
73
+ "input": {
74
+ "$description": "Input — chunky border, inset shadow, tactile feel",
75
+ "base": {
76
+ "fontFamily": { "$type": "fontFamily", "$value": "{font.family.sans}" },
77
+ "fontSize": { "$type": "dimension", "$value": "{font.size.lg}" },
78
+ "lineHeight": { "$type": "number", "$value": "{font.lineHeight.normal}" },
79
+ "borderRadius": { "$type": "dimension", "$value": "{radius.md}" },
80
+ "borderWidth": { "$type": "dimension", "$value": "2.5px" },
81
+ "transitionDuration": { "$type": "duration", "$value": "{motion.snappy}" },
82
+ "transitionEasing": { "$type": "cubicBezier", "$value": "{motion.easeGentle}" }
83
+ },
84
+ "size": {
85
+ "md": {
86
+ "paddingX": { "$type": "dimension", "$value": "{spacing.4}" },
87
+ "paddingY": { "$type": "dimension", "$value": "{spacing.3}" },
88
+ "minHeight": { "$type": "dimension", "$value": "48px" }
89
+ }
90
+ },
91
+ "state": {
92
+ "default": {
93
+ "background": { "$type": "color", "$value": "{color.surface.base}" },
94
+ "borderColor": { "$type": "color", "$value": "{color.border.emphasis}", "$description": "WCAG 3:1 contrast for UI elements" },
95
+ "color": { "$type": "color", "$value": "{color.text.primary}" },
96
+ "placeholderColor": { "$type": "color", "$value": "{color.text.secondary}", "$description": "WCAG readable placeholder" },
97
+ "shadowColor": { "$type": "color", "$value": "{shadow.secondary}" }
98
+ },
99
+ "hover": {
100
+ "borderColor": { "$type": "color", "$value": "{color.border.hover}" }
101
+ },
102
+ "focus": {
103
+ "background": { "$type": "color", "$value": "{color.surface.white}" },
104
+ "borderColor": { "$type": "color", "$value": "{color.border.focus}" },
105
+ "focusRingColor": { "$type": "color", "$value": "{color.border.focusInner}" }
106
+ },
107
+ "error": {
108
+ "borderColor": { "$type": "color", "$value": "{color.feedback.error}" },
109
+ "background": { "$type": "color", "$value": "{color.feedback.errorSubtle}" },
110
+ "shadowColor": { "$type": "color", "$value": "{shadow.error}" }
111
+ }
112
+ }
113
+ },
114
+ "card": {
115
+ "$description": "Card — raised surface with visible frame",
116
+ "base": {
117
+ "background": { "$type": "color", "$value": "{color.surface.raised}" },
118
+ "borderRadius": { "$type": "dimension", "$value": "{shape.container}" },
119
+ "borderWidth": { "$type": "dimension", "$value": "{border.width.1}" },
120
+ "borderColor": { "$type": "color", "$value": "{color.border.default}" },
121
+ "shadow": { "$type": "shadow", "$value": "{elevation.soft}" },
122
+ "padding": { "$type": "dimension", "$value": "{spacing.5}" }
123
+ },
124
+ "interactive": {
125
+ "$description": "Interactive card — gentle warmth on hover",
126
+ "transitionDuration": { "$type": "duration", "$value": "{motion.gentle}" },
127
+ "transitionEasing": { "$type": "cubicBezier", "$value": "{motion.easeGentle}" },
128
+ "backgroundHover": { "$type": "color", "$value": "{color.warm.cream}" },
129
+ "borderColorHover": { "$type": "color", "$value": "{color.border.brand}" },
130
+ "shadowHover": { "$type": "shadow", "$value": "{elevation.medium}" }
131
+ },
132
+ "sunlit": {
133
+ "$description": "Sunlit card — featured with gradient",
134
+ "background": { "$type": "string", "$value": "{gradient.sunlit}" },
135
+ "borderColor": { "$type": "color", "$value": "{color.border.brand}" },
136
+ "shadow": { "$type": "shadow", "$value": "{elevation.medium}" }
137
+ }
138
+ },
139
+ "badge": {
140
+ "$description": "Badge — small status indicators",
141
+ "base": {
142
+ "fontFamily": { "$type": "fontFamily", "$value": "{font.family.sans}" },
143
+ "fontSize": { "$type": "dimension", "$value": "{font.size.xs}" },
144
+ "fontWeight": { "$type": "fontWeight", "$value": "{font.weight.medium}" },
145
+ "letterSpacing": { "$type": "dimension", "$value": "{font.letterSpacing.wide}" },
146
+ "borderRadius": { "$type": "dimension", "$value": "{shape.pill}" },
147
+ "paddingX": { "$type": "dimension", "$value": "{spacing.2-5}" },
148
+ "paddingY": { "$type": "dimension", "$value": "{spacing.1}" }
149
+ },
150
+ "variant": {
151
+ "brand": {
152
+ "background": { "$type": "color", "$value": "{color.brand.primarySubtle}" },
153
+ "color": { "$type": "color", "$value": "{color.brand.primary}" }
154
+ },
155
+ "accent": {
156
+ "background": { "$type": "color", "$value": "{color.accent.subtle}" },
157
+ "color": { "$type": "color", "$value": "{color.accent.default}" }
158
+ },
159
+ "success": {
160
+ "background": { "$type": "color", "$value": "{color.feedback.successSubtle}" },
161
+ "color": { "$type": "color", "$value": "{color.feedback.success}" }
162
+ },
163
+ "error": {
164
+ "background": { "$type": "color", "$value": "{color.feedback.errorSubtle}" },
165
+ "color": { "$type": "color", "$value": "{color.feedback.error}" }
166
+ },
167
+ "warning": {
168
+ "background": { "$type": "color", "$value": "{color.feedback.warningSubtle}" },
169
+ "color": { "$type": "color", "$value": "{color.feedback.warning}" }
170
+ },
171
+ "neutral": {
172
+ "background": { "$type": "color", "$value": "{color.warm.parchment}" },
173
+ "color": { "$type": "color", "$value": "{color.text.secondary}" }
174
+ }
175
+ }
176
+ },
177
+ "link": {
178
+ "$description": "Link — warm brand color",
179
+ "color": { "$type": "color", "$value": "{color.text.link}" },
180
+ "colorHover": { "$type": "color", "$value": "{color.text.linkHover}" },
181
+ "textDecoration": { "$type": "string", "$value": "underline" },
182
+ "textDecorationHover": { "$type": "string", "$value": "none" }
183
+ }
184
+ }
@@ -0,0 +1,230 @@
1
+ {
2
+ "$description": "Global Design Tokens — Orange Halo Visual DNA. Warm, playful, personal.",
3
+ "color": {
4
+ "$description": "Warm color palette with nostalgic character. No pure white, no blue-gray.",
5
+ "orange": {
6
+ "$description": "Primary brand orange — vibrant and accessible",
7
+ "50": { "$type": "color", "$value": "#FFF3E0" },
8
+ "100": { "$type": "color", "$value": "#FFE0B2" },
9
+ "200": { "$type": "color", "$value": "#FFCC80" },
10
+ "300": { "$type": "color", "$value": "#FFB74D" },
11
+ "400": { "$type": "color", "$value": "#FFA726" },
12
+ "500": { "$type": "color", "$value": "#FF9800" },
13
+ "600": { "$type": "color", "$value": "#FB8C00" },
14
+ "700": { "$type": "color", "$value": "#F57C00" },
15
+ "800": { "$type": "color", "$value": "#EF6C00" },
16
+ "900": { "$type": "color", "$value": "#C54300", "$description": "Primary brand — WCAG AA (4.5:1)" },
17
+ "950": { "$type": "color", "$value": "#9E3500", "$description": "Hover/active state — WCAG AA (7.2:1)" }
18
+ },
19
+ "honey": {
20
+ "$description": "Warm highlight — golden warmth for accents and feedback",
21
+ "50": { "$type": "color", "$value": "#FEFAEE" },
22
+ "100": { "$type": "color", "$value": "#FDF3D4" },
23
+ "200": { "$type": "color", "$value": "#FBE7A8" },
24
+ "300": { "$type": "color", "$value": "#F8D56F" },
25
+ "400": { "$type": "color", "$value": "#E8A838", "$description": "Signature honey" },
26
+ "500": { "$type": "color", "$value": "#D4922C" },
27
+ "600": { "$type": "color", "$value": "#B87A24" },
28
+ "700": { "$type": "color", "$value": "#8C5E1C", "$description": "WCAG AA (5.2:1)" },
29
+ "800": { "$type": "color", "$value": "#6B4815" }
30
+ },
31
+ "terracotta": {
32
+ "$description": "Deep accent — earthy depth for active states and emphasis",
33
+ "50": { "$type": "color", "$value": "#FBF5F0" },
34
+ "100": { "$type": "color", "$value": "#F5E8DE" },
35
+ "200": { "$type": "color", "$value": "#E8CDBF" },
36
+ "300": { "$type": "color", "$value": "#D4A88F" },
37
+ "400": { "$type": "color", "$value": "#BF8060" },
38
+ "500": { "$type": "color", "$value": "#A0522D", "$description": "Signature terracotta — WCAG AA (5.3:1)" },
39
+ "600": { "$type": "color", "$value": "#8B4726" },
40
+ "700": { "$type": "color", "$value": "#6F3920" },
41
+ "800": { "$type": "color", "$value": "#5A2F1A" },
42
+ "900": { "$type": "color", "$value": "#452414" }
43
+ },
44
+ "eucalyptus": {
45
+ "$description": "Nostalgic accent — muted teal, the retro counterbalance",
46
+ "50": { "$type": "color", "$value": "#F0F6F6" },
47
+ "100": { "$type": "color", "$value": "#E0EBEB" },
48
+ "200": { "$type": "color", "$value": "#C2D7D7" },
49
+ "300": { "$type": "color", "$value": "#9EBEBE" },
50
+ "400": { "$type": "color", "$value": "#7AA3A4" },
51
+ "500": { "$type": "color", "$value": "#5F8A8B", "$description": "Signature eucalyptus — WCAG AA (4.5:1)" },
52
+ "600": { "$type": "color", "$value": "#4D7172" },
53
+ "700": { "$type": "color", "$value": "#3F5C5D", "$description": "WCAG AA (6.2:1)" },
54
+ "800": { "$type": "color", "$value": "#344A4B" },
55
+ "900": { "$type": "color", "$value": "#2A3C3D" }
56
+ },
57
+ "warm": {
58
+ "$description": "Warm neutral scale — cream to walnut, no blue-gray",
59
+ "cream": { "$type": "color", "$value": "#FAF7F2", "$description": "Base background — warm off-white" },
60
+ "linen": { "$type": "color", "$value": "#F5F0E8", "$description": "Raised surface" },
61
+ "parchment": { "$type": "color", "$value": "#EDE8DF", "$description": "Inset surface" },
62
+ "sand": { "$type": "color", "$value": "#E2DCD2", "$description": "Borders, dividers" },
63
+ "dune": { "$type": "color", "$value": "#C9C1B4", "$description": "Muted elements" },
64
+ "driftwood": { "$type": "color", "$value": "#6B5D4D", "$description": "Secondary text — WCAG AA (4.8:1)" },
65
+ "bark": { "$type": "color", "$value": "#52463A", "$description": "Emphasis text (6.8:1)" },
66
+ "walnut": { "$type": "color", "$value": "#3D3229", "$description": "Primary text — WCAG AA (8.2:1)" }
67
+ },
68
+ "green": {
69
+ "$description": "Success — warm-tinted green",
70
+ "50": { "$type": "color", "$value": "#F0F7F1" },
71
+ "100": { "$type": "color", "$value": "#D9EDD9" },
72
+ "500": { "$type": "color", "$value": "#5A9A5C" },
73
+ "600": { "$type": "color", "$value": "#4A8A4C", "$description": "WCAG AA (4.5:1)" },
74
+ "700": { "$type": "color", "$value": "#3D7340" }
75
+ },
76
+ "red": {
77
+ "$description": "Error — warm-tinted red",
78
+ "50": { "$type": "color", "$value": "#FDF4F3" },
79
+ "100": { "$type": "color", "$value": "#F9E0DC" },
80
+ "500": { "$type": "color", "$value": "#C75450" },
81
+ "600": { "$type": "color", "$value": "#B54540", "$description": "WCAG AA (4.8:1)" },
82
+ "700": { "$type": "color", "$value": "#943836", "$description": "Hover/active state" }
83
+ },
84
+ "blue": {
85
+ "$description": "Blue accent — modern counterbalance for CTAs",
86
+ "50": { "$type": "color", "$value": "#EEF4F9" },
87
+ "100": { "$type": "color", "$value": "#D6E4F0" },
88
+ "200": { "$type": "color", "$value": "#A0B4C8" },
89
+ "300": { "$type": "color", "$value": "#7A9AB8" },
90
+ "400": { "$type": "color", "$value": "#5A82A8" },
91
+ "500": { "$type": "color", "$value": "#3D5A80", "$description": "Signature blue — WCAG AA (5.5:1)" },
92
+ "600": { "$type": "color", "$value": "#354F70", "$description": "Hover state" },
93
+ "700": { "$type": "color", "$value": "#2E4460", "$description": "Active state" },
94
+ "800": { "$type": "color", "$value": "#253850" }
95
+ },
96
+ "white": { "$type": "color", "$value": "#FFFFFF", "$description": "Pure white for inputs/highlights" }
97
+ },
98
+ "font": {
99
+ "family": {
100
+ "$description": "Bricolage Grotesque — playful, crafted, warm",
101
+ "sans": { "$type": "fontFamily", "$value": "'Bricolage Grotesque', 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif" },
102
+ "display": { "$type": "fontFamily", "$value": "'Bricolage Grotesque', 'General Sans', sans-serif" },
103
+ "mono": { "$type": "fontFamily", "$value": "'JetBrains Mono', 'Fira Code', ui-monospace, monospace" }
104
+ },
105
+ "size": {
106
+ "$description": "Slightly expressive type scale",
107
+ "xs": { "$type": "dimension", "$value": "0.75rem", "$description": "12px" },
108
+ "sm": { "$type": "dimension", "$value": "0.875rem", "$description": "14px" },
109
+ "base": { "$type": "dimension", "$value": "1rem", "$description": "16px" },
110
+ "lg": { "$type": "dimension", "$value": "1.125rem", "$description": "18px" },
111
+ "xl": { "$type": "dimension", "$value": "1.25rem", "$description": "20px" },
112
+ "2xl": { "$type": "dimension", "$value": "1.625rem", "$description": "26px" },
113
+ "3xl": { "$type": "dimension", "$value": "2rem", "$description": "32px" },
114
+ "4xl": { "$type": "dimension", "$value": "2.625rem", "$description": "42px" },
115
+ "5xl": { "$type": "dimension", "$value": "3.25rem", "$description": "52px" }
116
+ },
117
+ "weight": {
118
+ "$description": "Font weights for hierarchy",
119
+ "normal": { "$type": "fontWeight", "$value": "400" },
120
+ "medium": { "$type": "fontWeight", "$value": "500" },
121
+ "semibold": { "$type": "fontWeight", "$value": "600" },
122
+ "bold": { "$type": "fontWeight", "$value": "700" }
123
+ },
124
+ "lineHeight": {
125
+ "$description": "Generous line heights for readability",
126
+ "none": { "$type": "number", "$value": 1 },
127
+ "tight": { "$type": "number", "$value": 1.25 },
128
+ "snug": { "$type": "number", "$value": 1.35 },
129
+ "normal": { "$type": "number", "$value": 1.5 },
130
+ "relaxed": { "$type": "number", "$value": 1.65 },
131
+ "loose": { "$type": "number", "$value": 1.8 }
132
+ },
133
+ "letterSpacing": {
134
+ "$description": "Letter spacing — loose for small, tight for display",
135
+ "tighter": { "$type": "dimension", "$value": "-0.02em" },
136
+ "tight": { "$type": "dimension", "$value": "-0.01em" },
137
+ "normal": { "$type": "dimension", "$value": "0" },
138
+ "wide": { "$type": "dimension", "$value": "0.01em" },
139
+ "wider": { "$type": "dimension", "$value": "0.02em" }
140
+ }
141
+ },
142
+ "spacing": {
143
+ "$description": "Generous spacing — breathing room, not dense",
144
+ "0": { "$type": "dimension", "$value": "0" },
145
+ "px": { "$type": "dimension", "$value": "1px" },
146
+ "0-5": { "$type": "dimension", "$value": "0.125rem", "$description": "2px" },
147
+ "1": { "$type": "dimension", "$value": "0.25rem", "$description": "4px" },
148
+ "1-5": { "$type": "dimension", "$value": "0.375rem", "$description": "6px" },
149
+ "2": { "$type": "dimension", "$value": "0.5rem", "$description": "8px" },
150
+ "2-5": { "$type": "dimension", "$value": "0.625rem", "$description": "10px" },
151
+ "3": { "$type": "dimension", "$value": "0.75rem", "$description": "12px" },
152
+ "3-5": { "$type": "dimension", "$value": "0.875rem", "$description": "14px" },
153
+ "4": { "$type": "dimension", "$value": "1rem", "$description": "16px" },
154
+ "5": { "$type": "dimension", "$value": "1.25rem", "$description": "20px" },
155
+ "6": { "$type": "dimension", "$value": "1.5rem", "$description": "24px" },
156
+ "7": { "$type": "dimension", "$value": "1.75rem", "$description": "28px" },
157
+ "8": { "$type": "dimension", "$value": "2rem", "$description": "32px" },
158
+ "10": { "$type": "dimension", "$value": "2.5rem", "$description": "40px" },
159
+ "12": { "$type": "dimension", "$value": "3rem", "$description": "48px" },
160
+ "16": { "$type": "dimension", "$value": "4rem", "$description": "64px" },
161
+ "20": { "$type": "dimension", "$value": "5rem", "$description": "80px" }
162
+ },
163
+ "radius": {
164
+ "$description": "Friendly and soft — not sharp, not overly pill-shaped",
165
+ "none": { "$type": "dimension", "$value": "0" },
166
+ "xs": { "$type": "dimension", "$value": "4px", "$description": "Small details, chips" },
167
+ "sm": { "$type": "dimension", "$value": "6px", "$description": "Buttons, inputs" },
168
+ "md": { "$type": "dimension", "$value": "10px", "$description": "Cards, panels" },
169
+ "lg": { "$type": "dimension", "$value": "14px", "$description": "Modals, large containers" },
170
+ "xl": { "$type": "dimension", "$value": "20px", "$description": "Hero elements" },
171
+ "full": { "$type": "dimension", "$value": "9999px", "$description": "Avatars, pills" }
172
+ },
173
+ "shadow": {
174
+ "$description": "Warm, low-contrast shadows — never harsh",
175
+ "none": { "$type": "shadow", "$value": "none" },
176
+ "soft": { "$type": "shadow", "$value": "0 2px 8px rgba(61, 50, 41, 0.06), 0 1px 3px rgba(61, 50, 41, 0.08)", "$description": "Cards, raised elements" },
177
+ "medium": { "$type": "shadow", "$value": "0 4px 16px rgba(61, 50, 41, 0.08), 0 2px 6px rgba(61, 50, 41, 0.06)", "$description": "Dropdowns, popovers" },
178
+ "strong": { "$type": "shadow", "$value": "0 8px 24px rgba(61, 50, 41, 0.10), 0 4px 8px rgba(61, 50, 41, 0.06)", "$description": "Modals, dialogs" },
179
+ "glow": { "$type": "shadow", "$value": "0 0 0 3px rgba(197, 67, 0, 0.2), 0 0 12px rgba(197, 67, 0, 0.1)", "$description": "Focus ring — warm and friendly" },
180
+ "inset": { "$type": "shadow", "$value": "inset 0 1px 3px rgba(61, 50, 41, 0.08)", "$description": "Inputs, wells" },
181
+ "chunky": {
182
+ "$description": "Offset chunky shadows for playful tactile feel",
183
+ "primary": { "$type": "color", "$value": "#E8C4A0", "$description": "Warm peach for primary buttons" },
184
+ "secondary": { "$type": "color", "$value": "#D4C4B0", "$description": "Neutral tan for secondary/form elements" },
185
+ "accent": { "$type": "color", "$value": "#A0B4C8", "$description": "Cool blue-gray for accent buttons" },
186
+ "error": { "$type": "color", "$value": "rgba(181, 69, 64, 0.3)", "$description": "Error state shadow" }
187
+ }
188
+ },
189
+ "gradient": {
190
+ "$description": "Soft, nostalgic gradients — never high-contrast or flashy",
191
+ "sunlit": { "$type": "string", "$value": "linear-gradient(180deg, #FAF7F2 0%, #F5EFE4 100%)", "$description": "Gentle warmth for surfaces" },
192
+ "warm": { "$type": "string", "$value": "linear-gradient(135deg, #C54300 0%, #FF9800 100%)", "$description": "Brand emphasis" },
193
+ "nostalgic": { "$type": "string", "$value": "linear-gradient(180deg, #F5F0E8 0%, #EDE8DF 100%)", "$description": "Subtle retro depth" }
194
+ },
195
+ "motion": {
196
+ "$description": "Subtle and playful — relaxed easing, never snappy",
197
+ "duration": {
198
+ "quick": { "$type": "duration", "$value": "100ms", "$description": "Micro-interactions (color shifts)" },
199
+ "snappy": { "$type": "duration", "$value": "150ms", "$description": "Button/input transitions" },
200
+ "gentle": { "$type": "duration", "$value": "200ms", "$description": "Standard interactions (hover, focus)" },
201
+ "relaxed": { "$type": "duration", "$value": "300ms", "$description": "Larger transitions (panels)" },
202
+ "slow": { "$type": "duration", "$value": "400ms", "$description": "Emphasis animations" }
203
+ },
204
+ "easing": {
205
+ "gentle": { "$type": "cubicBezier", "$value": [0.4, 0, 0.2, 1], "$description": "Default — smooth and natural" },
206
+ "out": { "$type": "cubicBezier", "$value": [0, 0, 0.2, 1], "$description": "Enters and reveals" },
207
+ "in": { "$type": "cubicBezier", "$value": [0.4, 0, 1, 1], "$description": "Exits" },
208
+ "playful": { "$type": "cubicBezier", "$value": [0.34, 1.3, 0.64, 1], "$description": "Celebrations — slight overshoot" }
209
+ }
210
+ },
211
+ "border": {
212
+ "width": {
213
+ "$description": "Border widths",
214
+ "0": { "$type": "dimension", "$value": "0" },
215
+ "1": { "$type": "dimension", "$value": "1px" },
216
+ "2": { "$type": "dimension", "$value": "2px" }
217
+ }
218
+ },
219
+ "zIndex": {
220
+ "$description": "Z-index layering",
221
+ "0": { "$type": "number", "$value": 0 },
222
+ "10": { "$type": "number", "$value": 10 },
223
+ "20": { "$type": "number", "$value": 20 },
224
+ "dropdown": { "$type": "number", "$value": 1000 },
225
+ "sticky": { "$type": "number", "$value": 1100 },
226
+ "modal": { "$type": "number", "$value": 1200 },
227
+ "popover": { "$type": "number", "$value": 1300 },
228
+ "tooltip": { "$type": "number", "$value": 1400 }
229
+ }
230
+ }