@edwardguerra/design-system 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.
- package/LICENSE +21 -0
- package/README.md +77 -0
- package/dist/css/main.css +132 -0
- package/dist/css/tokens.css +318 -0
- package/dist/index.cjs +31 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.mjs +1188 -0
- package/dist/index.mjs.map +1 -0
- package/dist/style.css +1 -0
- package/dist/tokens/_variables.scss +296 -0
- package/dist/tokens/tokens.d.ts +338 -0
- package/dist/tokens/tokens.js +297 -0
- package/dist/tokens/tokens.json +294 -0
- package/dist/tokens/variables.css +318 -0
- package/dist/types/components/Accordion/Accordion.d.ts +30 -0
- package/dist/types/components/Accordion/Accordion.stories.d.ts +15 -0
- package/dist/types/components/Accordion/Accordion.test.d.ts +1 -0
- package/dist/types/components/Accordion/index.d.ts +2 -0
- package/dist/types/components/Article/Article.d.ts +21 -0
- package/dist/types/components/Article/Article.stories.d.ts +13 -0
- package/dist/types/components/Article/Article.test.d.ts +1 -0
- package/dist/types/components/Article/index.d.ts +2 -0
- package/dist/types/components/Badge/Badge.d.ts +20 -0
- package/dist/types/components/Badge/Badge.stories.d.ts +20 -0
- package/dist/types/components/Badge/Badge.test.d.ts +1 -0
- package/dist/types/components/Badge/index.d.ts +2 -0
- package/dist/types/components/Button/Button.d.ts +49 -0
- package/dist/types/components/Button/Button.stories.d.ts +43 -0
- package/dist/types/components/Button/Button.test.d.ts +1 -0
- package/dist/types/components/Button/index.d.ts +2 -0
- package/dist/types/components/Card/Card.d.ts +43 -0
- package/dist/types/components/Card/Card.stories.d.ts +31 -0
- package/dist/types/components/Card/Card.test.d.ts +1 -0
- package/dist/types/components/Card/index.d.ts +2 -0
- package/dist/types/components/Carousel/Carousel.d.ts +27 -0
- package/dist/types/components/Carousel/Carousel.stories.d.ts +12 -0
- package/dist/types/components/Carousel/Carousel.test.d.ts +1 -0
- package/dist/types/components/Carousel/index.d.ts +2 -0
- package/dist/types/components/DescriptionList/DescriptionList.d.ts +31 -0
- package/dist/types/components/DescriptionList/DescriptionList.stories.d.ts +12 -0
- package/dist/types/components/DescriptionList/DescriptionList.test.d.ts +1 -0
- package/dist/types/components/DescriptionList/index.d.ts +2 -0
- package/dist/types/components/Feature/Feature.d.ts +25 -0
- package/dist/types/components/Feature/Feature.stories.d.ts +19 -0
- package/dist/types/components/Feature/Feature.test.d.ts +1 -0
- package/dist/types/components/Feature/index.d.ts +2 -0
- package/dist/types/components/Icon/Icon.d.ts +24 -0
- package/dist/types/components/Icon/Icon.stories.d.ts +21 -0
- package/dist/types/components/Icon/Icon.test.d.ts +1 -0
- package/dist/types/components/Icon/index.d.ts +2 -0
- package/dist/types/components/Input/Input.d.ts +40 -0
- package/dist/types/components/Input/Input.stories.d.ts +30 -0
- package/dist/types/components/Input/Input.test.d.ts +1 -0
- package/dist/types/components/Input/index.d.ts +2 -0
- package/dist/types/components/Link/Link.d.ts +45 -0
- package/dist/types/components/Link/Link.stories.d.ts +19 -0
- package/dist/types/components/Link/Link.test.d.ts +1 -0
- package/dist/types/components/Link/index.d.ts +2 -0
- package/dist/types/components/List/List.d.ts +35 -0
- package/dist/types/components/List/List.stories.d.ts +14 -0
- package/dist/types/components/List/List.test.d.ts +1 -0
- package/dist/types/components/List/index.d.ts +2 -0
- package/dist/types/components/Menu/Menu.d.ts +44 -0
- package/dist/types/components/Menu/Menu.stories.d.ts +19 -0
- package/dist/types/components/Menu/Menu.test.d.ts +1 -0
- package/dist/types/components/Menu/index.d.ts +2 -0
- package/dist/types/components/Modal/Modal.d.ts +44 -0
- package/dist/types/components/Modal/Modal.stories.d.ts +26 -0
- package/dist/types/components/Modal/Modal.test.d.ts +1 -0
- package/dist/types/components/Modal/index.d.ts +2 -0
- package/dist/types/components/Nav/Nav.d.ts +43 -0
- package/dist/types/components/Nav/Nav.stories.d.ts +19 -0
- package/dist/types/components/Nav/Nav.test.d.ts +1 -0
- package/dist/types/components/Nav/index.d.ts +2 -0
- package/dist/types/components/Pagination/Pagination.d.ts +36 -0
- package/dist/types/components/Pagination/Pagination.stories.d.ts +15 -0
- package/dist/types/components/Pagination/Pagination.test.d.ts +1 -0
- package/dist/types/components/Pagination/index.d.ts +2 -0
- package/dist/types/components/Radio/Radio.d.ts +30 -0
- package/dist/types/components/Radio/Radio.stories.d.ts +15 -0
- package/dist/types/components/Radio/Radio.test.d.ts +1 -0
- package/dist/types/components/Radio/index.d.ts +2 -0
- package/dist/types/components/Slider/Slider.d.ts +44 -0
- package/dist/types/components/Slider/Slider.stories.d.ts +14 -0
- package/dist/types/components/Slider/Slider.test.d.ts +1 -0
- package/dist/types/components/Slider/index.d.ts +2 -0
- package/dist/types/components/Switch/Switch.d.ts +29 -0
- package/dist/types/components/Switch/Switch.stories.d.ts +16 -0
- package/dist/types/components/Switch/Switch.test.d.ts +1 -0
- package/dist/types/components/Switch/index.d.ts +2 -0
- package/dist/types/components/TOC/TOC.d.ts +37 -0
- package/dist/types/components/TOC/TOC.stories.d.ts +17 -0
- package/dist/types/components/TOC/TOC.test.d.ts +1 -0
- package/dist/types/components/TOC/index.d.ts +2 -0
- package/dist/types/components/Table/Table.d.ts +34 -0
- package/dist/types/components/Table/Table.stories.d.ts +13 -0
- package/dist/types/components/Table/Table.test.d.ts +1 -0
- package/dist/types/components/Table/index.d.ts +2 -0
- package/dist/types/components/Tabs/Tabs.d.ts +26 -0
- package/dist/types/components/Tabs/Tabs.stories.d.ts +14 -0
- package/dist/types/components/Tabs/Tabs.test.d.ts +1 -0
- package/dist/types/components/Tabs/index.d.ts +2 -0
- package/dist/types/components/ThemeProvider/ThemeContext.d.ts +8 -0
- package/dist/types/components/ThemeProvider/ThemeProvider.d.ts +9 -0
- package/dist/types/components/ThemeProvider/ThemeProvider.stories.d.ts +17 -0
- package/dist/types/components/ThemeProvider/ThemeProvider.test.d.ts +1 -0
- package/dist/types/components/ThemeProvider/ThemeSwitcher.d.ts +13 -0
- package/dist/types/components/ThemeProvider/index.d.ts +6 -0
- package/dist/types/components/Timeline/Timeline.d.ts +31 -0
- package/dist/types/components/Timeline/Timeline.stories.d.ts +12 -0
- package/dist/types/components/Timeline/Timeline.test.d.ts +1 -0
- package/dist/types/components/Timeline/index.d.ts +2 -0
- package/dist/types/components/Tooltip/Tooltip.d.ts +25 -0
- package/dist/types/components/Tooltip/Tooltip.stories.d.ts +26 -0
- package/dist/types/components/Tooltip/Tooltip.test.d.ts +1 -0
- package/dist/types/components/Tooltip/index.d.ts +2 -0
- package/dist/types/components/index.d.ts +25 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/test/setup.d.ts +1 -0
- package/package.json +85 -0
- package/tokens/brands/edward-guerra.json +9 -0
- package/tokens/brands/materialandhome.json +9 -0
- package/tokens/brands/midwest-husbands.json +9 -0
- package/tokens/config.json +45 -0
- package/tokens/core/breakpoints.json +9 -0
- package/tokens/core/colors.json +217 -0
- package/tokens/core/effects.json +37 -0
- package/tokens/core/spacing.json +24 -0
- package/tokens/core/typography.json +45 -0
- package/tokens/semantic/button.json +37 -0
- package/tokens/semantic/theme.json +26 -0
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
|
|
2
|
+
// Do not edit directly
|
|
3
|
+
// Generated on Sat, 11 Jul 2026 20:29:11 GMT
|
|
4
|
+
|
|
5
|
+
$edward-guerra-brand-primary: #05679f;
|
|
6
|
+
$edward-guerra-brand-secondary: #0d4a6d;
|
|
7
|
+
$edward-guerra-brand-tint: #f0f9ff;
|
|
8
|
+
$materialandhome-brand-primary: #B25D3E;
|
|
9
|
+
$materialandhome-brand-secondary: #8c4530;
|
|
10
|
+
$materialandhome-brand-tint: #f5e8e2;
|
|
11
|
+
$midwest-husbands-brand-primary: #2d5856;
|
|
12
|
+
$midwest-husbands-brand-secondary: #243d3c;
|
|
13
|
+
$midwest-husbands-brand-tint: #f4f9f8;
|
|
14
|
+
$breakpoint-xs: 20em; // 320px
|
|
15
|
+
$breakpoint-md: 46.5em; // 744px
|
|
16
|
+
$breakpoint-lg: 64em; // 1024px
|
|
17
|
+
$breakpoint-xl: 100em; // 1600px
|
|
18
|
+
$breakpoint-2xl: 120em; // 1920px
|
|
19
|
+
$color-neutral-0: #ffffff;
|
|
20
|
+
$color-neutral-50: #f6f6f6;
|
|
21
|
+
$color-neutral-100: #e7e7e7;
|
|
22
|
+
$color-neutral-200: #d1d1d1;
|
|
23
|
+
$color-neutral-300: #b0b0b0;
|
|
24
|
+
$color-neutral-400: #888888;
|
|
25
|
+
$color-neutral-500: #6d6d6d;
|
|
26
|
+
$color-neutral-600: #5d5d5d;
|
|
27
|
+
$color-neutral-700: #4f4f4f;
|
|
28
|
+
$color-neutral-800: #454545;
|
|
29
|
+
$color-neutral-900: #3d3d3d;
|
|
30
|
+
$color-neutral-950: #1a1a1a;
|
|
31
|
+
$color-neutral-1000: #000000;
|
|
32
|
+
$color-blue-50: #f0f9ff;
|
|
33
|
+
$color-blue-100: #e0f2fe;
|
|
34
|
+
$color-blue-200: #bbe6fc;
|
|
35
|
+
$color-blue-300: #7fd1fa;
|
|
36
|
+
$color-blue-400: #3abbf6;
|
|
37
|
+
$color-blue-500: #11a3e6;
|
|
38
|
+
$color-blue-600: #0482c5;
|
|
39
|
+
$color-blue-700: #05679f;
|
|
40
|
+
$color-blue-800: #095883;
|
|
41
|
+
$color-blue-900: #0d4a6d;
|
|
42
|
+
$color-blue-950: #0b3a5a;
|
|
43
|
+
$color-brown-50: #f5f4f1;
|
|
44
|
+
$color-brown-100: #e5e3dc;
|
|
45
|
+
$color-brown-200: #cdcabb;
|
|
46
|
+
$color-brown-300: #b1aa93;
|
|
47
|
+
$color-brown-400: #9a9175;
|
|
48
|
+
$color-brown-500: #8b8067;
|
|
49
|
+
$color-brown-600: #776b57;
|
|
50
|
+
$color-brown-700: #605548;
|
|
51
|
+
$color-brown-800: #534940;
|
|
52
|
+
$color-brown-900: #39322d;
|
|
53
|
+
$color-brown-950: #29221f;
|
|
54
|
+
$color-teal-50: #f4f9f8;
|
|
55
|
+
$color-teal-100: #daedea;
|
|
56
|
+
$color-teal-200: #b4dbd5;
|
|
57
|
+
$color-teal-300: #87c1bb;
|
|
58
|
+
$color-teal-400: #5ea39e;
|
|
59
|
+
$color-teal-500: #448884;
|
|
60
|
+
$color-teal-600: #336967;
|
|
61
|
+
$color-teal-700: #2d5856;
|
|
62
|
+
$color-teal-800: #284747;
|
|
63
|
+
$color-teal-900: #243d3c;
|
|
64
|
+
$color-teal-950: #112122;
|
|
65
|
+
$color-green-50: #f9f8ec;
|
|
66
|
+
$color-green-100: #f1efd6;
|
|
67
|
+
$color-green-200: #e4e1b2;
|
|
68
|
+
$color-green-300: #d1cf85;
|
|
69
|
+
$color-green-400: #bdbc5e;
|
|
70
|
+
$color-green-500: #a1a240;
|
|
71
|
+
$color-green-600: #909236;
|
|
72
|
+
$color-green-700: #616328;
|
|
73
|
+
$color-green-800: #4e5024;
|
|
74
|
+
$color-green-900: #434522;
|
|
75
|
+
$color-green-950: #23250e;
|
|
76
|
+
$color-red-50: #fcf4f4;
|
|
77
|
+
$color-red-100: #fae6e6;
|
|
78
|
+
$color-red-200: #f6d2d2;
|
|
79
|
+
$color-red-300: #efb2b2;
|
|
80
|
+
$color-red-400: #e38686;
|
|
81
|
+
$color-red-500: #d55e5e;
|
|
82
|
+
$color-red-600: #c04242;
|
|
83
|
+
$color-red-700: #973131;
|
|
84
|
+
$color-red-800: #862e2e;
|
|
85
|
+
$color-red-900: #702c2c;
|
|
86
|
+
$color-red-950: #3c1313;
|
|
87
|
+
$color-yellow-50: #fffeea;
|
|
88
|
+
$color-yellow-100: #fffac5;
|
|
89
|
+
$color-yellow-200: #fff585;
|
|
90
|
+
$color-yellow-300: #ffe946;
|
|
91
|
+
$color-yellow-400: #ffd91b;
|
|
92
|
+
$color-yellow-500: #ffba05;
|
|
93
|
+
$color-yellow-600: #e28e00;
|
|
94
|
+
$color-yellow-700: #bb6402;
|
|
95
|
+
$color-yellow-800: #984d08;
|
|
96
|
+
$color-yellow-900: #7c3f0b;
|
|
97
|
+
$color-yellow-950: #482000;
|
|
98
|
+
$color-burnt-50: #fdf5ef;
|
|
99
|
+
$color-burnt-100: #fae8da;
|
|
100
|
+
$color-burnt-200: #f4ceb4;
|
|
101
|
+
$color-burnt-300: #ecad85;
|
|
102
|
+
$color-burnt-400: #e38254;
|
|
103
|
+
$color-burnt-500: #dd6434;
|
|
104
|
+
$color-burnt-600: #ce4c28;
|
|
105
|
+
$color-burnt-700: #ab3923;
|
|
106
|
+
$color-burnt-800: #892f23;
|
|
107
|
+
$color-burnt-900: #6f291f;
|
|
108
|
+
$color-burnt-950: #3c120e;
|
|
109
|
+
$color-berry-50: #fbf4f8;
|
|
110
|
+
$color-berry-100: #f7ecf2;
|
|
111
|
+
$color-berry-200: #f1d9e8;
|
|
112
|
+
$color-berry-300: #e7bad3;
|
|
113
|
+
$color-berry-400: #d88eb7;
|
|
114
|
+
$color-berry-500: #c86c9b;
|
|
115
|
+
$color-berry-600: #b44e7e;
|
|
116
|
+
$color-berry-700: #9a3c65;
|
|
117
|
+
$color-berry-800: #803455;
|
|
118
|
+
$color-berry-900: #6c2f4a;
|
|
119
|
+
$color-berry-950: #0e070a;
|
|
120
|
+
$color-purple-50: #faf5ff;
|
|
121
|
+
$color-purple-100: #f3e8ff;
|
|
122
|
+
$color-purple-200: #e9d5ff;
|
|
123
|
+
$color-purple-300: #d8b4fe;
|
|
124
|
+
$color-purple-400: #c084fc;
|
|
125
|
+
$color-purple-500: #a855f7;
|
|
126
|
+
$color-purple-600: #9333ea;
|
|
127
|
+
$color-purple-700: #7e22ce;
|
|
128
|
+
$color-purple-800: #6b21a8;
|
|
129
|
+
$color-purple-900: #581c87;
|
|
130
|
+
$color-purple-950: #3b0764;
|
|
131
|
+
$color-orange-50: #fff7ed;
|
|
132
|
+
$color-orange-100: #ffedd5;
|
|
133
|
+
$color-orange-200: #fed7aa;
|
|
134
|
+
$color-orange-300: #fdba74;
|
|
135
|
+
$color-orange-400: #fb923c;
|
|
136
|
+
$color-orange-500: #f97316;
|
|
137
|
+
$color-orange-600: #ea580c;
|
|
138
|
+
$color-orange-700: #c2410c;
|
|
139
|
+
$color-orange-800: #9a3412;
|
|
140
|
+
$color-orange-900: #7c2d12;
|
|
141
|
+
$color-orange-950: #431407;
|
|
142
|
+
$color-cyan-50: #ecfeff;
|
|
143
|
+
$color-cyan-100: #cffafe;
|
|
144
|
+
$color-cyan-200: #a5f3fc;
|
|
145
|
+
$color-cyan-300: #67e8f9;
|
|
146
|
+
$color-cyan-400: #22d3ee;
|
|
147
|
+
$color-cyan-500: #06b6d4;
|
|
148
|
+
$color-cyan-600: #0891b2;
|
|
149
|
+
$color-cyan-700: #0e7490;
|
|
150
|
+
$color-cyan-800: #155e75;
|
|
151
|
+
$color-cyan-900: #164e63;
|
|
152
|
+
$color-cyan-950: #083344;
|
|
153
|
+
$color-lime-50: #f7fee7;
|
|
154
|
+
$color-lime-100: #ecfccb;
|
|
155
|
+
$color-lime-200: #d9f99d;
|
|
156
|
+
$color-lime-300: #bef264;
|
|
157
|
+
$color-lime-400: #a3e635;
|
|
158
|
+
$color-lime-500: #84cc16;
|
|
159
|
+
$color-lime-600: #65a30d;
|
|
160
|
+
$color-lime-700: #4d7c0f;
|
|
161
|
+
$color-lime-800: #3f6212;
|
|
162
|
+
$color-lime-900: #365314;
|
|
163
|
+
$color-lime-950: #1a2e05;
|
|
164
|
+
$color-pink-50: #fdf2f8;
|
|
165
|
+
$color-pink-100: #fce7f3;
|
|
166
|
+
$color-pink-200: #fbcfe8;
|
|
167
|
+
$color-pink-300: #f9a8d4;
|
|
168
|
+
$color-pink-400: #f472b6;
|
|
169
|
+
$color-pink-500: #ec4899;
|
|
170
|
+
$color-pink-600: #db2777;
|
|
171
|
+
$color-pink-700: #be185d;
|
|
172
|
+
$color-pink-800: #9d174d;
|
|
173
|
+
$color-pink-900: #831843;
|
|
174
|
+
$color-pink-950: #500724;
|
|
175
|
+
$color-indigo-50: #eef2ff;
|
|
176
|
+
$color-indigo-100: #e0e7ff;
|
|
177
|
+
$color-indigo-200: #c7d2fe;
|
|
178
|
+
$color-indigo-300: #a5b4fc;
|
|
179
|
+
$color-indigo-400: #818cf8;
|
|
180
|
+
$color-indigo-500: #6366f1;
|
|
181
|
+
$color-indigo-600: #4f46e5;
|
|
182
|
+
$color-indigo-700: #4338ca;
|
|
183
|
+
$color-indigo-800: #3730a3;
|
|
184
|
+
$color-indigo-900: #312e81;
|
|
185
|
+
$color-indigo-950: #1e1b4b;
|
|
186
|
+
$color-white-5: rgba(255, 255, 255, 0.05);
|
|
187
|
+
$color-white-10: rgba(255, 255, 255, 0.1);
|
|
188
|
+
$color-white-20: rgba(255, 255, 255, 0.2);
|
|
189
|
+
$color-white-40: rgba(255, 255, 255, 0.4);
|
|
190
|
+
$color-white-60: rgba(255, 255, 255, 0.6);
|
|
191
|
+
$color-white-80: rgba(255, 255, 255, 0.8);
|
|
192
|
+
$color-black-5: rgba(0, 0, 0, 0.05);
|
|
193
|
+
$color-black-10: rgba(0, 0, 0, 0.1);
|
|
194
|
+
$color-black-20: rgba(0, 0, 0, 0.2);
|
|
195
|
+
$color-black-40: rgba(0, 0, 0, 0.4);
|
|
196
|
+
$color-black-60: rgba(0, 0, 0, 0.6);
|
|
197
|
+
$color-black-80: rgba(0, 0, 0, 0.8);
|
|
198
|
+
$shadow-sm: 0 2rem 2rem rgba(0, 0, 0, 0.1); // Live site --shadow-light
|
|
199
|
+
$shadow-md: 0 1.5rem 3rem -1.25rem rgba(0, 0, 0, 0.1); // Live site --shadow-medium
|
|
200
|
+
$shadow-lg: 0 3.125rem 6.25rem -1.25rem rgba(0, 0, 0, 0.25); // Live site --shadow-dark
|
|
201
|
+
$shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
|
|
202
|
+
$radius-none: 0;
|
|
203
|
+
$radius-sm: 0.5rem; // Live site --radius-sm (--size-50)
|
|
204
|
+
$radius-md: 1rem; // Live site --radius-md (--size-100)
|
|
205
|
+
$radius-lg: 2rem; // Live site --radius-lg (--size-200)
|
|
206
|
+
$radius-full: 9999px;
|
|
207
|
+
$border-width-0: 0;
|
|
208
|
+
$border-width-1: 1px;
|
|
209
|
+
$border-width-2: 2px;
|
|
210
|
+
$border-width-4: 4px;
|
|
211
|
+
$border-width-8: 8px;
|
|
212
|
+
$spacing-0: 0;
|
|
213
|
+
$spacing-1: 0.25rem; // 4px
|
|
214
|
+
$spacing-2: 0.5rem; // 8px
|
|
215
|
+
$spacing-3: 0.75rem; // 12px
|
|
216
|
+
$spacing-4: 1rem; // 16px
|
|
217
|
+
$spacing-5: 1.25rem; // 20px
|
|
218
|
+
$spacing-6: 1.5rem; // 24px
|
|
219
|
+
$spacing-8: 2rem; // 32px
|
|
220
|
+
$spacing-10: 2.5rem; // 40px
|
|
221
|
+
$spacing-12: 3rem; // 48px
|
|
222
|
+
$spacing-16: 4rem; // 64px
|
|
223
|
+
$spacing-20: 5rem; // 80px
|
|
224
|
+
$spacing-24: 6rem; // 96px
|
|
225
|
+
$spacing-32: 8rem; // 128px
|
|
226
|
+
$spacing-40: 10rem; // 160px
|
|
227
|
+
$spacing-48: 12rem; // 192px
|
|
228
|
+
$spacing-56: 14rem; // 224px
|
|
229
|
+
$spacing-64: 16rem; // 256px
|
|
230
|
+
$spacing-96: 24rem; // 384px
|
|
231
|
+
$spacing-120: 30rem; // 480px
|
|
232
|
+
$font-family-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
233
|
+
$font-family-serif: Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
234
|
+
$font-family-mono: Menlo, Monaco, Consolas, 'Courier New', monospace;
|
|
235
|
+
$font-size-2xs: 0.5rem; // 8px — live --eg-font-size-25
|
|
236
|
+
$font-size-xs: 0.75rem; // 12px — live --eg-font-size-50
|
|
237
|
+
$font-size-sm: 0.875rem; // 14px — live --eg-font-size-75
|
|
238
|
+
$font-size-base: 1rem; // 16px — live --eg-font-size-100
|
|
239
|
+
$font-size-lg: 1.125rem; // 18px — live --eg-font-size-200
|
|
240
|
+
$font-size-xl: 1.25rem; // 20px — live --eg-font-size-300
|
|
241
|
+
$font-size-2xl: 1.5rem; // 24px — live --eg-font-size-400
|
|
242
|
+
$font-size-3xl: 2rem; // 32px — live --eg-font-size-500
|
|
243
|
+
$font-size-4xl: 2.5rem; // 40px — live --eg-font-size-600
|
|
244
|
+
$font-size-5xl: 3rem; // 48px — live --eg-font-size-700
|
|
245
|
+
$font-size-responsive: 8rem; // Live --eg-font-responsive
|
|
246
|
+
$font-weight-light: 300;
|
|
247
|
+
$font-weight-normal: 400;
|
|
248
|
+
$font-weight-medium: 500;
|
|
249
|
+
$font-weight-semibold: 600;
|
|
250
|
+
$font-weight-bold: 700;
|
|
251
|
+
$font-weight-extrabold: 800;
|
|
252
|
+
$font-line-height-tight: 1.25;
|
|
253
|
+
$font-line-height-normal: 1.5;
|
|
254
|
+
$font-line-height-relaxed: 1.75;
|
|
255
|
+
$font-line-height-loose: 2;
|
|
256
|
+
$button-primary-background: #0482c5;
|
|
257
|
+
$button-primary-background-hover: #05679f;
|
|
258
|
+
$button-primary-background-active: #095883;
|
|
259
|
+
$button-primary-text: #ffffff;
|
|
260
|
+
$button-primary-border-radius: 1rem;
|
|
261
|
+
$button-primary-padding-x: 1.5rem;
|
|
262
|
+
$button-primary-padding-y: 0.75rem;
|
|
263
|
+
$button-primary-font-size: 1rem;
|
|
264
|
+
$button-primary-font-weight: 500;
|
|
265
|
+
$button-secondary-background: #e7e7e7;
|
|
266
|
+
$button-secondary-background-hover: #d1d1d1;
|
|
267
|
+
$button-secondary-background-active: #b0b0b0;
|
|
268
|
+
$button-secondary-text: #3d3d3d;
|
|
269
|
+
$button-secondary-border-radius: 1rem;
|
|
270
|
+
$button-secondary-padding-x: 1.5rem;
|
|
271
|
+
$button-secondary-padding-y: 0.75rem;
|
|
272
|
+
$button-secondary-font-size: 1rem;
|
|
273
|
+
$button-secondary-font-weight: 500;
|
|
274
|
+
$button-danger-background: #c04242;
|
|
275
|
+
$button-danger-background-hover: #973131;
|
|
276
|
+
$button-danger-background-active: #862e2e;
|
|
277
|
+
$button-danger-text: #ffffff;
|
|
278
|
+
$button-danger-border-radius: 1rem;
|
|
279
|
+
$button-danger-padding-x: 1.5rem;
|
|
280
|
+
$button-danger-padding-y: 0.75rem;
|
|
281
|
+
$button-danger-font-size: 1rem;
|
|
282
|
+
$button-danger-font-weight: 500;
|
|
283
|
+
$theme-background-primary: #ffffff;
|
|
284
|
+
$theme-background-secondary: #f6f6f6;
|
|
285
|
+
$theme-background-tertiary: #e7e7e7;
|
|
286
|
+
$theme-text-primary: #3d3d3d;
|
|
287
|
+
$theme-text-secondary: #4f4f4f;
|
|
288
|
+
$theme-text-tertiary: #6d6d6d;
|
|
289
|
+
$theme-text-inverse: #ffffff;
|
|
290
|
+
$theme-border-default: #d1d1d1;
|
|
291
|
+
$theme-border-strong: #888888;
|
|
292
|
+
$theme-border-subtle: #e7e7e7;
|
|
293
|
+
$theme-status-success: #909236;
|
|
294
|
+
$theme-status-warning: #e28e00;
|
|
295
|
+
$theme-status-error: #c04242;
|
|
296
|
+
$theme-status-info: #0482c5;
|
|
@@ -0,0 +1,338 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly
|
|
3
|
+
* Generated on Sat, 11 Jul 2026 20:29:11 GMT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
export const EdwardGuerraBrandPrimary : string;
|
|
7
|
+
export const EdwardGuerraBrandSecondary : string;
|
|
8
|
+
export const EdwardGuerraBrandTint : string;
|
|
9
|
+
export const MaterialandhomeBrandPrimary : string;
|
|
10
|
+
export const MaterialandhomeBrandSecondary : string;
|
|
11
|
+
export const MaterialandhomeBrandTint : string;
|
|
12
|
+
export const MidwestHusbandsBrandPrimary : string;
|
|
13
|
+
export const MidwestHusbandsBrandSecondary : string;
|
|
14
|
+
export const MidwestHusbandsBrandTint : string;
|
|
15
|
+
/** 320px */
|
|
16
|
+
export const BreakpointXs : string;
|
|
17
|
+
/** 744px */
|
|
18
|
+
export const BreakpointMd : string;
|
|
19
|
+
/** 1024px */
|
|
20
|
+
export const BreakpointLg : string;
|
|
21
|
+
/** 1600px */
|
|
22
|
+
export const BreakpointXl : string;
|
|
23
|
+
/** 1920px */
|
|
24
|
+
export const Breakpoint2xl : string;
|
|
25
|
+
export const ColorNeutral0 : string;
|
|
26
|
+
export const ColorNeutral50 : string;
|
|
27
|
+
export const ColorNeutral100 : string;
|
|
28
|
+
export const ColorNeutral200 : string;
|
|
29
|
+
export const ColorNeutral300 : string;
|
|
30
|
+
export const ColorNeutral400 : string;
|
|
31
|
+
export const ColorNeutral500 : string;
|
|
32
|
+
export const ColorNeutral600 : string;
|
|
33
|
+
export const ColorNeutral700 : string;
|
|
34
|
+
export const ColorNeutral800 : string;
|
|
35
|
+
export const ColorNeutral900 : string;
|
|
36
|
+
export const ColorNeutral950 : string;
|
|
37
|
+
export const ColorNeutral1000 : string;
|
|
38
|
+
export const ColorBlue50 : string;
|
|
39
|
+
export const ColorBlue100 : string;
|
|
40
|
+
export const ColorBlue200 : string;
|
|
41
|
+
export const ColorBlue300 : string;
|
|
42
|
+
export const ColorBlue400 : string;
|
|
43
|
+
export const ColorBlue500 : string;
|
|
44
|
+
export const ColorBlue600 : string;
|
|
45
|
+
export const ColorBlue700 : string;
|
|
46
|
+
export const ColorBlue800 : string;
|
|
47
|
+
export const ColorBlue900 : string;
|
|
48
|
+
export const ColorBlue950 : string;
|
|
49
|
+
export const ColorBrown50 : string;
|
|
50
|
+
export const ColorBrown100 : string;
|
|
51
|
+
export const ColorBrown200 : string;
|
|
52
|
+
export const ColorBrown300 : string;
|
|
53
|
+
export const ColorBrown400 : string;
|
|
54
|
+
export const ColorBrown500 : string;
|
|
55
|
+
export const ColorBrown600 : string;
|
|
56
|
+
export const ColorBrown700 : string;
|
|
57
|
+
export const ColorBrown800 : string;
|
|
58
|
+
export const ColorBrown900 : string;
|
|
59
|
+
export const ColorBrown950 : string;
|
|
60
|
+
export const ColorTeal50 : string;
|
|
61
|
+
export const ColorTeal100 : string;
|
|
62
|
+
export const ColorTeal200 : string;
|
|
63
|
+
export const ColorTeal300 : string;
|
|
64
|
+
export const ColorTeal400 : string;
|
|
65
|
+
export const ColorTeal500 : string;
|
|
66
|
+
export const ColorTeal600 : string;
|
|
67
|
+
export const ColorTeal700 : string;
|
|
68
|
+
export const ColorTeal800 : string;
|
|
69
|
+
export const ColorTeal900 : string;
|
|
70
|
+
export const ColorTeal950 : string;
|
|
71
|
+
export const ColorGreen50 : string;
|
|
72
|
+
export const ColorGreen100 : string;
|
|
73
|
+
export const ColorGreen200 : string;
|
|
74
|
+
export const ColorGreen300 : string;
|
|
75
|
+
export const ColorGreen400 : string;
|
|
76
|
+
export const ColorGreen500 : string;
|
|
77
|
+
export const ColorGreen600 : string;
|
|
78
|
+
export const ColorGreen700 : string;
|
|
79
|
+
export const ColorGreen800 : string;
|
|
80
|
+
export const ColorGreen900 : string;
|
|
81
|
+
export const ColorGreen950 : string;
|
|
82
|
+
export const ColorRed50 : string;
|
|
83
|
+
export const ColorRed100 : string;
|
|
84
|
+
export const ColorRed200 : string;
|
|
85
|
+
export const ColorRed300 : string;
|
|
86
|
+
export const ColorRed400 : string;
|
|
87
|
+
export const ColorRed500 : string;
|
|
88
|
+
export const ColorRed600 : string;
|
|
89
|
+
export const ColorRed700 : string;
|
|
90
|
+
export const ColorRed800 : string;
|
|
91
|
+
export const ColorRed900 : string;
|
|
92
|
+
export const ColorRed950 : string;
|
|
93
|
+
export const ColorYellow50 : string;
|
|
94
|
+
export const ColorYellow100 : string;
|
|
95
|
+
export const ColorYellow200 : string;
|
|
96
|
+
export const ColorYellow300 : string;
|
|
97
|
+
export const ColorYellow400 : string;
|
|
98
|
+
export const ColorYellow500 : string;
|
|
99
|
+
export const ColorYellow600 : string;
|
|
100
|
+
export const ColorYellow700 : string;
|
|
101
|
+
export const ColorYellow800 : string;
|
|
102
|
+
export const ColorYellow900 : string;
|
|
103
|
+
export const ColorYellow950 : string;
|
|
104
|
+
export const ColorBurnt50 : string;
|
|
105
|
+
export const ColorBurnt100 : string;
|
|
106
|
+
export const ColorBurnt200 : string;
|
|
107
|
+
export const ColorBurnt300 : string;
|
|
108
|
+
export const ColorBurnt400 : string;
|
|
109
|
+
export const ColorBurnt500 : string;
|
|
110
|
+
export const ColorBurnt600 : string;
|
|
111
|
+
export const ColorBurnt700 : string;
|
|
112
|
+
export const ColorBurnt800 : string;
|
|
113
|
+
export const ColorBurnt900 : string;
|
|
114
|
+
export const ColorBurnt950 : string;
|
|
115
|
+
export const ColorBerry50 : string;
|
|
116
|
+
export const ColorBerry100 : string;
|
|
117
|
+
export const ColorBerry200 : string;
|
|
118
|
+
export const ColorBerry300 : string;
|
|
119
|
+
export const ColorBerry400 : string;
|
|
120
|
+
export const ColorBerry500 : string;
|
|
121
|
+
export const ColorBerry600 : string;
|
|
122
|
+
export const ColorBerry700 : string;
|
|
123
|
+
export const ColorBerry800 : string;
|
|
124
|
+
export const ColorBerry900 : string;
|
|
125
|
+
export const ColorBerry950 : string;
|
|
126
|
+
export const ColorPurple50 : string;
|
|
127
|
+
export const ColorPurple100 : string;
|
|
128
|
+
export const ColorPurple200 : string;
|
|
129
|
+
export const ColorPurple300 : string;
|
|
130
|
+
export const ColorPurple400 : string;
|
|
131
|
+
export const ColorPurple500 : string;
|
|
132
|
+
export const ColorPurple600 : string;
|
|
133
|
+
export const ColorPurple700 : string;
|
|
134
|
+
export const ColorPurple800 : string;
|
|
135
|
+
export const ColorPurple900 : string;
|
|
136
|
+
export const ColorPurple950 : string;
|
|
137
|
+
export const ColorOrange50 : string;
|
|
138
|
+
export const ColorOrange100 : string;
|
|
139
|
+
export const ColorOrange200 : string;
|
|
140
|
+
export const ColorOrange300 : string;
|
|
141
|
+
export const ColorOrange400 : string;
|
|
142
|
+
export const ColorOrange500 : string;
|
|
143
|
+
export const ColorOrange600 : string;
|
|
144
|
+
export const ColorOrange700 : string;
|
|
145
|
+
export const ColorOrange800 : string;
|
|
146
|
+
export const ColorOrange900 : string;
|
|
147
|
+
export const ColorOrange950 : string;
|
|
148
|
+
export const ColorCyan50 : string;
|
|
149
|
+
export const ColorCyan100 : string;
|
|
150
|
+
export const ColorCyan200 : string;
|
|
151
|
+
export const ColorCyan300 : string;
|
|
152
|
+
export const ColorCyan400 : string;
|
|
153
|
+
export const ColorCyan500 : string;
|
|
154
|
+
export const ColorCyan600 : string;
|
|
155
|
+
export const ColorCyan700 : string;
|
|
156
|
+
export const ColorCyan800 : string;
|
|
157
|
+
export const ColorCyan900 : string;
|
|
158
|
+
export const ColorCyan950 : string;
|
|
159
|
+
export const ColorLime50 : string;
|
|
160
|
+
export const ColorLime100 : string;
|
|
161
|
+
export const ColorLime200 : string;
|
|
162
|
+
export const ColorLime300 : string;
|
|
163
|
+
export const ColorLime400 : string;
|
|
164
|
+
export const ColorLime500 : string;
|
|
165
|
+
export const ColorLime600 : string;
|
|
166
|
+
export const ColorLime700 : string;
|
|
167
|
+
export const ColorLime800 : string;
|
|
168
|
+
export const ColorLime900 : string;
|
|
169
|
+
export const ColorLime950 : string;
|
|
170
|
+
export const ColorPink50 : string;
|
|
171
|
+
export const ColorPink100 : string;
|
|
172
|
+
export const ColorPink200 : string;
|
|
173
|
+
export const ColorPink300 : string;
|
|
174
|
+
export const ColorPink400 : string;
|
|
175
|
+
export const ColorPink500 : string;
|
|
176
|
+
export const ColorPink600 : string;
|
|
177
|
+
export const ColorPink700 : string;
|
|
178
|
+
export const ColorPink800 : string;
|
|
179
|
+
export const ColorPink900 : string;
|
|
180
|
+
export const ColorPink950 : string;
|
|
181
|
+
export const ColorIndigo50 : string;
|
|
182
|
+
export const ColorIndigo100 : string;
|
|
183
|
+
export const ColorIndigo200 : string;
|
|
184
|
+
export const ColorIndigo300 : string;
|
|
185
|
+
export const ColorIndigo400 : string;
|
|
186
|
+
export const ColorIndigo500 : string;
|
|
187
|
+
export const ColorIndigo600 : string;
|
|
188
|
+
export const ColorIndigo700 : string;
|
|
189
|
+
export const ColorIndigo800 : string;
|
|
190
|
+
export const ColorIndigo900 : string;
|
|
191
|
+
export const ColorIndigo950 : string;
|
|
192
|
+
export const ColorWhite5 : string;
|
|
193
|
+
export const ColorWhite10 : string;
|
|
194
|
+
export const ColorWhite20 : string;
|
|
195
|
+
export const ColorWhite40 : string;
|
|
196
|
+
export const ColorWhite60 : string;
|
|
197
|
+
export const ColorWhite80 : string;
|
|
198
|
+
export const ColorBlack5 : string;
|
|
199
|
+
export const ColorBlack10 : string;
|
|
200
|
+
export const ColorBlack20 : string;
|
|
201
|
+
export const ColorBlack40 : string;
|
|
202
|
+
export const ColorBlack60 : string;
|
|
203
|
+
export const ColorBlack80 : string;
|
|
204
|
+
/** Live site --shadow-light */
|
|
205
|
+
export const ShadowSm : string;
|
|
206
|
+
/** Live site --shadow-medium */
|
|
207
|
+
export const ShadowMd : string;
|
|
208
|
+
/** Live site --shadow-dark */
|
|
209
|
+
export const ShadowLg : string;
|
|
210
|
+
export const ShadowInner : string;
|
|
211
|
+
export const RadiusNone : string;
|
|
212
|
+
/** Live site --radius-sm (--size-50) */
|
|
213
|
+
export const RadiusSm : string;
|
|
214
|
+
/** Live site --radius-md (--size-100) */
|
|
215
|
+
export const RadiusMd : string;
|
|
216
|
+
/** Live site --radius-lg (--size-200) */
|
|
217
|
+
export const RadiusLg : string;
|
|
218
|
+
export const RadiusFull : string;
|
|
219
|
+
export const BorderWidth0 : string;
|
|
220
|
+
export const BorderWidth1 : string;
|
|
221
|
+
export const BorderWidth2 : string;
|
|
222
|
+
export const BorderWidth4 : string;
|
|
223
|
+
export const BorderWidth8 : string;
|
|
224
|
+
export const Spacing0 : string;
|
|
225
|
+
/** 4px */
|
|
226
|
+
export const Spacing1 : string;
|
|
227
|
+
/** 8px */
|
|
228
|
+
export const Spacing2 : string;
|
|
229
|
+
/** 12px */
|
|
230
|
+
export const Spacing3 : string;
|
|
231
|
+
/** 16px */
|
|
232
|
+
export const Spacing4 : string;
|
|
233
|
+
/** 20px */
|
|
234
|
+
export const Spacing5 : string;
|
|
235
|
+
/** 24px */
|
|
236
|
+
export const Spacing6 : string;
|
|
237
|
+
/** 32px */
|
|
238
|
+
export const Spacing8 : string;
|
|
239
|
+
/** 40px */
|
|
240
|
+
export const Spacing10 : string;
|
|
241
|
+
/** 48px */
|
|
242
|
+
export const Spacing12 : string;
|
|
243
|
+
/** 64px */
|
|
244
|
+
export const Spacing16 : string;
|
|
245
|
+
/** 80px */
|
|
246
|
+
export const Spacing20 : string;
|
|
247
|
+
/** 96px */
|
|
248
|
+
export const Spacing24 : string;
|
|
249
|
+
/** 128px */
|
|
250
|
+
export const Spacing32 : string;
|
|
251
|
+
/** 160px */
|
|
252
|
+
export const Spacing40 : string;
|
|
253
|
+
/** 192px */
|
|
254
|
+
export const Spacing48 : string;
|
|
255
|
+
/** 224px */
|
|
256
|
+
export const Spacing56 : string;
|
|
257
|
+
/** 256px */
|
|
258
|
+
export const Spacing64 : string;
|
|
259
|
+
/** 384px */
|
|
260
|
+
export const Spacing96 : string;
|
|
261
|
+
/** 480px */
|
|
262
|
+
export const Spacing120 : string;
|
|
263
|
+
export const FontFamilySans : string;
|
|
264
|
+
export const FontFamilySerif : string;
|
|
265
|
+
export const FontFamilyMono : string;
|
|
266
|
+
/** 8px — live --eg-font-size-25 */
|
|
267
|
+
export const FontSize2xs : string;
|
|
268
|
+
/** 12px — live --eg-font-size-50 */
|
|
269
|
+
export const FontSizeXs : string;
|
|
270
|
+
/** 14px — live --eg-font-size-75 */
|
|
271
|
+
export const FontSizeSm : string;
|
|
272
|
+
/** 16px — live --eg-font-size-100 */
|
|
273
|
+
export const FontSizeBase : string;
|
|
274
|
+
/** 18px — live --eg-font-size-200 */
|
|
275
|
+
export const FontSizeLg : string;
|
|
276
|
+
/** 20px — live --eg-font-size-300 */
|
|
277
|
+
export const FontSizeXl : string;
|
|
278
|
+
/** 24px — live --eg-font-size-400 */
|
|
279
|
+
export const FontSize2xl : string;
|
|
280
|
+
/** 32px — live --eg-font-size-500 */
|
|
281
|
+
export const FontSize3xl : string;
|
|
282
|
+
/** 40px — live --eg-font-size-600 */
|
|
283
|
+
export const FontSize4xl : string;
|
|
284
|
+
/** 48px — live --eg-font-size-700 */
|
|
285
|
+
export const FontSize5xl : string;
|
|
286
|
+
/** Live --eg-font-responsive */
|
|
287
|
+
export const FontSizeResponsive : string;
|
|
288
|
+
export const FontWeightLight : string;
|
|
289
|
+
export const FontWeightNormal : string;
|
|
290
|
+
export const FontWeightMedium : string;
|
|
291
|
+
export const FontWeightSemibold : string;
|
|
292
|
+
export const FontWeightBold : string;
|
|
293
|
+
export const FontWeightExtrabold : string;
|
|
294
|
+
export const FontLineHeightTight : string;
|
|
295
|
+
export const FontLineHeightNormal : string;
|
|
296
|
+
export const FontLineHeightRelaxed : string;
|
|
297
|
+
export const FontLineHeightLoose : string;
|
|
298
|
+
export const ButtonPrimaryBackground : string;
|
|
299
|
+
export const ButtonPrimaryBackgroundHover : string;
|
|
300
|
+
export const ButtonPrimaryBackgroundActive : string;
|
|
301
|
+
export const ButtonPrimaryText : string;
|
|
302
|
+
export const ButtonPrimaryBorderRadius : string;
|
|
303
|
+
export const ButtonPrimaryPaddingX : string;
|
|
304
|
+
export const ButtonPrimaryPaddingY : string;
|
|
305
|
+
export const ButtonPrimaryFontSize : string;
|
|
306
|
+
export const ButtonPrimaryFontWeight : string;
|
|
307
|
+
export const ButtonSecondaryBackground : string;
|
|
308
|
+
export const ButtonSecondaryBackgroundHover : string;
|
|
309
|
+
export const ButtonSecondaryBackgroundActive : string;
|
|
310
|
+
export const ButtonSecondaryText : string;
|
|
311
|
+
export const ButtonSecondaryBorderRadius : string;
|
|
312
|
+
export const ButtonSecondaryPaddingX : string;
|
|
313
|
+
export const ButtonSecondaryPaddingY : string;
|
|
314
|
+
export const ButtonSecondaryFontSize : string;
|
|
315
|
+
export const ButtonSecondaryFontWeight : string;
|
|
316
|
+
export const ButtonDangerBackground : string;
|
|
317
|
+
export const ButtonDangerBackgroundHover : string;
|
|
318
|
+
export const ButtonDangerBackgroundActive : string;
|
|
319
|
+
export const ButtonDangerText : string;
|
|
320
|
+
export const ButtonDangerBorderRadius : string;
|
|
321
|
+
export const ButtonDangerPaddingX : string;
|
|
322
|
+
export const ButtonDangerPaddingY : string;
|
|
323
|
+
export const ButtonDangerFontSize : string;
|
|
324
|
+
export const ButtonDangerFontWeight : string;
|
|
325
|
+
export const ThemeBackgroundPrimary : string;
|
|
326
|
+
export const ThemeBackgroundSecondary : string;
|
|
327
|
+
export const ThemeBackgroundTertiary : string;
|
|
328
|
+
export const ThemeTextPrimary : string;
|
|
329
|
+
export const ThemeTextSecondary : string;
|
|
330
|
+
export const ThemeTextTertiary : string;
|
|
331
|
+
export const ThemeTextInverse : string;
|
|
332
|
+
export const ThemeBorderDefault : string;
|
|
333
|
+
export const ThemeBorderStrong : string;
|
|
334
|
+
export const ThemeBorderSubtle : string;
|
|
335
|
+
export const ThemeStatusSuccess : string;
|
|
336
|
+
export const ThemeStatusWarning : string;
|
|
337
|
+
export const ThemeStatusError : string;
|
|
338
|
+
export const ThemeStatusInfo : string;
|