@bvs-tech/material 0.0.2 → 0.0.4

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.
@@ -6,75 +6,75 @@
6
6
 
7
7
  // Primary Palette (Blues)
8
8
  $palette-primary: (
9
- "50": #eff6ff,
10
- "100": #dbeafe,
11
- "200": #bfdbfe,
12
- "300": #93c5fd,
13
- "400": #60a5fa,
14
- "500": #3b82f6,
15
- "600": #2563eb,
16
- "700": #1d4ed8,
17
- "800": #1e40af,
18
- "900": #1e3a8a
9
+ '50': #eff6ff,
10
+ '100': #dbeafe,
11
+ '200': #bfdbfe,
12
+ '300': #93c5fd,
13
+ '400': #60a5fa,
14
+ '500': #3b82f6,
15
+ '600': #2563eb,
16
+ '700': #1d4ed8,
17
+ '800': #1e40af,
18
+ '900': #1e3a8a,
19
19
  );
20
20
 
21
21
  // Secondary/Accent (Purples)
22
22
  $palette-secondary: (
23
- "50": #f5f3ff,
24
- "100": #ede9fe,
25
- "200": #ddd6fe,
26
- "300": #c4b5fd,
27
- "400": #a78bfa,
28
- "500": #8b5cf6,
29
- "600": #7c3aed,
30
- "700": #6d28d9,
31
- "800": #5b21b6,
32
- "900": #4c1d95
23
+ '50': #f5f3ff,
24
+ '100': #ede9fe,
25
+ '200': #ddd6fe,
26
+ '300': #c4b5fd,
27
+ '400': #a78bfa,
28
+ '500': #8b5cf6,
29
+ '600': #7c3aed,
30
+ '700': #6d28d9,
31
+ '800': #5b21b6,
32
+ '900': #4c1d95,
33
33
  );
34
34
 
35
35
  // Neutrals (Slate/Greys)
36
36
  $palette-neutral: (
37
- "0": #ffffff,
38
- "50": #f8fafc,
39
- "100": #f1f5f9,
40
- "200": #e2e8f0,
41
- "300": #cbd5e1,
42
- "400": #94a3b8,
43
- "500": #64748b,
44
- "600": #475569,
45
- "700": #334155,
46
- "800": #1e293b,
47
- "900": #0f172a,
48
- "950": #090d16,
49
- "1000": #000000
37
+ '0': #ffffff,
38
+ '50': #f8fafc,
39
+ '100': #f1f5f9,
40
+ '200': #e2e8f0,
41
+ '300': #cbd5e1,
42
+ '400': #94a3b8,
43
+ '500': #64748b,
44
+ '600': #475569,
45
+ '700': #334155,
46
+ '800': #1e293b,
47
+ '900': #0f172a,
48
+ '950': #090d16,
49
+ '1000': #000000,
50
50
  );
51
51
 
52
52
  // Success (Greens)
53
53
  $palette-success: (
54
- "light": #d1fae5,
55
- "base": #10b981,
56
- "dark": #065f46
54
+ 'light': #d1fae5,
55
+ 'base': #10b981,
56
+ 'dark': #065f46,
57
57
  );
58
58
 
59
59
  // Warning (Ambers)
60
60
  $palette-warning: (
61
- "light": #fef3c7,
62
- "base": #f59e0b,
63
- "dark": #92400e
61
+ 'light': #fef3c7,
62
+ 'base': #f59e0b,
63
+ 'dark': #92400e,
64
64
  );
65
65
 
66
66
  // Error (Reds)
67
67
  $palette-error: (
68
- "light": #fee2e2,
69
- "base": #ef4444,
70
- "dark": #991b1b
68
+ 'light': #fee2e2,
69
+ 'base': #ef4444,
70
+ 'dark': #991b1b,
71
71
  );
72
72
 
73
73
  // Info (Sky/Cyans)
74
74
  $palette-info: (
75
- "light": #e0f2fe,
76
- "base": #0ea5e9,
77
- "dark": #075985
75
+ 'light': #e0f2fe,
76
+ 'base': #0ea5e9,
77
+ 'dark': #075985,
78
78
  );
79
79
 
80
80
  // ============================================================
@@ -83,145 +83,152 @@ $palette-info: (
83
83
 
84
84
  // 1. Default (Corporate Blue)
85
85
  $theme-default-light: (
86
- "brand": map.get($palette-primary, "600"),
87
- "brand-hover": map.get($palette-primary, "700"),
88
- "brand-active": map.get($palette-primary, "800"),
89
- "surface": map.get($palette-neutral, "0"),
90
- "surface-subtle": map.get($palette-neutral, "50"),
91
- "surface-muted": map.get($palette-neutral, "100"),
92
- "text-primary": map.get($palette-neutral, "900"),
93
- "text-secondary": map.get($palette-neutral, "600"),
94
- "text-disabled": map.get($palette-neutral, "400"),
95
- "border": map.get($palette-neutral, "200"),
96
- "border-strong": map.get($palette-neutral, "400")
86
+ 'brand': map.get($palette-primary, '600'),
87
+ 'brand-hover': map.get($palette-primary, '700'),
88
+ 'brand-active': map.get($palette-primary, '800'),
89
+ 'surface': map.get($palette-neutral, '0'),
90
+ 'surface-subtle': map.get($palette-neutral, '50'),
91
+ 'surface-muted': map.get($palette-neutral, '100'),
92
+ 'text-primary': map.get($palette-neutral, '900'),
93
+ 'text-secondary': map.get($palette-neutral, '600'),
94
+ 'text-disabled': map.get($palette-neutral, '400'),
95
+ 'border': map.get($palette-neutral, '200'),
96
+ 'border-strong': map.get($palette-neutral, '400'),
97
97
  );
98
98
 
99
99
  $theme-default-dark: (
100
- "brand": map.get($palette-primary, "400"),
101
- "brand-hover": map.get($palette-primary, "300"),
102
- "brand-active": map.get($palette-primary, "200"),
103
- "surface": map.get($palette-neutral, "950"),
104
- "surface-subtle": map.get($palette-neutral, "900"),
105
- "surface-muted": map.get($palette-neutral, "800"),
106
- "text-primary": map.get($palette-neutral, "50"),
107
- "text-secondary": map.get($palette-neutral, "400"),
108
- "text-disabled": map.get($palette-neutral, "600"),
109
- "border": map.get($palette-neutral, "900"),
110
- "border-strong": map.get($palette-neutral, "700")
100
+ 'brand': map.get($palette-primary, '400'),
101
+ 'brand-hover': map.get($palette-primary, '300'),
102
+ 'brand-active': map.get($palette-primary, '200'),
103
+ 'surface': map.get($palette-neutral, '950'),
104
+ 'surface-subtle': map.get($palette-neutral, '900'),
105
+ 'surface-muted': map.get($palette-neutral, '800'),
106
+ 'text-primary': map.get($palette-neutral, '50'),
107
+ 'text-secondary': map.get($palette-neutral, '400'),
108
+ 'text-disabled': map.get($palette-neutral, '600'),
109
+ 'border': map.get($palette-neutral, '900'),
110
+ 'border-strong': map.get($palette-neutral, '700'),
111
111
  );
112
112
 
113
113
  // 2. Emerald (Green/Finance)
114
114
  $theme-emerald-light: (
115
- "brand": map.get($palette-success, "base"),
116
- "brand-hover": map.get($palette-success, "dark"),
117
- "brand-active": #044331,
118
- "surface": map.get($palette-neutral, "0"),
119
- "surface-subtle": map.get($palette-neutral, "50"),
120
- "surface-muted": map.get($palette-neutral, "100"),
121
- "text-primary": map.get($palette-neutral, "900"),
122
- "text-secondary": map.get($palette-neutral, "600"),
123
- "text-disabled": map.get($palette-neutral, "400"),
124
- "border": map.get($palette-neutral, "200"),
125
- "border-strong": map.get($palette-neutral, "400")
115
+ 'brand': map.get($palette-success, 'base'),
116
+ 'brand-hover': map.get($palette-success, 'dark'),
117
+ 'brand-active': #044331,
118
+ 'surface': map.get($palette-neutral, '0'),
119
+ 'surface-subtle': map.get($palette-neutral, '50'),
120
+ 'surface-muted': map.get($palette-neutral, '100'),
121
+ 'text-primary': map.get($palette-neutral, '900'),
122
+ 'text-secondary': map.get($palette-neutral, '600'),
123
+ 'text-disabled': map.get($palette-neutral, '400'),
124
+ 'border': map.get($palette-neutral, '200'),
125
+ 'border-strong': map.get($palette-neutral, '400'),
126
126
  );
127
127
 
128
128
  $theme-emerald-dark: (
129
- "brand": #34d399,
130
- "brand-hover": map.get($palette-success, "base"),
131
- "brand-active": map.get($palette-success, "dark"),
132
- "surface": #03100b,
133
- "surface-subtle": #061f17,
134
- "surface-muted": #0c2d22,
135
- "text-primary": map.get($palette-neutral, "50"),
136
- "text-secondary": #a7f3d0,
137
- "text-disabled": #065f46,
138
- "border": #0a261d,
139
- "border-strong": map.get($palette-success, "dark")
129
+ 'brand': #34d399,
130
+ 'brand-hover': map.get($palette-success, 'base'),
131
+ 'brand-active': map.get($palette-success, 'dark'),
132
+ 'surface': #03100b,
133
+ 'surface-subtle': #061f17,
134
+ 'surface-muted': #0c2d22,
135
+ 'text-primary': map.get($palette-neutral, '50'),
136
+ 'text-secondary': #a7f3d0,
137
+ 'text-disabled': #065f46,
138
+ 'border': #0a261d,
139
+ 'border-strong': map.get($palette-success, 'dark'),
140
140
  );
141
141
 
142
142
  // 3. Sunset (Orange/Energy)
143
143
  $theme-sunset-light: (
144
- "brand": #ea580c, // Orange 600
145
- "brand-hover": #c2410c, // Orange 700
146
- "brand-active": #9a3412, // Orange 800
147
- "surface": map.get($palette-neutral, "0"),
148
- "surface-subtle": map.get($palette-neutral, "50"),
149
- "surface-muted": map.get($palette-neutral, "100"),
150
- "text-primary": map.get($palette-neutral, "900"),
151
- "text-secondary": map.get($palette-neutral, "600"),
152
- "text-disabled": map.get($palette-neutral, "400"),
153
- "border": map.get($palette-neutral, "200"),
154
- "border-strong": map.get($palette-neutral, "400")
144
+ 'brand': #ea580c,
145
+ // Orange 600
146
+ 'brand-hover': #c2410c,
147
+ // Orange 700
148
+ 'brand-active': #9a3412,
149
+ // Orange 800
150
+ 'surface': map.get($palette-neutral, '0'),
151
+ 'surface-subtle': map.get($palette-neutral, '50'),
152
+ 'surface-muted': map.get($palette-neutral, '100'),
153
+ 'text-primary': map.get($palette-neutral, '900'),
154
+ 'text-secondary': map.get($palette-neutral, '600'),
155
+ 'text-disabled': map.get($palette-neutral, '400'),
156
+ 'border': map.get($palette-neutral, '200'),
157
+ 'border-strong': map.get($palette-neutral, '400'),
155
158
  );
156
159
 
157
160
  $theme-sunset-dark: (
158
- "brand": #f97316, // Orange 500
159
- "brand-hover": #fb923c, // Orange 400
160
- "brand-active": #fdba74, // Orange 300
161
- "surface": #120905,
162
- "surface-subtle": #27140c,
163
- "surface-muted": #3d1d11,
164
- "text-primary": map.get($palette-neutral, "50"),
165
- "text-secondary": #fed7aa,
166
- "text-disabled": #9a3412,
167
- "border": #2b140b,
168
- "border-strong": #9a3412
161
+ 'brand': #f97316,
162
+ // Orange 500
163
+ 'brand-hover': #fb923c,
164
+ // Orange 400
165
+ 'brand-active': #fdba74,
166
+ // Orange 300
167
+ 'surface': #120905,
168
+ 'surface-subtle': #27140c,
169
+ 'surface-muted': #3d1d11,
170
+ 'text-primary': map.get($palette-neutral, '50'),
171
+ 'text-secondary': #fed7aa,
172
+ 'text-disabled': #9a3412,
173
+ 'border': #2b140b,
174
+ 'border-strong': #9a3412,
169
175
  );
170
176
 
171
177
  // 4. Amethyst (Purple/Premium)
172
178
  $theme-amethyst-light: (
173
- "brand": map.get($palette-secondary, "600"),
174
- "brand-hover": map.get($palette-secondary, "700"),
175
- "brand-active": map.get($palette-secondary, "800"),
176
- "surface": map.get($palette-neutral, "0"),
177
- "surface-subtle": map.get($palette-neutral, "50"),
178
- "surface-muted": map.get($palette-neutral, "100"),
179
- "text-primary": map.get($palette-neutral, "900"),
180
- "text-secondary": map.get($palette-neutral, "600"),
181
- "text-disabled": map.get($palette-neutral, "400"),
182
- "border": map.get($palette-neutral, "200"),
183
- "border-strong": map.get($palette-neutral, "400")
179
+ 'brand': map.get($palette-secondary, '600'),
180
+ 'brand-hover': map.get($palette-secondary, '700'),
181
+ 'brand-active': map.get($palette-secondary, '800'),
182
+ 'surface': map.get($palette-neutral, '0'),
183
+ 'surface-subtle': map.get($palette-neutral, '50'),
184
+ 'surface-muted': map.get($palette-neutral, '100'),
185
+ 'text-primary': map.get($palette-neutral, '900'),
186
+ 'text-secondary': map.get($palette-neutral, '600'),
187
+ 'text-disabled': map.get($palette-neutral, '400'),
188
+ 'border': map.get($palette-neutral, '200'),
189
+ 'border-strong': map.get($palette-neutral, '400'),
184
190
  );
185
191
 
186
192
  $theme-amethyst-dark: (
187
- "brand": map.get($palette-secondary, "400"),
188
- "brand-hover": map.get($palette-secondary, "300"),
189
- "brand-active": map.get($palette-secondary, "200"),
190
- "surface": #0d0717,
191
- "surface-subtle": #1e1135,
192
- "surface-muted": #2e1b4e,
193
- "text-primary": map.get($palette-neutral, "50"),
194
- "text-secondary": map.get($palette-secondary, "200"),
195
- "text-disabled": map.get($palette-secondary, "700"),
196
- "border": #201138,
197
- "border-strong": map.get($palette-secondary, "600")
193
+ 'brand': map.get($palette-secondary, '400'),
194
+ 'brand-hover': map.get($palette-secondary, '300'),
195
+ 'brand-active': map.get($palette-secondary, '200'),
196
+ 'surface': #0d0717,
197
+ 'surface-subtle': #1e1135,
198
+ 'surface-muted': #2e1b4e,
199
+ 'text-primary': map.get($palette-neutral, '50'),
200
+ 'text-secondary': map.get($palette-secondary, '200'),
201
+ 'text-disabled': map.get($palette-secondary, '700'),
202
+ 'border': #201138,
203
+ 'border-strong': map.get($palette-secondary, '600'),
198
204
  );
199
205
 
200
206
  // 5. Ruby (Red/Alert)
201
207
  $theme-ruby-light: (
202
- "brand": map.get($palette-error, "base"),
203
- "brand-hover": map.get($palette-error, "dark"),
204
- "brand-active": #7f1d1d,
205
- "surface": map.get($palette-neutral, "0"),
206
- "surface-subtle": map.get($palette-neutral, "50"),
207
- "surface-muted": map.get($palette-neutral, "100"),
208
- "text-primary": map.get($palette-neutral, "900"),
209
- "text-secondary": map.get($palette-neutral, "600"),
210
- "text-disabled": map.get($palette-neutral, "400"),
211
- "border": map.get($palette-neutral, "200"),
212
- "border-strong": map.get($palette-neutral, "400")
208
+ 'brand': map.get($palette-error, 'base'),
209
+ 'brand-hover': map.get($palette-error, 'dark'),
210
+ 'brand-active': #7f1d1d,
211
+ 'surface': map.get($palette-neutral, '0'),
212
+ 'surface-subtle': map.get($palette-neutral, '50'),
213
+ 'surface-muted': map.get($palette-neutral, '100'),
214
+ 'text-primary': map.get($palette-neutral, '900'),
215
+ 'text-secondary': map.get($palette-neutral, '600'),
216
+ 'text-disabled': map.get($palette-neutral, '400'),
217
+ 'border': map.get($palette-neutral, '200'),
218
+ 'border-strong': map.get($palette-neutral, '400'),
213
219
  );
214
220
 
215
221
  $theme-ruby-dark: (
216
- "brand": #f87171, // Red 400
217
- "brand-hover": map.get($palette-error, "base"),
218
- "brand-active": map.get($palette-error, "dark"),
219
- "surface": #140505,
220
- "surface-subtle": #2d0c0c,
221
- "surface-muted": #471515,
222
- "text-primary": map.get($palette-neutral, "50"),
223
- "text-secondary": #fecaca,
224
- "text-disabled": #991b1b,
225
- "border": #360f0f,
226
- "border-strong": #991b1b
222
+ 'brand': #f87171,
223
+ // Red 400
224
+ 'brand-hover': map.get($palette-error, 'base'),
225
+ 'brand-active': map.get($palette-error, 'dark'),
226
+ 'surface': #140505,
227
+ 'surface-subtle': #2d0c0c,
228
+ 'surface-muted': #471515,
229
+ 'text-primary': map.get($palette-neutral, '50'),
230
+ 'text-secondary': #fecaca,
231
+ 'text-disabled': #991b1b,
232
+ 'border': #360f0f,
233
+ 'border-strong': #991b1b,
227
234
  );
@@ -3,45 +3,65 @@
3
3
  // ============================================================
4
4
 
5
5
  $shadows: (
6
- "sm": (0 1px 2px 0 rgba(0, 0, 0, 0.05)),
7
- "base": (0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1)),
8
- "md": (0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)),
9
- "lg": (0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1)),
10
- "xl": (0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1))
6
+ 'sm': (
7
+ 0 1px 2px 0 rgba(0, 0, 0, 0.05),
8
+ ),
9
+ 'base': (
10
+ 0 1px 3px 0 rgba(0, 0, 0, 0.1),
11
+ 0 1px 2px -1px rgba(0, 0, 0, 0.1),
12
+ ),
13
+ 'md': (
14
+ 0 4px 6px -1px rgba(0, 0, 0, 0.1),
15
+ 0 2px 4px -2px rgba(0, 0, 0, 0.1),
16
+ ),
17
+ 'lg': (
18
+ 0 10px 15px -3px rgba(0, 0, 0, 0.1),
19
+ 0 4px 6px -4px rgba(0, 0, 0, 0.1),
20
+ ),
21
+ 'xl': (
22
+ 0 20px 25px -5px rgba(0, 0, 0, 0.1),
23
+ 0 8px 10px -6px rgba(0, 0, 0, 0.1),
24
+ ),
11
25
  );
12
26
 
13
27
  $radius: (
14
- "none": 0,
15
- "sm": 0.125rem, // 2px
16
- "base": 0.25rem, // 4px
17
- "md": 0.375rem, // 6px
18
- "lg": 0.5rem, // 8px
19
- "xl": 0.75rem, // 12px
20
- "2xl": 1rem, // 16px
21
- "full": 9999px
28
+ 'none': 0,
29
+ 'sm': 0.125rem,
30
+ // 2px
31
+ 'base': 0.25rem,
32
+ // 4px
33
+ 'md': 0.375rem,
34
+ // 6px
35
+ 'lg': 0.5rem,
36
+ // 8px
37
+ 'xl': 0.75rem,
38
+ // 12px
39
+ '2xl': 1rem,
40
+ // 16px
41
+ 'full': 9999px,
22
42
  );
23
43
 
24
44
  $breakpoints: (
25
- "sm": 640px,
26
- "md": 768px,
27
- "lg": 1024px,
28
- "xl": 1280px,
29
- "2xl": 1536px
45
+ 'sm': 640px,
46
+ 'md': 768px,
47
+ 'lg': 1024px,
48
+ 'xl': 1280px,
49
+ '2xl': 1536px,
30
50
  );
31
51
 
32
52
  $z-index: (
33
- "dropdown": 1000,
34
- "sticky": 1020,
35
- "fixed": 1030,
36
- "modal": 1040,
37
- "popover": 1050,
38
- "tooltip": 1060,
39
- "toast": 1070
53
+ 'dropdown': 1000,
54
+ 'sticky': 1020,
55
+ 'fixed': 1030,
56
+ 'modal': 1040,
57
+ 'popover': 1050,
58
+ 'tooltip': 1060,
59
+ 'toast': 1070,
40
60
  );
41
61
 
42
62
  $transitions: (
43
- "fast": 150ms ease-in-out,
44
- "base": 200ms ease-in-out,
45
- "slow": 300ms ease-in-out,
46
- "slower": 500ms ease-in-out
63
+ 'fast': 150ms ease-in-out,
64
+ 'base': 200ms ease-in-out,
65
+ 'slow': 300ms ease-in-out,
66
+ 'slower': 500ms ease-in-out,
47
67
  );
@@ -3,17 +3,28 @@
3
3
  // ============================================================
4
4
 
5
5
  $spacing: (
6
- "0": 0,
7
- "1": 0.25rem, // 4px
8
- "2": 0.5rem, // 8px
9
- "3": 0.75rem, // 12px
10
- "4": 1rem, // 16px
11
- "5": 1.25rem, // 20px
12
- "6": 1.5rem, // 24px
13
- "8": 2rem, // 32px
14
- "10": 2.5rem, // 40px
15
- "12": 3rem, // 48px
16
- "16": 4rem, // 64px
17
- "20": 5rem, // 80px
18
- "24": 6rem // 96px
6
+ '0': 0,
7
+ '1': 0.25rem,
8
+ // 4px
9
+ '2': 0.5rem,
10
+ // 8px
11
+ '3': 0.75rem,
12
+ // 12px
13
+ '4': 1rem,
14
+ // 16px
15
+ '5': 1.25rem,
16
+ // 20px
17
+ '6': 1.5rem,
18
+ // 24px
19
+ '8': 2rem,
20
+ // 32px
21
+ '10': 2.5rem,
22
+ // 40px
23
+ '12': 3rem,
24
+ // 48px
25
+ '16': 4rem,
26
+ // 64px
27
+ '20': 5rem,
28
+ // 80px
29
+ '24': 6rem, // 96px
19
30
  );
@@ -3,31 +3,50 @@
3
3
  // ============================================================
4
4
 
5
5
  $font-families: (
6
- "sans": ('Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif),
7
- "mono": ('JetBrains Mono', 'Fira Code', 'Courier New', monospace)
6
+ 'sans': (
7
+ 'Inter',
8
+ -apple-system,
9
+ BlinkMacSystemFont,
10
+ 'Segoe UI',
11
+ Roboto,
12
+ sans-serif,
13
+ ),
14
+ 'mono': (
15
+ 'JetBrains Mono',
16
+ 'Fira Code',
17
+ 'Courier New',
18
+ monospace,
19
+ ),
8
20
  );
9
21
 
10
22
  $font-sizes: (
11
- "xs": 0.75rem, // 12px
12
- "sm": 0.875rem, // 14px
13
- "base": 1rem, // 16px
14
- "lg": 1.125rem, // 18px
15
- "xl": 1.25rem, // 20px
16
- "2xl": 1.5rem, // 24px
17
- "3xl": 1.875rem, // 30px
18
- "4xl": 2.25rem // 36px
23
+ 'xs': 0.75rem,
24
+ // 12px
25
+ 'sm': 0.875rem,
26
+ // 14px
27
+ 'base': 1rem,
28
+ // 16px
29
+ 'lg': 1.125rem,
30
+ // 18px
31
+ 'xl': 1.25rem,
32
+ // 20px
33
+ '2xl': 1.5rem,
34
+ // 24px
35
+ '3xl': 1.875rem,
36
+ // 30px
37
+ '4xl': 2.25rem, // 36px
19
38
  );
20
39
 
21
40
  $font-weights: (
22
- "light": 300,
23
- "regular": 400,
24
- "medium": 500,
25
- "semibold": 600,
26
- "bold": 700
41
+ 'light': 300,
42
+ 'regular': 400,
43
+ 'medium': 500,
44
+ 'semibold': 600,
45
+ 'bold': 700,
27
46
  );
28
47
 
29
48
  $line-heights: (
30
- "tight": 1.25,
31
- "normal": 1.5,
32
- "loose": 1.75
49
+ 'tight': 1.25,
50
+ 'normal': 1.5,
51
+ 'loose': 1.75,
33
52
  );