@hotelfriendag/design-tokens 0.3.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,207 @@
1
+ /**
2
+ * HotelFriend design tokens — Tailwind v3 preset (legacy)
3
+ * Generated from docs/tokens.figma.json — do NOT edit by hand.
4
+ *
5
+ * For new projects use --target=tailwind-v4 (pre-built/tailwind.css).
6
+ *
7
+ * Usage in tailwind.config.js:
8
+ * const hfPreset = require("./tailwind.preset.js");
9
+ * module.exports = { presets: [hfPreset], content: [...] };
10
+ */
11
+ module.exports = {
12
+ theme: {
13
+ extend: {
14
+ colors: {
15
+ "blue": {
16
+ "50": "#E9F6FC",
17
+ "100": "#EFF6FF",
18
+ "500": "#24AFE8",
19
+ "600": "#149AD1"
20
+ },
21
+ "gray": {
22
+ "25": "#FBFBFC",
23
+ "50": "#F6F7FB",
24
+ "100": "#F1F3F6",
25
+ "200": "#E4E8EF",
26
+ "300": "#D1D6DD",
27
+ "400": "#AEBCCF",
28
+ "500": "#99A1B7",
29
+ "550": "#7E8EA6",
30
+ "600": "#50627E",
31
+ "700": "#485B78",
32
+ "800": "#4B5675",
33
+ "900": "#2B2B2B",
34
+ "950": "#252F4A"
35
+ },
36
+ "green": {
37
+ "500": "#59B59D"
38
+ },
39
+ "amber": {
40
+ "400": "#FFBD5A",
41
+ "600": "#FFC900"
42
+ },
43
+ "red": {
44
+ "400": "#EA6565",
45
+ "500": "#FB5A56",
46
+ "700": "#D9534F"
47
+ },
48
+ "orange": {
49
+ "500": "#F87921",
50
+ "700": "#A55505"
51
+ },
52
+ "violet": {
53
+ "500": "#5761D8"
54
+ },
55
+ "slate": {
56
+ "500": "#7F8FA4"
57
+ },
58
+ "olive": {
59
+ "700": "#5B7A02"
60
+ },
61
+ "white": "#FFFFFF",
62
+ "black": "#000000",
63
+ "accent": {
64
+ "DEFAULT": "{primitive.color.blue.500}",
65
+ "hover": "{primitive.color.blue.600}",
66
+ "subtle": "{primitive.color.blue.50}",
67
+ "subtler": "{primitive.color.blue.100}"
68
+ },
69
+ "on-accent": "{primitive.color.white}",
70
+ "bg": {
71
+ "page": "{primitive.color.gray.25}",
72
+ "section": "{primitive.color.gray.50}",
73
+ "muted": "{primitive.color.gray.100}",
74
+ "surface": "{primitive.color.white}"
75
+ },
76
+ "fg": {
77
+ "DEFAULT": "{primitive.color.gray.900}",
78
+ "muted": "{primitive.color.gray.800}",
79
+ "subtle": "{primitive.color.gray.550}",
80
+ "faint": "{primitive.color.gray.400}"
81
+ },
82
+ "border": {
83
+ "DEFAULT": "{primitive.color.gray.300}",
84
+ "subtle": "{primitive.color.gray.200}",
85
+ "strong": "{primitive.color.gray.400}"
86
+ },
87
+ "tab": {
88
+ "fg-inactive": "{primitive.color.gray.700}",
89
+ "count-fg": "{primitive.color.gray.700}"
90
+ },
91
+ "pagination": {
92
+ "fg-inactive": "{primitive.color.gray.700}",
93
+ "fg-active": "{primitive.color.gray.950}"
94
+ },
95
+ "input": {
96
+ "border": "#DBDFE9"
97
+ },
98
+ "menu": {
99
+ "bg-hover": "#F5F5F5"
100
+ },
101
+ "status": {
102
+ "success": "{primitive.color.green.500}",
103
+ "success-bg": "rgba(89,181,157,0.15)",
104
+ "warning": "{primitive.color.amber.400}",
105
+ "warning-bg": "rgba(255,189,90,0.15)",
106
+ "warning-strong": "{primitive.color.amber.600}",
107
+ "warning-strong-bg": "rgba(255,201,0,0.15)",
108
+ "error": "{primitive.color.red.400}",
109
+ "error-bg": "rgba(234,101,101,0.15)",
110
+ "error-strong": "{primitive.color.red.700}",
111
+ "error-alt": "{primitive.color.red.500}",
112
+ "info": "{semantic.color.accent.default}",
113
+ "info-bg": "rgba(36,175,232,0.15)",
114
+ "cancel": "{primitive.color.slate.500}",
115
+ "cancel-bg": "rgba(127,143,164,0.15)",
116
+ "coral": "{primitive.color.orange.500}",
117
+ "coral-bg": "rgba(248,121,33,0.15)",
118
+ "violet": "{primitive.color.violet.500}",
119
+ "violet-bg": "rgba(87,97,216,0.15)",
120
+ "olive": "{primitive.color.olive.700}",
121
+ "olive-bg": "rgba(91,122,2,0.15)",
122
+ "orange-deep": "{primitive.color.orange.700}",
123
+ "orange-deep-bg": "rgba(165,85,5,0.15)"
124
+ }
125
+ },
126
+ fontFamily: {
127
+ "primary": [
128
+ "Roboto"
129
+ ]
130
+ },
131
+ fontSize: {
132
+ "xs": "11px",
133
+ "sm": "13px",
134
+ "base": "14px",
135
+ "md": "15px",
136
+ "lg": "16px",
137
+ "xl": "18px",
138
+ "2xl": "20px",
139
+ "h2": "24px",
140
+ "page": "26px",
141
+ "hero": "30px"
142
+ },
143
+ fontWeight: {
144
+ "regular": "400",
145
+ "medium": "500",
146
+ "semibold": "600"
147
+ },
148
+ lineHeight: {
149
+ "headings": "1.2",
150
+ "body": "1.5",
151
+ "tight": "1"
152
+ },
153
+ borderRadius: {
154
+ "sm": "6px",
155
+ "md": "8px",
156
+ "lg": "9px",
157
+ "xl": "12px",
158
+ "pill": "99px"
159
+ },
160
+ spacing: {
161
+ "0": "0px",
162
+ "1": "4px",
163
+ "2": "8px",
164
+ "3": "12px",
165
+ "4": "16px",
166
+ "5": "20px",
167
+ "6": "24px",
168
+ "7": "30px",
169
+ "8": "32px",
170
+ "sidebarExpanded": "215px",
171
+ "sidebarCollapsed": "80px",
172
+ "headerHeight": "60px",
173
+ "contentMax": "1440px",
174
+ "btnDefault": "40px",
175
+ "btnSm": "32px",
176
+ "btnSearch": "38px",
177
+ "inputDefault": "39px",
178
+ "tapTarget": "44px"
179
+ },
180
+ boxShadow: {
181
+ "default": "0px 1px 8px 0px rgba(0,0,0,0.1)",
182
+ "subtle": "0px 2px 4px 0px rgba(0,0,0,0.05)",
183
+ "wrapper": "0px 3px 4px 0px rgba(0,0,0,0.03)",
184
+ "card": "0px 12px 24px 0px rgba(26,26,30,0.06)",
185
+ "modal": "0px 6px 18px 0px rgba(0,0,0,0.1)",
186
+ "outline": "0px 1px 2px 0px rgba(72,91,120,0.18)",
187
+ "hover": "0px 2px 3px 0px rgba(0,0,0,0.06)"
188
+ },
189
+ zIndex: {
190
+ "sidebar": "1000",
191
+ "dropdown": "1001",
192
+ "datepicker": "3000",
193
+ "stickyTopbar": "4000",
194
+ "modalBackdrop": "10050",
195
+ "modalDialog": "10051",
196
+ "preloader": "99999",
197
+ "topmostOverlay": "1000001"
198
+ },
199
+ transitionTimingFunction: {
200
+ "fast": "0.1s",
201
+ "default": "0.2s ease-in-out",
202
+ "slow": "0.3s",
203
+ "bouncy": "0.4s cubic-bezier(0.88, -0.99, 0, 1.81)"
204
+ },
205
+ },
206
+ },
207
+ };
@@ -0,0 +1,185 @@
1
+ /*
2
+ * HotelFriend design tokens — CSS custom properties
3
+ * Generated from docs/tokens.figma.json — do NOT edit by hand.
4
+ *
5
+ * Three-tier model per RFC-0002:
6
+ * primitive.* → raw palette values (--color-hf-blue-500, --color-hf-gray-300, …)
7
+ * semantic.* → role tokens via var() chain (--color-hf-accent → var(--color-hf-blue-500))
8
+ *
9
+ * App code should reference SEMANTIC tokens. Primitives are theming-layer detail.
10
+ */
11
+ :root {
12
+ --color-hf-blue-50: #E9F6FC; /* Light tint — active-state bg */
13
+ --color-hf-blue-100: #EFF6FF; /* Faint tint — reset-filters bg */
14
+ --color-hf-blue-500: #24AFE8; /* Canonical primary anchor (portal legacy SCSS still uses #26ADE4 — pending consolidation) */
15
+ --color-hf-blue-600: #149AD1; /* Primary hover */
16
+ --color-hf-gray-25: #FBFBFC; /* Page background top */
17
+ --color-hf-gray-50: #F6F7FB; /* Section backgrounds */
18
+ --color-hf-gray-100: #F1F3F6; /* Inputs bg, hover-bg, header bars */
19
+ --color-hf-gray-200: #E4E8EF; /* Border-light, dividers */
20
+ --color-hf-gray-300: #D1D6DD; /* Default border */
21
+ --color-hf-gray-400: #AEBCCF; /* Placeholder + disabled text — portal $dark__Grey */
22
+ --color-hf-gray-500: #99A1B7; /* Placeholder legacy / soft helper */
23
+ --color-hf-gray-550: #7E8EA6; /* Helper text on light bg */
24
+ --color-hf-gray-600: #50627E; /* Cancel-button text, ink-muted */
25
+ --color-hf-gray-700: #485B78; /* Steel-blue (tab/nav inactive) — Phase 2 component-tier */
26
+ --color-hf-gray-800: #4B5675; /* Secondary text */
27
+ --color-hf-gray-900: #2B2B2B; /* Body text, headings */
28
+ --color-hf-gray-950: #252F4A; /* Deepest ink (pagination active text) — Phase 2 component-tier */
29
+ --color-hf-green-500: #59B59D; /* Success / mint */
30
+ --color-hf-amber-400: #FFBD5A; /* Warning / buttermilk */
31
+ --color-hf-amber-600: #FFC900; /* Strong yellow — frontdesk OOO */
32
+ --color-hf-red-400: #EA6565; /* Error / rouge */
33
+ --color-hf-red-500: #FB5A56; /* Cancel-red, deleted — between rouge and crimson */
34
+ --color-hf-red-700: #D9534F; /* Deeper red — btn-danger */
35
+ --color-hf-orange-500: #F87921; /* Coral / peach */
36
+ --color-hf-orange-700: #A55505; /* Due-out brown */
37
+ --color-hf-violet-500: #5761D8; /* Offer, inspected */
38
+ --color-hf-slate-500: #7F8FA4; /* Canceled, deleted, OOS — cloud-gray */
39
+ --color-hf-olive-700: #5B7A02; /* Check-in (rare dark olive) */
40
+ --color-hf-white: #FFFFFF;
41
+ --color-hf-black: #000000;
42
+ --color-hf-accent: var(--color-hf-blue-500); /* Brand primary — links, primary buttons, focus */
43
+ --color-hf-accent-hover: var(--color-hf-blue-600); /* Primary button hover */
44
+ --color-hf-accent-subtle: var(--color-hf-blue-50); /* Accent tint — selected nav, active row */
45
+ --color-hf-accent-subtler: var(--color-hf-blue-100); /* Even softer accent — reset-filters bg */
46
+ --color-hf-on-accent: var(--color-hf-white); /* Text/icons ON accent bg (Radix-style foreground pair) */
47
+ --color-hf-bg-page: var(--color-hf-gray-25); /* Page background (outermost) */
48
+ --color-hf-bg-section: var(--color-hf-gray-50); /* Section bg, table header */
49
+ --color-hf-bg-muted: var(--color-hf-gray-100); /* Input bg / hover bg / muted surface */
50
+ --color-hf-bg-surface: var(--color-hf-white); /* Card / modal / popover surface */
51
+ --color-hf-fg: var(--color-hf-gray-900); /* Default text / heading color */
52
+ --color-hf-fg-muted: var(--color-hf-gray-800); /* Secondary text, descriptions */
53
+ --color-hf-fg-subtle: var(--color-hf-gray-550); /* Helper / hint text */
54
+ --color-hf-fg-faint: var(--color-hf-gray-400); /* Placeholder + disabled input text */
55
+ --color-hf-border: var(--color-hf-gray-300); /* Default 1px border (buttons, inputs, chips) */
56
+ --color-hf-border-subtle: var(--color-hf-gray-200); /* Faint dividers, light borders */
57
+ --color-hf-border-strong: var(--color-hf-gray-400); /* Hover/focus border */
58
+ --color-hf-tab-fg-inactive: var(--color-hf-gray-700); /* Tab / nav-item text when NOT selected (.hf-tab, .hf-pill-tab default) */
59
+ --color-hf-tab-count-fg: var(--color-hf-gray-700); /* Count-badge text inside an inactive tab */
60
+ --color-hf-pagination-fg-inactive: var(--color-hf-gray-700); /* Pagination item text when not active */
61
+ --color-hf-pagination-fg-active: var(--color-hf-gray-950); /* Pagination item text on the subtle-gray ACTIVE bg */
62
+ --color-hf-input-border: #DBDFE9; /* Input + checkbox/radio border — between gray-200 (#E4E8EF) and gray-300 (#D1D6DD); portal-exact, doesn't fit a primitive step */
63
+ --color-hf-menu-bg-hover: #F5F5F5; /* Dropdown item hover bg — slightly warmer than bg-muted; portal $table__hover */
64
+ --color-hf-status-success: var(--color-hf-green-500); /* Success, due-in, clean */
65
+ --color-hf-status-success-bg: rgba(89,181,157,0.15); /* Success @15% — pill bg */
66
+ --color-hf-status-warning: var(--color-hf-amber-400); /* Warning, waiting, new */
67
+ --color-hf-status-warning-bg: rgba(255,189,90,0.15);
68
+ --color-hf-status-warning-strong: var(--color-hf-amber-600); /* Frontdesk out-of-order — more saturated yellow */
69
+ --color-hf-status-warning-strong-bg: rgba(255,201,0,0.15);
70
+ --color-hf-status-error: var(--color-hf-red-400); /* Error, no-show, dirty, action-required */
71
+ --color-hf-status-error-bg: rgba(234,101,101,0.15);
72
+ --color-hf-status-error-strong: var(--color-hf-red-700); /* btn-danger */
73
+ --color-hf-status-error-alt: var(--color-hf-red-500); /* btn-cancel-red, deleted variant */
74
+ --color-hf-status-info: var(--color-hf-accent); /* Info = accent */
75
+ --color-hf-status-info-bg: rgba(36,175,232,0.15);
76
+ --color-hf-status-cancel: var(--color-hf-slate-500); /* Cancellations, deleted, out-of-service */
77
+ --color-hf-status-cancel-bg: rgba(127,143,164,0.15);
78
+ --color-hf-status-coral: var(--color-hf-orange-500); /* Check-out, in-progress */
79
+ --color-hf-status-coral-bg: rgba(248,121,33,0.15);
80
+ --color-hf-status-violet: var(--color-hf-violet-500); /* Offer, inspected */
81
+ --color-hf-status-violet-bg: rgba(87,97,216,0.15);
82
+ --color-hf-status-olive: var(--color-hf-olive-700); /* Check-in (rare deep olive) */
83
+ --color-hf-status-olive-bg: rgba(91,122,2,0.15);
84
+ --color-hf-status-orange-deep: var(--color-hf-orange-700); /* Due-out brown */
85
+ --color-hf-status-orange-deep-bg: rgba(165,85,5,0.15);
86
+ --font-family-hf-primary: Roboto;
87
+ --font-weight-hf-regular: 400;
88
+ --font-weight-hf-medium: 500;
89
+ --font-weight-hf-semibold: 600;
90
+ --font-size-hf-xs: 11px; /* Tag labels, uppercase captions */
91
+ --font-size-hf-sm: 13px; /* Grid headers, chips, sm buttons */
92
+ --font-size-hf-base: 14px; /* Body, labels (most common — 218 occurrences) */
93
+ --font-size-hf-md: 15px; /* Primary buttons */
94
+ --font-size-hf-lg: 16px; /* Modal titles, large tabs */
95
+ --font-size-hf-xl: 18px; /* Info-block titles, modal title */
96
+ --font-size-hf-2xl: 20px; /* Section heading */
97
+ --font-size-hf-h2: 24px;
98
+ --font-size-hf-page: 26px; /* Page title */
99
+ --font-size-hf-hero: 30px; /* Dashboard stat numbers */
100
+ --line-height-hf-headings: 1.2;
101
+ --line-height-hf-body: 1.5;
102
+ --line-height-hf-tight: 1;
103
+ --spacing-hf-0: 0px;
104
+ --spacing-hf-1: 4px;
105
+ --spacing-hf-2: 8px;
106
+ --spacing-hf-3: 12px;
107
+ --spacing-hf-4: 16px;
108
+ --spacing-hf-5: 20px; /* Default section gap */
109
+ --spacing-hf-6: 24px;
110
+ --spacing-hf-7: 30px;
111
+ --spacing-hf-8: 32px;
112
+ --radius-hf-sm: 6px; /* Buttons, inputs, status pills, modals (portal-exact) */
113
+ --radius-hf-md: 8px; /* Pagination items */
114
+ --radius-hf-lg: 9px; /* Dropdowns, toasts, pill-tabs */
115
+ --radius-hf-xl: 12px; /* Large elevated cards */
116
+ --radius-hf-pill: 99px; /* Rounded pill (rare — most status pills are 6px square) */
117
+ --opacity-hf-disabled: 0.6; /* Disabled state */
118
+ --opacity-hf-tint: 0.15; /* Status badge bg alpha */
119
+ --size-hf-sidebar-expanded: 215px;
120
+ --size-hf-sidebar-collapsed: 80px;
121
+ --size-hf-header-height: 60px;
122
+ --size-hf-content-max: 1440px;
123
+ --size-hf-btn-default: 40px; /* Primary button height */
124
+ --size-hf-btn-sm: 32px;
125
+ --size-hf-btn-search: 38px; /* Inline filter/search submit height */
126
+ --size-hf-input-default: 39px; /* Form-control input height */
127
+ --size-hf-tap-target: 44px; /* Mobile minimum tap target */
128
+ --z-index-hf-sidebar: 1000;
129
+ --z-index-hf-dropdown: 1001;
130
+ --z-index-hf-datepicker: 3000;
131
+ --z-index-hf-sticky-topbar: 4000;
132
+ --z-index-hf-modal-backdrop: 10050;
133
+ --z-index-hf-modal-dialog: 10051;
134
+ --z-index-hf-preloader: 99999;
135
+ --z-index-hf-topmost-overlay: 1000001; /* Above all */
136
+ --motion-hf-fast: 0.1s;
137
+ --motion-hf: 0.2s ease-in-out; /* Canonical transition */
138
+ --motion-hf-slow: 0.3s; /* Most common in legacy CSS — being normalized down to 0.2s */
139
+ --motion-hf-bouncy: 0.4s cubic-bezier(0.88, -0.99, 0, 1.81);
140
+ --shadow-hf: 0px 1px 8px 0px rgba(0,0,0,0.1); /* Default elevation — buttons, sticky bars */
141
+ --shadow-hf-subtle: 0px 2px 4px 0px rgba(0,0,0,0.05); /* Portal .dashboard-card — very faint elevation */
142
+ --shadow-hf-wrapper: 0px 3px 4px 0px rgba(0,0,0,0.03); /* Card frame (legacy) */
143
+ --shadow-hf-card: 0px 12px 24px 0px rgba(26,26,30,0.06); /* Elevated card / large surface */
144
+ --shadow-hf-modal: 0px 6px 18px 0px rgba(0,0,0,0.1); /* Modal / dropdown / popover floating UI */
145
+ --shadow-hf-outline: 0px 1px 2px 0px rgba(72,91,120,0.18); /* Outline button micro-elevation */
146
+ --shadow-hf-hover: 0px 2px 3px 0px rgba(0,0,0,0.06); /* Hover lift */
147
+ }
148
+
149
+ /* Composite typography tokens (use as utility classes) */
150
+ .typography-hf-page-title {
151
+ font-family: fontFamily.primary;
152
+ font-weight: var(--font-weight-hf-semibold);
153
+ font-size: var(--font-size-hf-page);
154
+ line-height: var(--line-height-hf-headings);
155
+ }
156
+ .typography-hf-btn {
157
+ font-family: fontFamily.primary;
158
+ font-weight: var(--font-weight-hf-semibold);
159
+ font-size: var(--font-size-hf-md);
160
+ line-height: var(--line-height-hf-body);
161
+ }
162
+ .typography-hf-body {
163
+ font-family: fontFamily.primary;
164
+ font-weight: var(--font-weight-hf-regular);
165
+ font-size: var(--font-size-hf-base);
166
+ line-height: var(--line-height-hf-body);
167
+ }
168
+ .typography-hf-label {
169
+ font-family: fontFamily.primary;
170
+ font-weight: var(--font-weight-hf-medium);
171
+ font-size: var(--font-size-hf-base);
172
+ line-height: var(--line-height-hf-body);
173
+ }
174
+ .typography-hf-grid-header {
175
+ font-family: fontFamily.primary;
176
+ font-weight: var(--font-weight-hf-medium);
177
+ font-size: var(--font-size-hf-sm);
178
+ line-height: var(--line-height-hf-body);
179
+ }
180
+ .typography-hf-tag-label {
181
+ font-family: fontFamily.primary;
182
+ font-weight: var(--font-weight-hf-medium);
183
+ font-size: var(--font-size-hf-xs);
184
+ line-height: var(--line-height-hf-headings);
185
+ }
@@ -0,0 +1,240 @@
1
+ // HotelFriend design tokens — TypeScript declarations
2
+ // Generated from docs/tokens.figma.json — do NOT edit by hand.
3
+
4
+ export declare const tokens: {
5
+ readonly color: {
6
+ readonly blue: {
7
+ readonly "50": string;
8
+ readonly "100": string;
9
+ readonly "500": string;
10
+ readonly "600": string;
11
+ };
12
+ readonly gray: {
13
+ readonly "25": string;
14
+ readonly "50": string;
15
+ readonly "100": string;
16
+ readonly "200": string;
17
+ readonly "300": string;
18
+ readonly "400": string;
19
+ readonly "500": string;
20
+ readonly "550": string;
21
+ readonly "600": string;
22
+ readonly "700": string;
23
+ readonly "800": string;
24
+ readonly "900": string;
25
+ readonly "950": string;
26
+ };
27
+ readonly green: {
28
+ readonly "500": string;
29
+ };
30
+ readonly amber: {
31
+ readonly "400": string;
32
+ readonly "600": string;
33
+ };
34
+ readonly red: {
35
+ readonly "400": string;
36
+ readonly "500": string;
37
+ readonly "700": string;
38
+ };
39
+ readonly orange: {
40
+ readonly "500": string;
41
+ readonly "700": string;
42
+ };
43
+ readonly violet: {
44
+ readonly "500": string;
45
+ };
46
+ readonly slate: {
47
+ readonly "500": string;
48
+ };
49
+ readonly olive: {
50
+ readonly "700": string;
51
+ };
52
+ readonly white: string;
53
+ readonly black: string;
54
+ readonly accent: {
55
+ readonly default: string;
56
+ readonly hover: string;
57
+ readonly subtle: string;
58
+ readonly subtler: string;
59
+ };
60
+ readonly "on-accent": string;
61
+ readonly bg: {
62
+ readonly page: string;
63
+ readonly section: string;
64
+ readonly muted: string;
65
+ readonly surface: string;
66
+ };
67
+ readonly fg: {
68
+ readonly default: string;
69
+ readonly muted: string;
70
+ readonly subtle: string;
71
+ readonly faint: string;
72
+ };
73
+ readonly border: {
74
+ readonly default: string;
75
+ readonly subtle: string;
76
+ readonly strong: string;
77
+ };
78
+ readonly tab: {
79
+ readonly "fg-inactive": string;
80
+ readonly "count-fg": string;
81
+ };
82
+ readonly pagination: {
83
+ readonly "fg-inactive": string;
84
+ readonly "fg-active": string;
85
+ };
86
+ readonly input: {
87
+ readonly border: string;
88
+ };
89
+ readonly menu: {
90
+ readonly "bg-hover": string;
91
+ };
92
+ readonly status: {
93
+ readonly success: string;
94
+ readonly "success-bg": string;
95
+ readonly warning: string;
96
+ readonly "warning-bg": string;
97
+ readonly "warning-strong": string;
98
+ readonly "warning-strong-bg": string;
99
+ readonly error: string;
100
+ readonly "error-bg": string;
101
+ readonly "error-strong": string;
102
+ readonly "error-alt": string;
103
+ readonly info: string;
104
+ readonly "info-bg": string;
105
+ readonly cancel: string;
106
+ readonly "cancel-bg": string;
107
+ readonly coral: string;
108
+ readonly "coral-bg": string;
109
+ readonly violet: string;
110
+ readonly "violet-bg": string;
111
+ readonly olive: string;
112
+ readonly "olive-bg": string;
113
+ readonly "orange-deep": string;
114
+ readonly "orange-deep-bg": string;
115
+ };
116
+ };
117
+ readonly fontFamily: {
118
+ readonly primary: string;
119
+ };
120
+ readonly fontWeight: {
121
+ readonly regular: string;
122
+ readonly medium: string;
123
+ readonly semibold: string;
124
+ };
125
+ readonly fontSize: {
126
+ readonly xs: string;
127
+ readonly sm: string;
128
+ readonly base: string;
129
+ readonly md: string;
130
+ readonly lg: string;
131
+ readonly xl: string;
132
+ readonly "2xl": string;
133
+ readonly h2: string;
134
+ readonly page: string;
135
+ readonly hero: string;
136
+ };
137
+ readonly lineHeight: {
138
+ readonly headings: string;
139
+ readonly body: string;
140
+ readonly tight: string;
141
+ };
142
+ readonly typography: {
143
+ readonly pageTitle: {
144
+ readonly fontFamily: string;
145
+ readonly fontWeight: string;
146
+ readonly fontSize: string;
147
+ readonly lineHeight: string;
148
+ };
149
+ readonly btn: {
150
+ readonly fontFamily: string;
151
+ readonly fontWeight: string;
152
+ readonly fontSize: string;
153
+ readonly lineHeight: string;
154
+ };
155
+ readonly body: {
156
+ readonly fontFamily: string;
157
+ readonly fontWeight: string;
158
+ readonly fontSize: string;
159
+ readonly lineHeight: string;
160
+ };
161
+ readonly label: {
162
+ readonly fontFamily: string;
163
+ readonly fontWeight: string;
164
+ readonly fontSize: string;
165
+ readonly lineHeight: string;
166
+ };
167
+ readonly gridHeader: {
168
+ readonly fontFamily: string;
169
+ readonly fontWeight: string;
170
+ readonly fontSize: string;
171
+ readonly lineHeight: string;
172
+ };
173
+ readonly tagLabel: {
174
+ readonly fontFamily: string;
175
+ readonly fontWeight: string;
176
+ readonly fontSize: string;
177
+ readonly lineHeight: string;
178
+ };
179
+ };
180
+ readonly spacing: {
181
+ readonly "0": string;
182
+ readonly "1": string;
183
+ readonly "2": string;
184
+ readonly "3": string;
185
+ readonly "4": string;
186
+ readonly "5": string;
187
+ readonly "6": string;
188
+ readonly "7": string;
189
+ readonly "8": string;
190
+ };
191
+ readonly radius: {
192
+ readonly sm: string;
193
+ readonly md: string;
194
+ readonly lg: string;
195
+ readonly xl: string;
196
+ readonly pill: string;
197
+ };
198
+ readonly shadow: {
199
+ readonly default: string;
200
+ readonly subtle: string;
201
+ readonly wrapper: string;
202
+ readonly card: string;
203
+ readonly modal: string;
204
+ readonly outline: string;
205
+ readonly hover: string;
206
+ };
207
+ readonly opacity: {
208
+ readonly disabled: string;
209
+ readonly tint: string;
210
+ };
211
+ readonly size: {
212
+ readonly sidebarExpanded: string;
213
+ readonly sidebarCollapsed: string;
214
+ readonly headerHeight: string;
215
+ readonly contentMax: string;
216
+ readonly btnDefault: string;
217
+ readonly btnSm: string;
218
+ readonly btnSearch: string;
219
+ readonly inputDefault: string;
220
+ readonly tapTarget: string;
221
+ };
222
+ readonly zIndex: {
223
+ readonly sidebar: string;
224
+ readonly dropdown: string;
225
+ readonly datepicker: string;
226
+ readonly stickyTopbar: string;
227
+ readonly modalBackdrop: string;
228
+ readonly modalDialog: string;
229
+ readonly preloader: string;
230
+ readonly topmostOverlay: string;
231
+ };
232
+ readonly motion: {
233
+ readonly fast: string;
234
+ readonly default: string;
235
+ readonly slow: string;
236
+ readonly bouncy: string;
237
+ };
238
+ };
239
+
240
+ export type Tokens = typeof tokens;