@simplysm/angular 14.1.17 → 14.1.18

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.
Files changed (42) hide show
  1. package/dist/controls/button/sd-additional-button.js +2 -2
  2. package/dist/controls/button/sd-anchor.js +2 -2
  3. package/dist/controls/button/sd-button.js +2 -2
  4. package/dist/controls/button/sd-modal-select-button.js +2 -2
  5. package/dist/controls/checkbox/sd-checkbox.js +2 -2
  6. package/dist/controls/checkbox/sd-switch.js +2 -2
  7. package/dist/controls/dropdown/sd-dropdown-popup.js +2 -2
  8. package/dist/controls/gap/sd-gap.js +2 -2
  9. package/dist/controls/input/sd-date-range-picker.js +2 -2
  10. package/dist/controls/input/sd-range.js +2 -2
  11. package/dist/controls/input/sd-textarea.js +2 -2
  12. package/dist/controls/input/sd-textfield.js +2 -2
  13. package/dist/controls/select/sd-select-item.js +2 -2
  14. package/dist/core/busy/sd-busy-container.js +2 -2
  15. package/dist/core/modal/sd-modal.js +2 -2
  16. package/dist/core/provideSdAngular.d.ts.map +1 -1
  17. package/dist/core/provideSdAngular.js +0 -12
  18. package/dist/core/toast/sd-toast-container.js +2 -2
  19. package/dist/core/toast/sd-toast.js +2 -2
  20. package/dist/data/kanban/sd-kanban-board.js +2 -2
  21. package/dist/data/sheet/sd-sheet.js +2 -2
  22. package/dist/features/theme/sd-theme-provider.d.ts +0 -1
  23. package/dist/features/theme/sd-theme-provider.d.ts.map +1 -1
  24. package/dist/features/theme/sd-theme-provider.js +1 -6
  25. package/dist/features/theme/sd-theme-selector.d.ts.map +1 -1
  26. package/dist/features/theme/sd-theme-selector.js +4 -16
  27. package/dist/features/visual/sd-calendar.js +2 -2
  28. package/dist/features/visual/sd-label.js +2 -2
  29. package/dist/features/visual/sd-note.js +2 -2
  30. package/dist/features/visual/sd-progress.js +2 -2
  31. package/dist/layout/sidebar/sd-sidebar-container.js +2 -2
  32. package/dist/layout/sidebar/sd-sidebar.js +2 -2
  33. package/package.json +5 -5
  34. package/scss/commons/_colors.scss +247 -326
  35. package/scss/commons/_theme-variables.scss +2 -12
  36. package/scss/commons/_variables.scss +83 -56
  37. package/scss/themes/_variables-blueprint.scss +99 -95
  38. package/src/core/provideSdAngular.ts +0 -14
  39. package/src/features/theme/sd-theme-provider.ts +1 -7
  40. package/src/features/theme/sd-theme-selector.ts +0 -4
  41. package/styles.css +368 -485
  42. package/scss/themes/_variables-dark.scss +0 -53
@@ -1,326 +1,247 @@
1
- @use "sass:map";
2
- @use "sass:color";
3
-
4
- // oklch 미지원 브라우저 호환을 위해 빌드 타임에 rgb 로 변환해 저장
5
- @function to-rgb($oklch-color) {
6
- @return color.to-space($oklch-color, rgb);
7
- }
8
-
9
- // Tailwind CSS v4 color palette (oklch 원본 → rgb 변환 저장)
10
- $colors: (
11
- red: (
12
- 50: to-rgb(oklch(97.1% 0.013 17.38)),
13
- 100: to-rgb(oklch(93.6% 0.032 17.717)),
14
- 200: to-rgb(oklch(88.5% 0.062 18.334)),
15
- 300: to-rgb(oklch(80.8% 0.114 19.571)),
16
- 400: to-rgb(oklch(70.4% 0.191 22.216)),
17
- 500: to-rgb(oklch(63.7% 0.237 25.331)),
18
- 600: to-rgb(oklch(57.7% 0.245 27.325)),
19
- 700: to-rgb(oklch(50.5% 0.213 27.518)),
20
- 800: to-rgb(oklch(44.4% 0.177 26.899)),
21
- 900: to-rgb(oklch(39.6% 0.141 25.723)),
22
- 950: to-rgb(oklch(25.8% 0.092 26.042)),
23
- ),
24
- orange: (
25
- 50: to-rgb(oklch(98% 0.016 73.684)),
26
- 100: to-rgb(oklch(95.4% 0.038 75.164)),
27
- 200: to-rgb(oklch(90.1% 0.076 70.697)),
28
- 300: to-rgb(oklch(83.7% 0.128 66.29)),
29
- 400: to-rgb(oklch(75% 0.183 55.934)),
30
- 500: to-rgb(oklch(70.5% 0.213 47.604)),
31
- 600: to-rgb(oklch(64.6% 0.222 41.116)),
32
- 700: to-rgb(oklch(55.3% 0.195 38.402)),
33
- 800: to-rgb(oklch(47% 0.157 37.304)),
34
- 900: to-rgb(oklch(40.8% 0.123 38.172)),
35
- 950: to-rgb(oklch(26.6% 0.079 36.259)),
36
- ),
37
- amber: (
38
- 50: to-rgb(oklch(98.7% 0.022 95.277)),
39
- 100: to-rgb(oklch(96.2% 0.059 95.617)),
40
- 200: to-rgb(oklch(92.4% 0.12 95.746)),
41
- 300: to-rgb(oklch(87.9% 0.169 91.605)),
42
- 400: to-rgb(oklch(82.8% 0.189 84.429)),
43
- 500: to-rgb(oklch(76.9% 0.188 70.08)),
44
- 600: to-rgb(oklch(66.6% 0.179 58.318)),
45
- 700: to-rgb(oklch(55.5% 0.163 48.998)),
46
- 800: to-rgb(oklch(47.3% 0.137 46.201)),
47
- 900: to-rgb(oklch(41.4% 0.112 45.904)),
48
- 950: to-rgb(oklch(27.9% 0.077 45.635)),
49
- ),
50
- yellow: (
51
- 50: to-rgb(oklch(98.7% 0.026 102.212)),
52
- 100: to-rgb(oklch(97.3% 0.071 103.193)),
53
- 200: to-rgb(oklch(94.5% 0.129 101.54)),
54
- 300: to-rgb(oklch(90.5% 0.182 98.111)),
55
- 400: to-rgb(oklch(85.2% 0.199 91.936)),
56
- 500: to-rgb(oklch(79.5% 0.184 86.047)),
57
- 600: to-rgb(oklch(68.1% 0.162 75.834)),
58
- 700: to-rgb(oklch(55.4% 0.135 66.442)),
59
- 800: to-rgb(oklch(47.6% 0.114 61.907)),
60
- 900: to-rgb(oklch(42.1% 0.095 57.708)),
61
- 950: to-rgb(oklch(28.6% 0.066 53.813)),
62
- ),
63
- lime: (
64
- 50: to-rgb(oklch(98.6% 0.031 120.757)),
65
- 100: to-rgb(oklch(96.7% 0.067 122.328)),
66
- 200: to-rgb(oklch(93.8% 0.127 124.321)),
67
- 300: to-rgb(oklch(89.7% 0.196 126.665)),
68
- 400: to-rgb(oklch(84.1% 0.238 128.85)),
69
- 500: to-rgb(oklch(76.8% 0.233 130.85)),
70
- 600: to-rgb(oklch(64.8% 0.2 131.684)),
71
- 700: to-rgb(oklch(53.2% 0.157 131.589)),
72
- 800: to-rgb(oklch(45.3% 0.124 130.933)),
73
- 900: to-rgb(oklch(40.5% 0.101 131.063)),
74
- 950: to-rgb(oklch(27.4% 0.072 132.109)),
75
- ),
76
- green: (
77
- 50: to-rgb(oklch(98.2% 0.018 155.826)),
78
- 100: to-rgb(oklch(96.2% 0.044 156.743)),
79
- 200: to-rgb(oklch(92.5% 0.084 155.995)),
80
- 300: to-rgb(oklch(87.1% 0.15 154.449)),
81
- 400: to-rgb(oklch(79.2% 0.209 151.711)),
82
- 500: to-rgb(oklch(72.3% 0.219 149.579)),
83
- 600: to-rgb(oklch(62.7% 0.194 149.214)),
84
- 700: to-rgb(oklch(52.7% 0.154 150.069)),
85
- 800: to-rgb(oklch(44.8% 0.119 151.328)),
86
- 900: to-rgb(oklch(39.3% 0.095 152.535)),
87
- 950: to-rgb(oklch(26.6% 0.065 152.934)),
88
- ),
89
- emerald: (
90
- 50: to-rgb(oklch(97.9% 0.021 166.113)),
91
- 100: to-rgb(oklch(95% 0.052 163.051)),
92
- 200: to-rgb(oklch(90.5% 0.093 164.15)),
93
- 300: to-rgb(oklch(84.5% 0.143 164.978)),
94
- 400: to-rgb(oklch(76.5% 0.177 163.223)),
95
- 500: to-rgb(oklch(69.6% 0.17 162.48)),
96
- 600: to-rgb(oklch(59.6% 0.145 163.225)),
97
- 700: to-rgb(oklch(50.8% 0.118 165.612)),
98
- 800: to-rgb(oklch(43.2% 0.095 166.913)),
99
- 900: to-rgb(oklch(37.8% 0.077 168.94)),
100
- 950: to-rgb(oklch(26.2% 0.051 172.552)),
101
- ),
102
- teal: (
103
- 50: to-rgb(oklch(98.4% 0.014 180.72)),
104
- 100: to-rgb(oklch(95.3% 0.051 180.801)),
105
- 200: to-rgb(oklch(91% 0.096 180.426)),
106
- 300: to-rgb(oklch(85.5% 0.138 181.071)),
107
- 400: to-rgb(oklch(77.7% 0.152 181.912)),
108
- 500: to-rgb(oklch(70.4% 0.14 182.503)),
109
- 600: to-rgb(oklch(60% 0.118 184.704)),
110
- 700: to-rgb(oklch(51.1% 0.096 186.391)),
111
- 800: to-rgb(oklch(43.7% 0.078 188.216)),
112
- 900: to-rgb(oklch(38.6% 0.063 188.416)),
113
- 950: to-rgb(oklch(27.7% 0.046 192.524)),
114
- ),
115
- cyan: (
116
- 50: to-rgb(oklch(98.4% 0.019 200.873)),
117
- 100: to-rgb(oklch(95.6% 0.045 203.388)),
118
- 200: to-rgb(oklch(91.7% 0.08 205.041)),
119
- 300: to-rgb(oklch(86.5% 0.127 207.078)),
120
- 400: to-rgb(oklch(78.9% 0.154 211.53)),
121
- 500: to-rgb(oklch(71.5% 0.143 215.221)),
122
- 600: to-rgb(oklch(60.9% 0.126 221.723)),
123
- 700: to-rgb(oklch(52% 0.105 223.128)),
124
- 800: to-rgb(oklch(45% 0.085 224.283)),
125
- 900: to-rgb(oklch(39.8% 0.07 227.392)),
126
- 950: to-rgb(oklch(30.2% 0.056 229.695)),
127
- ),
128
- sky: (
129
- 50: to-rgb(oklch(97.7% 0.013 236.62)),
130
- 100: to-rgb(oklch(95.1% 0.026 236.824)),
131
- 200: to-rgb(oklch(90.1% 0.058 230.902)),
132
- 300: to-rgb(oklch(82.8% 0.111 230.318)),
133
- 400: to-rgb(oklch(74.6% 0.16 232.661)),
134
- 500: to-rgb(oklch(68.5% 0.169 237.323)),
135
- 600: to-rgb(oklch(58.8% 0.158 241.966)),
136
- 700: to-rgb(oklch(50% 0.134 242.749)),
137
- 800: to-rgb(oklch(44.3% 0.11 240.79)),
138
- 900: to-rgb(oklch(39.1% 0.09 240.876)),
139
- 950: to-rgb(oklch(29.3% 0.066 243.157)),
140
- ),
141
- blue: (
142
- 50: to-rgb(oklch(97% 0.014 254.604)),
143
- 100: to-rgb(oklch(93.2% 0.032 255.585)),
144
- 200: to-rgb(oklch(88.2% 0.059 254.128)),
145
- 300: to-rgb(oklch(80.9% 0.105 251.813)),
146
- 400: to-rgb(oklch(70.7% 0.165 254.624)),
147
- 500: to-rgb(oklch(62.3% 0.214 259.815)),
148
- 600: to-rgb(oklch(54.6% 0.245 262.881)),
149
- 700: to-rgb(oklch(48.8% 0.243 264.376)),
150
- 800: to-rgb(oklch(42.4% 0.199 265.638)),
151
- 900: to-rgb(oklch(37.9% 0.146 265.522)),
152
- 950: to-rgb(oklch(28.2% 0.091 267.935)),
153
- ),
154
- indigo: (
155
- 50: to-rgb(oklch(96.2% 0.018 272.314)),
156
- 100: to-rgb(oklch(93% 0.034 272.788)),
157
- 200: to-rgb(oklch(87% 0.065 274.039)),
158
- 300: to-rgb(oklch(78.5% 0.115 274.713)),
159
- 400: to-rgb(oklch(67.3% 0.182 276.935)),
160
- 500: to-rgb(oklch(58.5% 0.233 277.117)),
161
- 600: to-rgb(oklch(51.1% 0.262 276.966)),
162
- 700: to-rgb(oklch(45.7% 0.24 277.023)),
163
- 800: to-rgb(oklch(39.8% 0.195 277.366)),
164
- 900: to-rgb(oklch(35.9% 0.144 278.697)),
165
- 950: to-rgb(oklch(25.7% 0.09 281.288)),
166
- ),
167
- violet: (
168
- 50: to-rgb(oklch(96.9% 0.016 293.756)),
169
- 100: to-rgb(oklch(94.3% 0.029 294.588)),
170
- 200: to-rgb(oklch(89.4% 0.057 293.283)),
171
- 300: to-rgb(oklch(81.1% 0.111 293.571)),
172
- 400: to-rgb(oklch(70.2% 0.183 293.541)),
173
- 500: to-rgb(oklch(60.6% 0.25 292.717)),
174
- 600: to-rgb(oklch(54.1% 0.281 293.009)),
175
- 700: to-rgb(oklch(49.1% 0.27 292.581)),
176
- 800: to-rgb(oklch(43.2% 0.232 292.759)),
177
- 900: to-rgb(oklch(38% 0.189 293.745)),
178
- 950: to-rgb(oklch(28.3% 0.141 291.089)),
179
- ),
180
- purple: (
181
- 50: to-rgb(oklch(97.7% 0.014 308.299)),
182
- 100: to-rgb(oklch(94.6% 0.033 307.174)),
183
- 200: to-rgb(oklch(90.2% 0.063 306.703)),
184
- 300: to-rgb(oklch(82.7% 0.119 306.383)),
185
- 400: to-rgb(oklch(71.4% 0.203 305.504)),
186
- 500: to-rgb(oklch(62.7% 0.265 303.9)),
187
- 600: to-rgb(oklch(55.8% 0.288 302.321)),
188
- 700: to-rgb(oklch(49.6% 0.265 301.924)),
189
- 800: to-rgb(oklch(43.8% 0.218 303.724)),
190
- 900: to-rgb(oklch(38.1% 0.176 304.987)),
191
- 950: to-rgb(oklch(29.1% 0.149 302.717)),
192
- ),
193
- fuchsia: (
194
- 50: to-rgb(oklch(97.7% 0.017 320.058)),
195
- 100: to-rgb(oklch(95.2% 0.037 318.852)),
196
- 200: to-rgb(oklch(90.3% 0.076 319.62)),
197
- 300: to-rgb(oklch(83.3% 0.145 321.434)),
198
- 400: to-rgb(oklch(74% 0.238 322.16)),
199
- 500: to-rgb(oklch(66.7% 0.295 322.15)),
200
- 600: to-rgb(oklch(59.1% 0.293 322.896)),
201
- 700: to-rgb(oklch(51.8% 0.253 323.949)),
202
- 800: to-rgb(oklch(45.2% 0.211 324.591)),
203
- 900: to-rgb(oklch(40.1% 0.17 325.612)),
204
- 950: to-rgb(oklch(29.3% 0.136 325.661)),
205
- ),
206
- pink: (
207
- 50: to-rgb(oklch(97.1% 0.014 343.198)),
208
- 100: to-rgb(oklch(94.8% 0.028 342.258)),
209
- 200: to-rgb(oklch(89.9% 0.061 343.231)),
210
- 300: to-rgb(oklch(82.3% 0.12 346.018)),
211
- 400: to-rgb(oklch(71.8% 0.202 349.761)),
212
- 500: to-rgb(oklch(65.6% 0.241 354.308)),
213
- 600: to-rgb(oklch(59.2% 0.249 0.584)),
214
- 700: to-rgb(oklch(52.5% 0.223 3.958)),
215
- 800: to-rgb(oklch(45.9% 0.187 3.815)),
216
- 900: to-rgb(oklch(40.8% 0.153 2.432)),
217
- 950: to-rgb(oklch(28.4% 0.109 3.907)),
218
- ),
219
- rose: (
220
- 50: to-rgb(oklch(96.9% 0.015 12.422)),
221
- 100: to-rgb(oklch(94.1% 0.03 12.58)),
222
- 200: to-rgb(oklch(89.2% 0.058 10.001)),
223
- 300: to-rgb(oklch(81% 0.117 11.638)),
224
- 400: to-rgb(oklch(71.2% 0.194 13.428)),
225
- 500: to-rgb(oklch(64.5% 0.246 16.439)),
226
- 600: to-rgb(oklch(58.6% 0.253 17.585)),
227
- 700: to-rgb(oklch(51.4% 0.222 16.935)),
228
- 800: to-rgb(oklch(45.5% 0.188 13.697)),
229
- 900: to-rgb(oklch(41% 0.159 10.272)),
230
- 950: to-rgb(oklch(27.1% 0.105 12.094)),
231
- ),
232
- slate: (
233
- 50: to-rgb(oklch(98.4% 0.003 247.858)),
234
- 100: to-rgb(oklch(96.8% 0.007 247.896)),
235
- 200: to-rgb(oklch(92.9% 0.013 255.508)),
236
- 300: to-rgb(oklch(86.9% 0.022 252.894)),
237
- 400: to-rgb(oklch(70.4% 0.04 256.788)),
238
- 500: to-rgb(oklch(55.4% 0.046 257.417)),
239
- 600: to-rgb(oklch(44.6% 0.043 257.281)),
240
- 700: to-rgb(oklch(37.2% 0.044 257.287)),
241
- 800: to-rgb(oklch(27.9% 0.041 260.031)),
242
- 900: to-rgb(oklch(20.8% 0.042 265.755)),
243
- 950: to-rgb(oklch(12.9% 0.042 264.695)),
244
- ),
245
- gray: (
246
- 50: to-rgb(oklch(98.5% 0.002 247.839)),
247
- 100: to-rgb(oklch(96.7% 0.003 264.542)),
248
- 200: to-rgb(oklch(92.8% 0.006 264.531)),
249
- 300: to-rgb(oklch(87.2% 0.01 258.338)),
250
- 400: to-rgb(oklch(70.7% 0.022 261.325)),
251
- 500: to-rgb(oklch(55.1% 0.027 264.364)),
252
- 600: to-rgb(oklch(44.6% 0.03 256.802)),
253
- 700: to-rgb(oklch(37.3% 0.034 259.733)),
254
- 800: to-rgb(oklch(27.8% 0.033 256.848)),
255
- 900: to-rgb(oklch(21% 0.034 264.665)),
256
- 950: to-rgb(oklch(13% 0.028 261.692)),
257
- ),
258
- zinc: (
259
- 50: to-rgb(oklch(98.5% 0 0)),
260
- 100: to-rgb(oklch(96.7% 0.001 286.375)),
261
- 200: to-rgb(oklch(92% 0.004 286.32)),
262
- 300: to-rgb(oklch(87.1% 0.006 286.286)),
263
- 400: to-rgb(oklch(70.5% 0.015 286.067)),
264
- 500: to-rgb(oklch(55.2% 0.016 285.938)),
265
- 600: to-rgb(oklch(44.2% 0.017 285.786)),
266
- 700: to-rgb(oklch(37% 0.013 285.805)),
267
- 800: to-rgb(oklch(27.4% 0.006 286.033)),
268
- 900: to-rgb(oklch(21% 0.006 285.885)),
269
- 950: to-rgb(oklch(14.1% 0.005 285.823)),
270
- ),
271
- neutral: (
272
- 50: to-rgb(oklch(98.5% 0 0)),
273
- 100: to-rgb(oklch(97% 0 0)),
274
- 200: to-rgb(oklch(92.2% 0 0)),
275
- 300: to-rgb(oklch(87% 0 0)),
276
- 400: to-rgb(oklch(70.8% 0 0)),
277
- 500: to-rgb(oklch(55.6% 0 0)),
278
- 600: to-rgb(oklch(43.9% 0 0)),
279
- 700: to-rgb(oklch(37.1% 0 0)),
280
- 800: to-rgb(oklch(26.9% 0 0)),
281
- 900: to-rgb(oklch(20.5% 0 0)),
282
- 950: to-rgb(oklch(14.5% 0 0)),
283
- ),
284
- stone: (
285
- 50: to-rgb(oklch(98.5% 0.001 106.423)),
286
- 100: to-rgb(oklch(97% 0.001 106.424)),
287
- 200: to-rgb(oklch(92.3% 0.003 48.717)),
288
- 300: to-rgb(oklch(86.9% 0.005 56.366)),
289
- 400: to-rgb(oklch(70.9% 0.01 56.259)),
290
- 500: to-rgb(oklch(55.3% 0.013 58.071)),
291
- 600: to-rgb(oklch(44.4% 0.011 73.639)),
292
- 700: to-rgb(oklch(37.4% 0.01 67.558)),
293
- 800: to-rgb(oklch(26.8% 0.007 34.298)),
294
- 900: to-rgb(oklch(21.6% 0.006 56.043)),
295
- 950: to-rgb(oklch(14.7% 0.004 49.25)),
296
- ),
297
- );
298
-
299
- // 색상 조회 헬퍼. shade 생략 시 500(각 색의 기준점) 반환
300
- @function get($name, $shade: 500) {
301
- @return map.get(map.get($colors, $name), $shade);
302
- }
303
-
304
- @function variants($base, $offset: 0%) {
305
- @return (
306
- lightest: color.scale($base, $lightness: 90% + $offset),
307
- lighter: color.scale($base, $lightness: 75% + $offset),
308
- light: color.scale($base, $lightness: 60% + $offset),
309
- default: color.scale($base, $lightness: 0% + $offset),
310
- dark: color.scale($base, $lightness: -10% + $offset),
311
- darker: color.scale($base, $lightness: -25% + $offset),
312
- darkest: color.scale($base, $lightness: -40% + $offset)
313
- );
314
- }
315
-
316
- @function variants-dark($base, $offset: 0%) {
317
- @return (
318
- darkest: color.mix(white, $base, 80% + $offset),
319
- darker: color.mix(white, $base, 60% + $offset),
320
- dark: color.mix(white, $base, 40% + $offset),
321
- default: color.mix(black, $base, 20% + $offset),
322
- light: color.mix(black, $base, 55% + $offset),
323
- lighter: color.mix(black, $base, 70% + $offset),
324
- lightest: color.mix(black, $base, 80% + $offset)
325
- );
326
- }
1
+ // Tailwind CSS v4 팔레트 — oklch 원본을 sRGB 정수 rgb 로 변환해 고정 저장.
2
+ // oklch 미지원 브라우저(구버전 Chrome 등) 대응으로 rgb 값을 직접 사용한다.
3
+ // 값 재생성: scratchpad 의 gen.scss 로 color.channel round+clamp 추출(현 팔레트 기준).
4
+ @mixin vars {
5
+ --color-red-50: rgb(254, 242, 242);
6
+ --color-red-100: rgb(255, 226, 226);
7
+ --color-red-200: rgb(255, 201, 201);
8
+ --color-red-300: rgb(255, 162, 162);
9
+ --color-red-400: rgb(255, 100, 103);
10
+ --color-red-500: rgb(251, 44, 54);
11
+ --color-red-600: rgb(231, 0, 11);
12
+ --color-red-700: rgb(193, 0, 7);
13
+ --color-red-800: rgb(159, 7, 18);
14
+ --color-red-900: rgb(130, 24, 26);
15
+ --color-red-950: rgb(70, 8, 9);
16
+ --color-orange-50: rgb(255, 247, 237);
17
+ --color-orange-100: rgb(255, 237, 212);
18
+ --color-orange-200: rgb(255, 214, 167);
19
+ --color-orange-300: rgb(255, 184, 106);
20
+ --color-orange-400: rgb(255, 137, 4);
21
+ --color-orange-500: rgb(255, 105, 0);
22
+ --color-orange-600: rgb(245, 73, 0);
23
+ --color-orange-700: rgb(202, 53, 0);
24
+ --color-orange-800: rgb(159, 45, 0);
25
+ --color-orange-900: rgb(126, 42, 12);
26
+ --color-orange-950: rgb(68, 19, 6);
27
+ --color-amber-50: rgb(255, 251, 235);
28
+ --color-amber-100: rgb(254, 243, 198);
29
+ --color-amber-200: rgb(254, 230, 133);
30
+ --color-amber-300: rgb(255, 210, 48);
31
+ --color-amber-400: rgb(255, 185, 0);
32
+ --color-amber-500: rgb(254, 154, 0);
33
+ --color-amber-600: rgb(225, 113, 0);
34
+ --color-amber-700: rgb(187, 77, 0);
35
+ --color-amber-800: rgb(151, 60, 0);
36
+ --color-amber-900: rgb(123, 51, 6);
37
+ --color-amber-950: rgb(70, 25, 1);
38
+ --color-yellow-50: rgb(254, 252, 232);
39
+ --color-yellow-100: rgb(254, 249, 194);
40
+ --color-yellow-200: rgb(255, 240, 133);
41
+ --color-yellow-300: rgb(255, 223, 32);
42
+ --color-yellow-400: rgb(253, 199, 0);
43
+ --color-yellow-500: rgb(240, 177, 0);
44
+ --color-yellow-600: rgb(208, 135, 0);
45
+ --color-yellow-700: rgb(166, 95, 0);
46
+ --color-yellow-800: rgb(137, 75, 0);
47
+ --color-yellow-900: rgb(115, 62, 10);
48
+ --color-yellow-950: rgb(67, 32, 4);
49
+ --color-lime-50: rgb(247, 254, 231);
50
+ --color-lime-100: rgb(236, 252, 202);
51
+ --color-lime-200: rgb(216, 249, 153);
52
+ --color-lime-300: rgb(187, 244, 81);
53
+ --color-lime-400: rgb(154, 230, 0);
54
+ --color-lime-500: rgb(124, 207, 0);
55
+ --color-lime-600: rgb(94, 165, 0);
56
+ --color-lime-700: rgb(73, 125, 0);
57
+ --color-lime-800: rgb(60, 99, 0);
58
+ --color-lime-900: rgb(53, 83, 14);
59
+ --color-lime-950: rgb(25, 46, 3);
60
+ --color-green-50: rgb(240, 253, 244);
61
+ --color-green-100: rgb(220, 252, 231);
62
+ --color-green-200: rgb(185, 248, 207);
63
+ --color-green-300: rgb(123, 241, 168);
64
+ --color-green-400: rgb(5, 223, 114);
65
+ --color-green-500: rgb(0, 201, 80);
66
+ --color-green-600: rgb(0, 166, 62);
67
+ --color-green-700: rgb(0, 130, 54);
68
+ --color-green-800: rgb(1, 102, 48);
69
+ --color-green-900: rgb(13, 84, 43);
70
+ --color-green-950: rgb(3, 46, 21);
71
+ --color-emerald-50: rgb(236, 253, 245);
72
+ --color-emerald-100: rgb(208, 250, 229);
73
+ --color-emerald-200: rgb(164, 244, 207);
74
+ --color-emerald-300: rgb(94, 233, 181);
75
+ --color-emerald-400: rgb(0, 212, 146);
76
+ --color-emerald-500: rgb(0, 188, 125);
77
+ --color-emerald-600: rgb(0, 153, 102);
78
+ --color-emerald-700: rgb(0, 122, 85);
79
+ --color-emerald-800: rgb(0, 96, 69);
80
+ --color-emerald-900: rgb(0, 79, 59);
81
+ --color-emerald-950: rgb(0, 44, 34);
82
+ --color-teal-50: rgb(240, 253, 250);
83
+ --color-teal-100: rgb(203, 251, 241);
84
+ --color-teal-200: rgb(150, 247, 228);
85
+ --color-teal-300: rgb(70, 236, 213);
86
+ --color-teal-400: rgb(0, 213, 190);
87
+ --color-teal-500: rgb(0, 187, 167);
88
+ --color-teal-600: rgb(0, 150, 137);
89
+ --color-teal-700: rgb(0, 120, 111);
90
+ --color-teal-800: rgb(0, 95, 90);
91
+ --color-teal-900: rgb(11, 79, 74);
92
+ --color-teal-950: rgb(2, 47, 46);
93
+ --color-cyan-50: rgb(236, 254, 255);
94
+ --color-cyan-100: rgb(206, 250, 254);
95
+ --color-cyan-200: rgb(162, 244, 253);
96
+ --color-cyan-300: rgb(83, 234, 253);
97
+ --color-cyan-400: rgb(0, 211, 242);
98
+ --color-cyan-500: rgb(0, 184, 219);
99
+ --color-cyan-600: rgb(0, 146, 184);
100
+ --color-cyan-700: rgb(0, 117, 149);
101
+ --color-cyan-800: rgb(0, 95, 120);
102
+ --color-cyan-900: rgb(16, 78, 100);
103
+ --color-cyan-950: rgb(5, 51, 69);
104
+ --color-sky-50: rgb(240, 249, 255);
105
+ --color-sky-100: rgb(223, 242, 254);
106
+ --color-sky-200: rgb(184, 230, 254);
107
+ --color-sky-300: rgb(116, 212, 255);
108
+ --color-sky-400: rgb(0, 188, 255);
109
+ --color-sky-500: rgb(0, 166, 244);
110
+ --color-sky-600: rgb(0, 132, 209);
111
+ --color-sky-700: rgb(0, 105, 168);
112
+ --color-sky-800: rgb(0, 89, 138);
113
+ --color-sky-900: rgb(2, 74, 112);
114
+ --color-sky-950: rgb(5, 47, 74);
115
+ --color-blue-50: rgb(239, 246, 255);
116
+ --color-blue-100: rgb(219, 234, 254);
117
+ --color-blue-200: rgb(190, 219, 255);
118
+ --color-blue-300: rgb(142, 197, 255);
119
+ --color-blue-400: rgb(81, 162, 255);
120
+ --color-blue-500: rgb(43, 127, 255);
121
+ --color-blue-600: rgb(21, 93, 252);
122
+ --color-blue-700: rgb(20, 71, 230);
123
+ --color-blue-800: rgb(25, 60, 184);
124
+ --color-blue-900: rgb(28, 57, 142);
125
+ --color-blue-950: rgb(22, 36, 86);
126
+ --color-indigo-50: rgb(238, 242, 255);
127
+ --color-indigo-100: rgb(224, 231, 255);
128
+ --color-indigo-200: rgb(198, 210, 255);
129
+ --color-indigo-300: rgb(163, 179, 255);
130
+ --color-indigo-400: rgb(124, 134, 255);
131
+ --color-indigo-500: rgb(97, 95, 255);
132
+ --color-indigo-600: rgb(79, 57, 246);
133
+ --color-indigo-700: rgb(67, 45, 215);
134
+ --color-indigo-800: rgb(55, 42, 172);
135
+ --color-indigo-900: rgb(49, 44, 133);
136
+ --color-indigo-950: rgb(30, 26, 77);
137
+ --color-violet-50: rgb(245, 243, 255);
138
+ --color-violet-100: rgb(237, 233, 254);
139
+ --color-violet-200: rgb(221, 214, 255);
140
+ --color-violet-300: rgb(196, 180, 255);
141
+ --color-violet-400: rgb(166, 132, 255);
142
+ --color-violet-500: rgb(142, 81, 255);
143
+ --color-violet-600: rgb(127, 34, 254);
144
+ --color-violet-700: rgb(112, 8, 231);
145
+ --color-violet-800: rgb(93, 14, 192);
146
+ --color-violet-900: rgb(77, 23, 154);
147
+ --color-violet-950: rgb(47, 13, 104);
148
+ --color-purple-50: rgb(250, 245, 255);
149
+ --color-purple-100: rgb(243, 232, 255);
150
+ --color-purple-200: rgb(233, 212, 255);
151
+ --color-purple-300: rgb(218, 178, 255);
152
+ --color-purple-400: rgb(194, 122, 255);
153
+ --color-purple-500: rgb(173, 70, 255);
154
+ --color-purple-600: rgb(152, 16, 250);
155
+ --color-purple-700: rgb(130, 0, 219);
156
+ --color-purple-800: rgb(110, 17, 176);
157
+ --color-purple-900: rgb(89, 22, 139);
158
+ --color-purple-950: rgb(60, 3, 102);
159
+ --color-fuchsia-50: rgb(253, 244, 255);
160
+ --color-fuchsia-100: rgb(250, 232, 255);
161
+ --color-fuchsia-200: rgb(246, 207, 255);
162
+ --color-fuchsia-300: rgb(244, 168, 255);
163
+ --color-fuchsia-400: rgb(237, 106, 255);
164
+ --color-fuchsia-500: rgb(225, 42, 251);
165
+ --color-fuchsia-600: rgb(200, 0, 222);
166
+ --color-fuchsia-700: rgb(168, 0, 183);
167
+ --color-fuchsia-800: rgb(138, 1, 148);
168
+ --color-fuchsia-900: rgb(114, 19, 120);
169
+ --color-fuchsia-950: rgb(75, 0, 79);
170
+ --color-pink-50: rgb(253, 242, 248);
171
+ --color-pink-100: rgb(252, 231, 243);
172
+ --color-pink-200: rgb(252, 206, 232);
173
+ --color-pink-300: rgb(253, 165, 213);
174
+ --color-pink-400: rgb(251, 100, 182);
175
+ --color-pink-500: rgb(246, 51, 154);
176
+ --color-pink-600: rgb(230, 0, 118);
177
+ --color-pink-700: rgb(198, 0, 92);
178
+ --color-pink-800: rgb(163, 0, 76);
179
+ --color-pink-900: rgb(134, 16, 67);
180
+ --color-pink-950: rgb(81, 4, 36);
181
+ --color-rose-50: rgb(255, 241, 242);
182
+ --color-rose-100: rgb(255, 228, 230);
183
+ --color-rose-200: rgb(255, 204, 211);
184
+ --color-rose-300: rgb(255, 161, 173);
185
+ --color-rose-400: rgb(255, 99, 126);
186
+ --color-rose-500: rgb(255, 32, 86);
187
+ --color-rose-600: rgb(236, 0, 63);
188
+ --color-rose-700: rgb(199, 0, 54);
189
+ --color-rose-800: rgb(165, 0, 54);
190
+ --color-rose-900: rgb(139, 8, 54);
191
+ --color-rose-950: rgb(77, 2, 24);
192
+ --color-slate-50: rgb(248, 250, 252);
193
+ --color-slate-100: rgb(241, 245, 249);
194
+ --color-slate-200: rgb(226, 232, 240);
195
+ --color-slate-300: rgb(202, 213, 226);
196
+ --color-slate-400: rgb(144, 161, 185);
197
+ --color-slate-500: rgb(98, 116, 142);
198
+ --color-slate-600: rgb(69, 85, 108);
199
+ --color-slate-700: rgb(49, 65, 88);
200
+ --color-slate-800: rgb(29, 41, 61);
201
+ --color-slate-900: rgb(15, 23, 43);
202
+ --color-slate-950: rgb(2, 6, 24);
203
+ --color-gray-50: rgb(249, 250, 251);
204
+ --color-gray-100: rgb(243, 244, 246);
205
+ --color-gray-200: rgb(229, 231, 235);
206
+ --color-gray-300: rgb(209, 213, 220);
207
+ --color-gray-400: rgb(153, 161, 175);
208
+ --color-gray-500: rgb(106, 114, 130);
209
+ --color-gray-600: rgb(74, 85, 101);
210
+ --color-gray-700: rgb(54, 65, 83);
211
+ --color-gray-800: rgb(30, 41, 57);
212
+ --color-gray-900: rgb(16, 24, 40);
213
+ --color-gray-950: rgb(3, 7, 18);
214
+ --color-zinc-50: rgb(250, 250, 250);
215
+ --color-zinc-100: rgb(244, 244, 245);
216
+ --color-zinc-200: rgb(228, 228, 231);
217
+ --color-zinc-300: rgb(212, 212, 216);
218
+ --color-zinc-400: rgb(159, 159, 169);
219
+ --color-zinc-500: rgb(113, 113, 123);
220
+ --color-zinc-600: rgb(82, 82, 92);
221
+ --color-zinc-700: rgb(63, 63, 70);
222
+ --color-zinc-800: rgb(39, 39, 42);
223
+ --color-zinc-900: rgb(24, 24, 27);
224
+ --color-zinc-950: rgb(9, 9, 11);
225
+ --color-neutral-50: rgb(250, 250, 250);
226
+ --color-neutral-100: rgb(245, 245, 245);
227
+ --color-neutral-200: rgb(229, 229, 229);
228
+ --color-neutral-300: rgb(212, 212, 212);
229
+ --color-neutral-400: rgb(161, 161, 161);
230
+ --color-neutral-500: rgb(115, 115, 115);
231
+ --color-neutral-600: rgb(82, 82, 82);
232
+ --color-neutral-700: rgb(64, 64, 64);
233
+ --color-neutral-800: rgb(38, 38, 38);
234
+ --color-neutral-900: rgb(23, 23, 23);
235
+ --color-neutral-950: rgb(10, 10, 10);
236
+ --color-stone-50: rgb(250, 250, 249);
237
+ --color-stone-100: rgb(245, 245, 244);
238
+ --color-stone-200: rgb(231, 229, 228);
239
+ --color-stone-300: rgb(214, 211, 209);
240
+ --color-stone-400: rgb(166, 160, 155);
241
+ --color-stone-500: rgb(121, 113, 107);
242
+ --color-stone-600: rgb(87, 83, 77);
243
+ --color-stone-700: rgb(68, 64, 59);
244
+ --color-stone-800: rgb(41, 37, 36);
245
+ --color-stone-900: rgb(28, 25, 23);
246
+ --color-stone-950: rgb(12, 10, 9);
247
+ }
@@ -1,29 +1,19 @@
1
1
  @use "mixins";
2
2
  @use "variables";
3
3
  @use "colors";
4
- @use "../themes/variables-dark" as dark;
5
4
  @use "../themes/variables-blueprint" as blueprint;
6
5
 
7
6
  @layer base, theme-variant, utilities;
8
7
 
9
8
  @layer base {
10
9
  :root {
11
- @include mixins.writeVars(colors.$colors, "color");
10
+ @include colors.vars;
12
11
  @include mixins.writeVars(variables.$vars, "");
13
12
  }
14
13
  }
15
14
 
16
15
  @layer theme-variant {
17
- .sd-theme-dark {
18
- @include mixins.writeVars(dark.$vars, "");
19
- }
20
-
21
- // D7: opt-out 방식 이미지 반전
22
- .sd-theme-dark img:not(.no-invert) {
23
- filter: invert(1) hue-rotate(180deg);
24
- }
25
-
26
- // 블루프린트 — 다크 토글과 직교. 트레이싱지(라이트 면)
16
+ // 블루프린트 — 트레이싱지(라이트 면)
27
17
  .sd-theme-blueprint {
28
18
  @include mixins.writeVars(blueprint.$paper, "");
29
19
  }