@nordcode/ui 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.
Files changed (66) hide show
  1. package/CHANGELOG.md +157 -0
  2. package/LICENSE.md +661 -0
  3. package/README.md +90 -0
  4. package/index.html +1169 -0
  5. package/out/bundle.css +1400 -0
  6. package/out/bundle_configless.css +1135 -0
  7. package/out/colors.css +87 -0
  8. package/out/complete.css +2647 -0
  9. package/out/complete_configless.css +2382 -0
  10. package/package.json +73 -0
  11. package/src/assets/fonts/DMMono-Regular.woff +0 -0
  12. package/src/assets/fonts/DMMono-Regular.woff2 +0 -0
  13. package/src/assets/fonts/fonts.css +7 -0
  14. package/src/assets/icons/ArrowRightSolid.svelte +1 -0
  15. package/src/assets/icons/arrow-right-solid.svg +1 -0
  16. package/src/assets/icons/favicon.png +0 -0
  17. package/src/assets/icons/favicon.svg +8 -0
  18. package/src/assets/logos/nordcode-logo-icon.svg +3 -0
  19. package/src/assets/logos/nordcode-logo.svg +17 -0
  20. package/src/modules/copyButtons/ts/copyButtons.ts +9 -0
  21. package/src/modules/dialogs/svelte/dialog.svelte +27 -0
  22. package/src/modules/dialogs/ts/LICENCE +171 -0
  23. package/src/modules/dialogs/ts/dialogs.ts +111 -0
  24. package/src/modules/notifications/js/notifications.js +294 -0
  25. package/src/modules/notifications/svelte/NotificationCenter.svelte +18 -0
  26. package/src/modules/notifications/svelte/NotificationTemplate.svelte +16 -0
  27. package/src/modules/sectionObserver/ts/sectionOberserver.ts +34 -0
  28. package/src/styles/bundle.css +7 -0
  29. package/src/styles/bundle_configless.css +5 -0
  30. package/src/styles/complete.css +5 -0
  31. package/src/styles/complete_configless.css +5 -0
  32. package/src/styles/components/badges.css +14 -0
  33. package/src/styles/components/breadcrumbs.css +37 -0
  34. package/src/styles/components/bundle.css +12 -0
  35. package/src/styles/components/buttons.css +256 -0
  36. package/src/styles/components/card.css +55 -0
  37. package/src/styles/components/dialogs.css +116 -0
  38. package/src/styles/components/forms.css +47 -0
  39. package/src/styles/components/gallery.css +66 -0
  40. package/src/styles/components/icons.css +60 -0
  41. package/src/styles/components/inputs/base.css +258 -0
  42. package/src/styles/components/inputs/bundle.css +5 -0
  43. package/src/styles/components/inputs/fields.css +79 -0
  44. package/src/styles/components/inputs/segmented.css +123 -0
  45. package/src/styles/components/inputs/switch.css +42 -0
  46. package/src/styles/components/inputs/tag-select.css +44 -0
  47. package/src/styles/components/lists.css +40 -0
  48. package/src/styles/components/notifications.css +137 -0
  49. package/src/styles/components/tables.css +7 -0
  50. package/src/styles/config/bundle.css +2 -0
  51. package/src/styles/config/config.css +828 -0
  52. package/src/styles/config/extras.css +18 -0
  53. package/src/styles/exceptions/bundle.css +3 -0
  54. package/src/styles/exceptions/misc.css +21 -0
  55. package/src/styles/exceptions/spacings.css +15 -0
  56. package/src/styles/exceptions/typography.css +57 -0
  57. package/src/styles/theme/colors.css +178 -0
  58. package/src/styles/theme/colors_processed.css +87 -0
  59. package/src/styles/utils/base.css +406 -0
  60. package/src/styles/utils/bundle.css +6 -0
  61. package/src/styles/utils/easings.css +364 -0
  62. package/src/styles/utils/layouts.css +298 -0
  63. package/src/styles/utils/media.css +55 -0
  64. package/src/styles/utils/reset.css +128 -0
  65. package/src/styles/utils/theme.css +120 -0
  66. package/transform.js +71 -0
package/out/bundle.css ADDED
@@ -0,0 +1,1400 @@
1
+ @layer config {
2
+ :where(html) {
3
+ --font-family-mono: DMMono, monospace;
4
+ --font-family-sans: system-ui, sans-serif;
5
+ --font-family-serif: serif;
6
+ --font-family-default: var(--font-family-sans);
7
+ --font-weight-default: 400;
8
+ --font-weight-heading: 600;
9
+ --font-weight-active: 600;
10
+ --font-weight-strong: 600;
11
+ --line-height-large: 3.4ex;
12
+ --line-height-base: 3ex;
13
+ --line-height-small: 2.4ex;
14
+ --tracking-base: 0ch;
15
+ --tracking-tight: -.04ch;
16
+ --tracking-wide: .06ch;
17
+ --measure-large: 88ch;
18
+ --measure-base: 72ch;
19
+ --measure-small: 44ch;
20
+ --font-size-smallest: max(.75rem, 12px);
21
+ --font-size-small: max(.875rem, 14px);
22
+ --font-size-base: 1rem;
23
+ --font-size-large: 1.25rem;
24
+ --font-size-largest: 1.5rem;
25
+ --font-size-display: 3.5rem;
26
+ --transparency-weaker: .8;
27
+ --spacing-tiny: .125rem;
28
+ --spacing-nearest: .25rem;
29
+ --spacing-near: .5rem;
30
+ --spacing-base: 1rem;
31
+ --spacing-far: 2rem;
32
+ --spacing-farthest: 4rem;
33
+ --border-width-thin: 1px;
34
+ --border-width-medium: 2px;
35
+ --border-width-thick: 4px;
36
+ --border-radius-none: 0px;
37
+ --border-radius-small: 2px;
38
+ --border-radius-medium: 4px;
39
+ --border-radius-large: 8px;
40
+ --border-radius-round: 100000px;
41
+ --shadow-inset-light: inset .24px .8px 1.6px 0px #b4bed24d, inset .31px 1.04px 2.08px -4px #b4bed241;
42
+ --shadow-nearest-light: .24px .8px 1.6px 0px #b4bed24d, .31px 1.04px 2.08px -4px #b4bed241;
43
+ --shadow-near-light: .24px .8px 1.6px 0px #b4bed24d, .31px 1.04px 2.08px -1.33px #b4bed241, .41px 1.35px 2.7px -2.67px #b4bed237, .53px 1.76px 3.52px -4px #b4bed22f;
44
+ --shadow-medium-light: .24px .8px 1.6px 0px #b4bed24d, .31px 1.04px 2.08px -.8px #b4bed241, .41px 1.35px 2.7px -1.6px #b4bed237, .53px 1.76px 3.52px -2.4px #b4bed22f, .68px 2.28px 4.56px -3.2px #b4bed228, .89px 2.97px 5.94px -4px #b4bed222;
45
+ --shadow-far-light: .24px .8px 1.6px 0px #b4bed24d, .31px 1.04px 2.08px -.5px #b4bed241, .41px 1.35px 2.7px -1px #b4bed237, .53px 1.76px 3.52px -1.5px #b4bed22f, .68px 2.28px 4.56px -2px #b4bed228, .89px 2.97px 5.94px -2.5px #b4bed222, 1.16px 3.86px 7.72px -3px #b4bed21d, 1.51px 5.02px 10.04px -3.5px #b4bed219, 1.96px 6.53px 13.06px -4px #b4bed215;
46
+ --shadow-color-light: #b4bed2;
47
+ --shadow-color-light-lch: 80% .03 265;
48
+ --shadow-inset-dark: inset inset .24px .8px 1.6px 0px #212d474d, inset .31px 1.04px 2.08px -4px #212d4741;
49
+ --shadow-nearest-dark: .24px .8px 1.6px 0px #212d474d, .31px 1.04px 2.08px -4px #212d4741;
50
+ --shadow-near-dark: .24px .8px 1.6px 0px #212d474d, .31px 1.04px 2.08px -1.33px #212d4741, .41px 1.35px 2.7px -2.67px #212d4737, .53px 1.76px 3.52px -4px #212d472f;
51
+ --shadow-medium-dark: .24px .8px 1.6px 0px #212d474d, .31px 1.04px 2.08px -.8px #212d4741, .41px 1.35px 2.7px -1.6px #212d4737, .53px 1.76px 3.52px -2.4px #212d472f, .68px 2.28px 4.56px -3.2px #212d4728, .89px 2.97px 5.94px -4px #212d4722;
52
+ --shadow-far-dark: .24px .8px 1.6px 0px #212d474d, .31px 1.04px 2.08px -.5px #212d4741, .41px 1.35px 2.7px -1px #212d4737, .53px 1.76px 3.52px -1.5px #212d472f, .68px 2.28px 4.56px -2px #212d4728, .89px 2.97px 5.94px -2.5px #212d4722, 1.16px 3.86px 7.72px -3px #212d471d, 1.51px 5.02px 10.04px -3.5px #212d4719, 1.96px 6.53px 13.06px -4px #212d4715;
53
+ --shadow-color-dark: #212d47;
54
+ --shadow-color-dark-lch: 30% .05 265;
55
+ --lightness-max: .99;
56
+ --lightness-min: .03;
57
+ --lightness-diff: calc(var(--lightness-max) - var(--lightness-min));
58
+ --lightness-contrast-cutoff: calc(var(--lightness-min) + var(--lightness-diff) * .5 + .05);
59
+ --neutral-chroma-scale: .25;
60
+ --c-brand-primary: .3;
61
+ --h-brand-primary: 265;
62
+ --color-brand-primary-neutral-chroma: calc(var(--c-brand-primary) * var(--neutral-chroma-scale));
63
+ --color-brand-primary-white: oklch(var(--lightness-max) var(--color-brand-primary-neutral-chroma) var(--h-brand-primary));
64
+ --color-brand-primary-black: oklch(var(--lightness-min) var(--color-brand-primary-neutral-chroma) var(--h-brand-primary));
65
+ --l-brand-primary-light: .56;
66
+ --color-brand-primary-base-light: oklch(var(--l-brand-primary-light) var(--c-brand-primary) var(--h-brand-primary));
67
+ --color-brand-primary-emphasis-light: color-mix(in oklch, oklch(var(--l-brand-primary-light) calc(1.25 * var(--c-brand-primary)) var(--h-brand-primary)), var(--color-brand-primary-black) 15%);
68
+ --color-brand-primary-surface-light: color-mix(in oklch, oklch(var(--l-brand-primary-light) var(--c-brand-primary) var(--h-brand-primary)), var(--color-brand-primary-white) 96%);
69
+ --color-brand-primary-contrast-lightness-light: calc(var(--lightness-max) - ( var(--lightness-diff) * min(max((var(--l-brand-primary-light) - var(--lightness-contrast-cutoff)) * 1000000, 0), 1)));
70
+ --color-brand-primary-contrast-light: oklch(var(--color-brand-primary-contrast-lightness-light) var(--color-brand-primary-neutral-chroma) var(--h-brand-primary));
71
+ --color-brand-primary-hover-light: color-mix(in oklch, var(--color-brand-primary-base-light) calc(var(--transparency-weaker) * 10%), transparent);
72
+ --l-brand-primary-dark: .75;
73
+ --color-brand-primary-base-dark: oklch(var(--l-brand-primary-dark) var(--c-brand-primary) var(--h-brand-primary));
74
+ --color-brand-primary-emphasis-dark: color-mix(in oklch, oklch(var(--l-brand-primary-dark) calc(1.25 * var(--c-brand-primary)) var(--h-brand-primary)), var(--color-brand-primary-white) 15%);
75
+ --color-brand-primary-surface-dark: color-mix(in oklch, oklch(var(--l-brand-primary-dark) var(--c-brand-primary) var(--h-brand-primary)), var(--color-brand-primary-black) 65%);
76
+ --color-brand-primary-contrast-lightness-dark: calc(var(--lightness-max) - ( var(--lightness-diff) * min(max((var(--l-brand-primary-dark) - var(--lightness-contrast-cutoff)) * 1000000, 0), 1)));
77
+ --color-brand-primary-contrast-dark: oklch(var(--color-brand-primary-contrast-lightness-dark) var(--color-brand-primary-neutral-chroma) var(--h-brand-primary));
78
+ --color-brand-primary-hover-dark: color-mix(in oklch, var(--color-brand-primary-base-dark) calc(var(--transparency-weaker) * 10%), transparent);
79
+ --c-brand-secondary: .4;
80
+ --h-brand-secondary: 215;
81
+ --color-brand-secondary-neutral-chroma: calc(var(--c-brand-secondary) * var(--neutral-chroma-scale));
82
+ --color-brand-secondary-white: oklch(var(--lightness-max) var(--color-brand-secondary-neutral-chroma) var(--h-brand-secondary));
83
+ --color-brand-secondary-black: oklch(var(--lightness-min) var(--color-brand-secondary-neutral-chroma) var(--h-brand-secondary));
84
+ --l-brand-secondary-light: .51;
85
+ --color-brand-secondary-base-light: oklch(var(--l-brand-secondary-light) var(--c-brand-secondary) var(--h-brand-secondary));
86
+ --color-brand-secondary-emphasis-light: color-mix(in oklch, oklch(var(--l-brand-secondary-light) calc(1.25 * var(--c-brand-secondary)) var(--h-brand-secondary)), var(--color-brand-secondary-black) 15%);
87
+ --color-brand-secondary-surface-light: color-mix(in oklch, oklch(var(--l-brand-secondary-light) var(--c-brand-secondary) var(--h-brand-secondary)), var(--color-brand-secondary-white) 96%);
88
+ --color-brand-secondary-contrast-lightness-light: calc(var(--lightness-max) - ( var(--lightness-diff) * min(max((var(--l-brand-secondary-light) - var(--lightness-contrast-cutoff)) * 1000000, 0), 1)));
89
+ --color-brand-secondary-contrast-light: oklch(var(--color-brand-secondary-contrast-lightness-light) var(--color-brand-secondary-neutral-chroma) var(--h-brand-secondary));
90
+ --color-brand-secondary-hover-light: color-mix(in oklch, var(--color-brand-secondary-base-light) calc(var(--transparency-weaker) * 10%), transparent);
91
+ --l-brand-secondary-dark: .76;
92
+ --color-brand-secondary-base-dark: oklch(var(--l-brand-secondary-dark) var(--c-brand-secondary) var(--h-brand-secondary));
93
+ --color-brand-secondary-emphasis-dark: color-mix(in oklch, oklch(var(--l-brand-secondary-dark) calc(1.25 * var(--c-brand-secondary)) var(--h-brand-secondary)), var(--color-brand-secondary-white) 15%);
94
+ --color-brand-secondary-surface-dark: color-mix(in oklch, oklch(var(--l-brand-secondary-dark) var(--c-brand-secondary) var(--h-brand-secondary)), var(--color-brand-secondary-black) 65%);
95
+ --color-brand-secondary-contrast-lightness-dark: calc(var(--lightness-max) - ( var(--lightness-diff) * min(max((var(--l-brand-secondary-dark) - var(--lightness-contrast-cutoff)) * 1000000, 0), 1)));
96
+ --color-brand-secondary-contrast-dark: oklch(var(--color-brand-secondary-contrast-lightness-dark) var(--color-brand-secondary-neutral-chroma) var(--h-brand-secondary));
97
+ --color-brand-secondary-hover-dark: color-mix(in oklch, var(--color-brand-secondary-base-dark) calc(var(--transparency-weaker) * 10%), transparent);
98
+ --l-text-light: .28;
99
+ --c-text-light: .03;
100
+ --h-text-light: var(--h-brand-primary);
101
+ --scale-text-light: .1;
102
+ --color-text-neutral-chroma-light: calc(var(--c-text-light) * var(--neutral-chroma-scale));
103
+ --color-text-contrast-light: oklch(var(--lightness-max) var(--color-text-neutral-chroma-light) var(--h-text-light));
104
+ --color-text-base-light: oklch(var(--l-text-light) var(--c-text-light) var(--h-text-light));
105
+ --color-text-muted-light: color-mix(in oklch, var(--color-text-base-light), var(--color-text-contrast-light) calc(var(--scale-text-light) * 100%));
106
+ --color-text-subtle-light: color-mix(in oklch, var(--color-text-base-light), var(--color-text-contrast-light) calc(var(--scale-text-light) * 2 * 100%));
107
+ --color-text-on-emphasis-light: var(--color-text-contrast-light);
108
+ --color-text-hover-light: color-mix(in oklch, var(--color-text-base-light) calc(var(--transparency-weaker) * 10%), transparent);
109
+ --l-text-dark: .88;
110
+ --c-text-dark: .05;
111
+ --h-text-dark: var(--h-brand-primary);
112
+ --color-text-neutral-chroma-dark: calc(var(--c-text-dark) * var(--neutral-chroma-scale));
113
+ --color-text-contrast-dark: oklch(var(--lightness-min) var(--color-text-neutral-chroma-dark) var(--h-text-dark));
114
+ --color-text-base-dark: oklch(var(--l-text-dark) var(--c-text-dark) var(--h-text-dark));
115
+ --color-text-muted-dark: color-mix(in oklch, var(--color-text-base-dark), var(--color-text-contrast-dark) 12%);
116
+ --color-text-subtle-dark: color-mix(in oklch, var(--color-text-base-dark), var(--color-text-contrast-dark) 24%);
117
+ --color-text-on-emphasis-dark: var(--color-text-contrast-dark);
118
+ --color-text-hover-dark: color-mix(in oklch, var(--color-text-base-dark) calc(var(--transparency-weaker) * 10%), transparent);
119
+ --l-surface-light: .99;
120
+ --c-surface-light: .03;
121
+ --h-surface-light: var(--h-brand-primary);
122
+ --scale-surface-light: .02;
123
+ --color-surface-neutral-chroma-light: calc(var(--c-surface-light) * var(--neutral-chroma-scale));
124
+ --color-surface-contrast-light: oklch(var(--lightness-min) var(--color-surface-neutral-chroma-light) var(--h-surface-light));
125
+ --color-surface-base-light: oklch(var(--l-surface-light) var(--c-surface-light) var(--h-surface-light));
126
+ --color-surface-muted-light: color-mix(in oklch, var(--color-surface-base-light), var(--color-surface-contrast-light) calc(var(--scale-surface-light) * 100%));
127
+ --color-surface-subtle-light: color-mix(in oklch, var(--color-surface-base-light), var(--color-surface-contrast-light) calc(var(--scale-surface-light) * 2 * 100%));
128
+ --color-surface-emphasis-light: var(--color-surface-contrast-light);
129
+ --l-surface-dark: .15;
130
+ --c-surface-dark: .05;
131
+ --h-surface-dark: var(--h-brand-primary);
132
+ --color-surface-neutral-chroma-dark: calc(var(--c-surface-dark) * var(--neutral-chroma-scale));
133
+ --color-surface-contrast-dark: oklch(var(--lightness-max) var(--color-surface-neutral-chroma-dark) var(--h-surface-dark));
134
+ --color-surface-base-dark: oklch(var(--l-surface-dark) var(--c-surface-dark) var(--h-surface-dark));
135
+ --color-surface-muted-dark: color-mix(in oklch, var(--color-surface-base-dark), var(--color-surface-contrast-dark) 6%);
136
+ --color-surface-subtle-dark: color-mix(in oklch, var(--color-surface-base-dark), var(--color-surface-contrast-dark) 12%);
137
+ --color-surface-emphasis-dark: var(--color-surface-contrast-dark);
138
+ --l-border-light: .87;
139
+ --c-border-light: .03;
140
+ --h-border-light: var(--h-brand-primary);
141
+ --scale-border-light: .1;
142
+ --color-border-neutral-chroma-light: calc(var(--c-border-light) * var(--neutral-chroma-scale));
143
+ --color-border-contrast-light: oklch(var(--lightness-max) var(--color-border-neutral-chroma-light) var(--h-border-light));
144
+ --color-border-base-light: oklch(var(--l-border-light) var(--c-border-light) var(--h-border-light));
145
+ --color-border-muted-light: color-mix(in oklch, var(--color-border-base-light), var(--color-border-contrast-light) calc(var(--scale-border-light) * 100%));
146
+ --color-border-subtle-light: color-mix(in oklch, var(--color-border-base-light), var(--color-border-contrast-light) calc(var(--scale-border-light) * 2 * 100%));
147
+ --color-border-on-emphasis-light: var(--color-border-contrast-light);
148
+ --color-border-hover-light: color-mix(in oklch, var(--color-border-base-light) calc(var(--transparency-weaker) * 10%), transparent);
149
+ --l-border-dark: .3;
150
+ --c-border-dark: .05;
151
+ --h-border-dark: var(--h-brand-primary);
152
+ --color-border-neutral-chroma-dark: calc(var(--c-border-dark) * var(--neutral-chroma-scale));
153
+ --color-border-contrast-dark: oklch(var(--lightness-min) var(--color-border-neutral-chroma-dark) var(--h-border-dark));
154
+ --color-border-base-dark: oklch(var(--l-border-dark) var(--c-border-dark) var(--h-border-dark));
155
+ --color-border-muted-dark: color-mix(in oklch, var(--color-border-base-dark), var(--color-border-contrast-dark) 12%);
156
+ --color-border-subtle-dark: color-mix(in oklch, var(--color-border-base-dark), var(--color-border-contrast-dark) 24%);
157
+ --color-border-on-emphasis-dark: var(--color-border-contrast-dark);
158
+ --color-border-hover-dark: color-mix(in oklch, var(--color-border-base-dark) calc(var(--transparency-weaker) * 10%), transparent);
159
+ --c-status-success: .3;
160
+ --h-status-success: 142;
161
+ --color-status-success-neutral-chroma: calc(var(--c-status-success) * var(--neutral-chroma-scale));
162
+ --color-status-success-white: oklch(var(--lightness-max) var(--color-status-success-neutral-chroma) var(--h-status-success));
163
+ --color-status-success-black: oklch(var(--lightness-min) var(--color-status-success-neutral-chroma) var(--h-status-success));
164
+ --l-status-success-light: .56;
165
+ --color-status-success-base-light: oklch(var(--l-status-success-light) var(--c-status-success) var(--h-status-success));
166
+ --color-status-success-emphasis-light: color-mix(in oklch, oklch(var(--l-status-success-light) calc(1.25 * var(--c-status-success)) var(--h-status-success)), var(--color-status-success-black) 15%);
167
+ --color-status-success-surface-light: color-mix(in oklch, oklch(var(--l-status-success-light) var(--c-status-success) var(--h-status-success)), var(--color-status-success-white) 96%);
168
+ --color-status-success-contrast-lightness-light: calc(var(--lightness-max) - ( var(--lightness-diff) * min(max((var(--l-status-success-light) - var(--lightness-contrast-cutoff)) * 1000000, 0), 1)));
169
+ --color-status-success-contrast-light: oklch(var(--color-status-success-contrast-lightness-light) var(--color-status-success-neutral-chroma) var(--h-status-success));
170
+ --color-status-success-hover-light: color-mix(in oklch, var(--color-status-success-base-light) calc(var(--transparency-weaker) * 10%), transparent);
171
+ --l-status-success-dark: .75;
172
+ --color-status-success-base-dark: oklch(var(--l-status-success-dark) var(--c-status-success) var(--h-status-success));
173
+ --color-status-success-emphasis-dark: color-mix(in oklch, oklch(var(--l-status-success-dark) calc(1.25 * var(--c-status-success)) var(--h-status-success)), var(--color-status-success-white) 15%);
174
+ --color-status-success-surface-dark: color-mix(in oklch, oklch(var(--l-status-success-dark) var(--c-status-success) var(--h-status-success)), var(--color-status-success-black) 65%);
175
+ --color-status-success-contrast-lightness-dark: calc(var(--lightness-max) - ( var(--lightness-diff) * min(max((var(--l-status-success-dark) - var(--lightness-contrast-cutoff)) * 1000000, 0), 1)));
176
+ --color-status-success-contrast-dark: oklch(var(--color-status-success-contrast-lightness-dark) var(--color-status-success-neutral-chroma) var(--h-status-success));
177
+ --color-status-success-hover-dark: color-mix(in oklch, var(--color-status-success-base-dark) calc(var(--transparency-weaker) * 10%), transparent);
178
+ --c-status-warning: .3;
179
+ --h-status-warning: 97;
180
+ --color-status-warning-neutral-chroma: calc(var(--c-status-warning) * var(--neutral-chroma-scale));
181
+ --color-status-warning-white: oklch(var(--lightness-max) var(--color-status-warning-neutral-chroma) var(--h-status-warning));
182
+ --color-status-warning-black: oklch(var(--lightness-min) var(--color-status-warning-neutral-chroma) var(--h-status-warning));
183
+ --l-status-warning-light: .56;
184
+ --color-status-warning-base-light: oklch(var(--l-status-warning-light) var(--c-status-warning) var(--h-status-warning));
185
+ --color-status-warning-emphasis-light: color-mix(in oklch, oklch(var(--l-status-warning-light) calc(1.25 * var(--c-status-warning)) var(--h-status-warning)), var(--color-status-warning-black) 15%);
186
+ --color-status-warning-surface-light: color-mix(in oklch, oklch(var(--l-status-warning-light) var(--c-status-warning) var(--h-status-warning)), var(--color-status-warning-white) 96%);
187
+ --color-status-warning-contrast-lightness-light: calc(var(--lightness-max) - ( var(--lightness-diff) * min(max((var(--l-status-warning-light) - var(--lightness-contrast-cutoff)) * 1000000, 0), 1)));
188
+ --color-status-warning-contrast-light: oklch(var(--color-status-warning-contrast-lightness-light) var(--color-status-warning-neutral-chroma) var(--h-status-warning));
189
+ --color-status-warning-hover-light: color-mix(in oklch, var(--color-status-warning-base-light) calc(var(--transparency-weaker) * 10%), transparent);
190
+ --l-status-warning-dark: .75;
191
+ --color-status-warning-base-dark: oklch(var(--l-status-warning-dark) var(--c-status-warning) var(--h-status-warning));
192
+ --color-status-warning-emphasis-dark: color-mix(in oklch, oklch(var(--l-status-warning-dark) calc(1.25 * var(--c-status-warning)) var(--h-status-warning)), var(--color-status-warning-white) 15%);
193
+ --color-status-warning-surface-dark: color-mix(in oklch, oklch(var(--l-status-warning-dark) var(--c-status-warning) var(--h-status-warning)), var(--color-status-warning-black) 65%);
194
+ --color-status-warning-contrast-lightness-dark: calc(var(--lightness-max) - ( var(--lightness-diff) * min(max((var(--l-status-warning-dark) - var(--lightness-contrast-cutoff)) * 1000000, 0), 1)));
195
+ --color-status-warning-contrast-dark: oklch(var(--color-status-warning-contrast-lightness-dark) var(--color-status-warning-neutral-chroma) var(--h-status-warning));
196
+ --color-status-warning-hover-dark: color-mix(in oklch, var(--color-status-warning-base-dark) calc(var(--transparency-weaker) * 10%), transparent);
197
+ --c-status-danger: .3;
198
+ --h-status-danger: 32;
199
+ --color-status-danger-neutral-chroma: calc(var(--c-status-danger) * var(--neutral-chroma-scale));
200
+ --color-status-danger-white: oklch(var(--lightness-max) var(--color-status-danger-neutral-chroma) var(--h-status-danger));
201
+ --color-status-danger-black: oklch(var(--lightness-min) var(--color-status-danger-neutral-chroma) var(--h-status-danger));
202
+ --l-status-danger-light: .56;
203
+ --color-status-danger-base-light: oklch(var(--l-status-danger-light) var(--c-status-danger) var(--h-status-danger));
204
+ --color-status-danger-emphasis-light: color-mix(in oklch, oklch(var(--l-status-danger-light) calc(1.25 * var(--c-status-danger)) var(--h-status-danger)), var(--color-status-danger-black) 15%);
205
+ --color-status-danger-surface-light: color-mix(in oklch, oklch(var(--l-status-danger-light) var(--c-status-danger) var(--h-status-danger)), var(--color-status-danger-white) 96%);
206
+ --color-status-danger-contrast-lightness-light: calc(var(--lightness-max) - ( var(--lightness-diff) * min(max((var(--l-status-danger-light) - var(--lightness-contrast-cutoff)) * 1000000, 0), 1)));
207
+ --color-status-danger-contrast-light: oklch(var(--color-status-danger-contrast-lightness-light) var(--color-status-danger-neutral-chroma) var(--h-status-danger));
208
+ --color-status-danger-hover-light: color-mix(in oklch, var(--color-status-danger-base-light) calc(var(--transparency-weaker) * 10%), transparent);
209
+ --l-status-danger-dark: .75;
210
+ --color-status-danger-base-dark: oklch(var(--l-status-danger-dark) var(--c-status-danger) var(--h-status-danger));
211
+ --color-status-danger-emphasis-dark: color-mix(in oklch, oklch(var(--l-status-danger-dark) calc(1.25 * var(--c-status-danger)) var(--h-status-danger)), var(--color-status-danger-white) 15%);
212
+ --color-status-danger-surface-dark: color-mix(in oklch, oklch(var(--l-status-danger-dark) var(--c-status-danger) var(--h-status-danger)), var(--color-status-danger-black) 65%);
213
+ --color-status-danger-contrast-lightness-dark: calc(var(--lightness-max) - ( var(--lightness-diff) * min(max((var(--l-status-danger-dark) - var(--lightness-contrast-cutoff)) * 1000000, 0), 1)));
214
+ --color-status-danger-contrast-dark: oklch(var(--color-status-danger-contrast-lightness-dark) var(--color-status-danger-neutral-chroma) var(--h-status-danger));
215
+ --color-status-danger-hover-dark: color-mix(in oklch, var(--color-status-danger-base-dark) calc(var(--transparency-weaker) * 10%), transparent);
216
+ --c-status-info: .3;
217
+ --h-status-info: 245;
218
+ --color-status-info-neutral-chroma: calc(var(--c-status-info) * var(--neutral-chroma-scale));
219
+ --color-status-info-white: oklch(var(--lightness-max) var(--color-status-info-neutral-chroma) var(--h-status-info));
220
+ --color-status-info-black: oklch(var(--lightness-min) var(--color-status-info-neutral-chroma) var(--h-status-info));
221
+ --l-status-info-light: .56;
222
+ --color-status-info-base-light: oklch(var(--l-status-info-light) var(--c-status-info) var(--h-status-info));
223
+ --color-status-info-emphasis-light: color-mix(in oklch, oklch(var(--l-status-info-light) calc(1.25 * var(--c-status-info)) var(--h-status-info)), var(--color-status-info-black) 15%);
224
+ --color-status-info-surface-light: color-mix(in oklch, oklch(var(--l-status-info-light) var(--c-status-info) var(--h-status-info)), var(--color-status-info-white) 96%);
225
+ --color-status-info-contrast-lightness-light: calc(var(--lightness-max) - ( var(--lightness-diff) * min(max((var(--l-status-info-light) - var(--lightness-contrast-cutoff)) * 1000000, 0), 1)));
226
+ --color-status-info-contrast-light: oklch(var(--color-status-info-contrast-lightness-light) var(--color-status-info-neutral-chroma) var(--h-status-info));
227
+ --color-status-info-hover-light: color-mix(in oklch, var(--color-status-info-base-light) calc(var(--transparency-weaker) * 10%), transparent);
228
+ --l-status-info-dark: .75;
229
+ --color-status-info-base-dark: oklch(var(--l-status-info-dark) var(--c-status-info) var(--h-status-info));
230
+ --color-status-info-emphasis-dark: color-mix(in oklch, oklch(var(--l-status-info-dark) calc(1.25 * var(--c-status-info)) var(--h-status-info)), var(--color-status-info-white) 15%);
231
+ --color-status-info-surface-dark: color-mix(in oklch, oklch(var(--l-status-info-dark) var(--c-status-info) var(--h-status-info)), var(--color-status-info-black) 65%);
232
+ --color-status-info-contrast-lightness-dark: calc(var(--lightness-max) - ( var(--lightness-diff) * min(max((var(--l-status-info-dark) - var(--lightness-contrast-cutoff)) * 1000000, 0), 1)));
233
+ --color-status-info-contrast-dark: oklch(var(--color-status-info-contrast-lightness-dark) var(--color-status-info-neutral-chroma) var(--h-status-info));
234
+ --color-status-info-hover-dark: color-mix(in oklch, var(--color-status-info-base-dark) calc(var(--transparency-weaker) * 10%), transparent);
235
+ }
236
+
237
+ @supports (color: lab(0% 0 0)) {
238
+ :where(html) {
239
+ --shadow-inset-light: inset .24px .8px 1.6px 0px lab(76.6551% -.431716 -11.1996 / .3), inset .31px 1.04px 2.08px -4px lab(76.6551% -.431716 -11.1996 / .255);
240
+ --shadow-nearest-light: .24px .8px 1.6px 0px lab(76.6551% -.431716 -11.1996 / .3), .31px 1.04px 2.08px -4px lab(76.6551% -.431716 -11.1996 / .255);
241
+ --shadow-near-light: .24px .8px 1.6px 0px lab(76.6551% -.431716 -11.1996 / .3), .31px 1.04px 2.08px -1.33px lab(76.6551% -.431716 -11.1996 / .255), .41px 1.35px 2.7px -2.67px lab(76.6551% -.431716 -11.1996 / .2167), .53px 1.76px 3.52px -4px lab(76.6551% -.431716 -11.1996 / .1842);
242
+ --shadow-medium-light: .24px .8px 1.6px 0px lab(76.6551% -.431716 -11.1996 / .3), .31px 1.04px 2.08px -.8px lab(76.6551% -.431716 -11.1996 / .255), .41px 1.35px 2.7px -1.6px lab(76.6551% -.431716 -11.1996 / .2167), .53px 1.76px 3.52px -2.4px lab(76.6551% -.431716 -11.1996 / .1842), .68px 2.28px 4.56px -3.2px lab(76.6551% -.431716 -11.1996 / .1566), .89px 2.97px 5.94px -4px lab(76.6551% -.431716 -11.1996 / .1331);
243
+ --shadow-far-light: .24px .8px 1.6px 0px lab(76.6551% -.431716 -11.1996 / .3), .31px 1.04px 2.08px -.5px lab(76.6551% -.431716 -11.1996 / .255), .41px 1.35px 2.7px -1px lab(76.6551% -.431716 -11.1996 / .2167), .53px 1.76px 3.52px -1.5px lab(76.6551% -.431716 -11.1996 / .1842), .68px 2.28px 4.56px -2px lab(76.6551% -.431716 -11.1996 / .1566), .89px 2.97px 5.94px -2.5px lab(76.6551% -.431716 -11.1996 / .1331), 1.16px 3.86px 7.72px -3px lab(76.6551% -.431716 -11.1996 / .1131), 1.51px 5.02px 10.04px -3.5px lab(76.6551% -.431716 -11.1996 / .0962), 1.96px 6.53px 13.06px -4px lab(76.6551% -.431716 -11.1996 / .0817);
244
+ --shadow-color-light: lab(76.6551% -.431716 -11.1996);
245
+ --shadow-inset-dark: inset inset .24px .8px 1.6px 0px lab(18.4368% 1.36815 -18.0135 / .3), inset .31px 1.04px 2.08px -4px lab(18.4368% 1.36815 -18.0135 / .255);
246
+ --shadow-nearest-dark: .24px .8px 1.6px 0px lab(18.4368% 1.36815 -18.0135 / .3), .31px 1.04px 2.08px -4px lab(18.4368% 1.36815 -18.0135 / .255);
247
+ --shadow-near-dark: .24px .8px 1.6px 0px lab(18.4368% 1.36815 -18.0135 / .3), .31px 1.04px 2.08px -1.33px lab(18.4368% 1.36815 -18.0135 / .255), .41px 1.35px 2.7px -2.67px lab(18.4368% 1.36815 -18.0135 / .2167), .53px 1.76px 3.52px -4px lab(18.4368% 1.36815 -18.0135 / .1842);
248
+ --shadow-medium-dark: .24px .8px 1.6px 0px lab(18.4368% 1.36815 -18.0135 / .3), .31px 1.04px 2.08px -.8px lab(18.4368% 1.36815 -18.0135 / .255), .41px 1.35px 2.7px -1.6px lab(18.4368% 1.36815 -18.0135 / .2167), .53px 1.76px 3.52px -2.4px lab(18.4368% 1.36815 -18.0135 / .1842), .68px 2.28px 4.56px -3.2px lab(18.4368% 1.36815 -18.0135 / .1566), .89px 2.97px 5.94px -4px lab(18.4368% 1.36815 -18.0135 / .1331);
249
+ --shadow-far-dark: .24px .8px 1.6px 0px lab(18.4368% 1.36815 -18.0135 / .3), .31px 1.04px 2.08px -.5px lab(18.4368% 1.36815 -18.0135 / .255), .41px 1.35px 2.7px -1px lab(18.4368% 1.36815 -18.0135 / .2167), .53px 1.76px 3.52px -1.5px lab(18.4368% 1.36815 -18.0135 / .1842), .68px 2.28px 4.56px -2px lab(18.4368% 1.36815 -18.0135 / .1566), .89px 2.97px 5.94px -2.5px lab(18.4368% 1.36815 -18.0135 / .1331), 1.16px 3.86px 7.72px -3px lab(18.4368% 1.36815 -18.0135 / .1131), 1.51px 5.02px 10.04px -3.5px lab(18.4368% 1.36815 -18.0135 / .0962), 1.96px 6.53px 13.06px -4px lab(18.4368% 1.36815 -18.0135 / .0817);
250
+ --shadow-color-dark: lab(18.4368% 1.36815 -18.0135);
251
+ }
252
+ }
253
+
254
+ :where(html) {
255
+ --button-height-base: 2.5rem;
256
+ --button-height-small: 2rem;
257
+ --font-family-link: var(--font-family-default);
258
+ --font-family-button: var(--font-family-default);
259
+ --input-height-base: 2.5rem;
260
+ --input-height-small: 2rem;
261
+ --triangle-down-url-dark: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 84L12.7609 19.5L87.2391 19.5L50 84Z' fill='%23fff4f5'/%3E%3C/svg%3E");
262
+ --triangle-up-url-dark: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 16L87.2391 80.5H12.7609L50 16Z' fill='%23fff4f5'/%3E%3C/svg%3E%0A");
263
+ --triangle-down-url-light: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 84L12.7609 19.5L87.2391 19.5L50 84Z' fill='%231a0004'/%3E%3C/svg%3E");
264
+ --triangle-up-url-light: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 16L87.2391 80.5H12.7609L50 16Z' fill='%231a0004'/%3E%3C/svg%3E%0A");
265
+ }
266
+ }
267
+
268
+ @layer theme {
269
+ :where(html) {
270
+ --lightningcss-light: initial;
271
+ --lightningcss-dark: ;
272
+ color-scheme: light dark;
273
+ }
274
+
275
+ @media (prefers-color-scheme: dark) {
276
+ :where(html) {
277
+ --lightningcss-light: ;
278
+ --lightningcss-dark: initial;
279
+ }
280
+ }
281
+
282
+ :where([data-theme="light"]) {
283
+ --lightningcss-light: initial;
284
+ --lightningcss-dark: ;
285
+ color-scheme: light;
286
+ }
287
+
288
+ :where([data-theme="dark"]) {
289
+ --lightningcss-light: ;
290
+ --lightningcss-dark: initial;
291
+ color-scheme: dark;
292
+ }
293
+
294
+ :where(*) {
295
+ --l-brand-primary: var(--lightningcss-light, var(--l-brand-primary-light)) var(--lightningcss-dark, var(--l-brand-primary-dark));
296
+ --color-brand-primary-emphasis: var(--lightningcss-light, var(--color-brand-primary-emphasis-light)) var(--lightningcss-dark, var(--color-brand-primary-emphasis-dark));
297
+ --color-brand-primary-base: var(--lightningcss-light, var(--color-brand-primary-base-light)) var(--lightningcss-dark, var(--color-brand-primary-base-dark));
298
+ --color-brand-primary-surface: var(--lightningcss-light, var(--color-brand-primary-surface-light)) var(--lightningcss-dark, var(--color-brand-primary-surface-dark));
299
+ --color-brand-primary-hover: var(--lightningcss-light, var(--color-brand-primary-hover-light)) var(--lightningcss-dark, var(--color-brand-primary-hover-light));
300
+ --color-brand-primary-contrast-lightness: var(--lightningcss-light, var(--color-brand-primary-contrast-lightness-light)) var(--lightningcss-dark, var(--color-brand-primary-contrast-lightness-dark));
301
+ --color-brand-primary-contrast: var(--lightningcss-light, var(--color-brand-primary-contrast-light)) var(--lightningcss-dark, var(--color-brand-primary-contrast-dark));
302
+ --color-brand-secondary-emphasis: var(--lightningcss-light, var(--color-brand-secondary-emphasis-light)) var(--lightningcss-dark, var(--color-brand-secondary-emphasis-dark));
303
+ --color-brand-secondary-base: var(--lightningcss-light, var(--color-brand-secondary-base-light)) var(--lightningcss-dark, var(--color-brand-secondary-base-dark));
304
+ --color-brand-secondary-surface: var(--lightningcss-light, var(--color-brand-secondary-surface-light)) var(--lightningcss-dark, var(--color-brand-secondary-surface-dark));
305
+ --color-brand-secondary-hover: var(--lightningcss-light, var(--color-brand-secondary-hover-light)) var(--lightningcss-dark, var(--color-brand-secondary-hover-dark));
306
+ --color-brand-secondary-contrast: var(--lightningcss-light, var(--color-brand-secondary-contrast-light)) var(--lightningcss-dark, var(--color-brand-secondary-contrast-dark));
307
+ --color-text-base: var(--lightningcss-light, var(--color-text-base-light)) var(--lightningcss-dark, var(--color-text-base-dark));
308
+ --color-text-muted: var(--lightningcss-light, var(--color-text-muted-light)) var(--lightningcss-dark, var(--color-text-muted-dark));
309
+ --color-text-subtle: var(--lightningcss-light, var(--color-text-subtle-light)) var(--lightningcss-dark, var(--color-text-subtle-dark));
310
+ --color-text-on-emphasis: var(--lightningcss-light, var(--color-text-on-emphasis-light)) var(--lightningcss-dark, var(--color-text-on-emphasis-dark));
311
+ --color-text-hover: var(--lightningcss-light, var(--color-text-hover-light)) var(--lightningcss-dark, var(--color-text-hover-dark));
312
+ --color-surface-base: var(--lightningcss-light, var(--color-surface-base-light)) var(--lightningcss-dark, var(--color-surface-base-dark));
313
+ --color-surface-muted: var(--lightningcss-light, var(--color-surface-muted-light)) var(--lightningcss-dark, var(--color-surface-muted-dark));
314
+ --color-surface-subtle: var(--lightningcss-light, var(--color-surface-subtle-light)) var(--lightningcss-dark, var(--color-surface-subtle-dark));
315
+ --color-surface-emphasis: var(--lightningcss-light, var(--color-surface-emphasis-light)) var(--lightningcss-dark, var(--color-surface-emphasis-dark));
316
+ --color-border-base: var(--lightningcss-light, var(--color-border-base-light)) var(--lightningcss-dark, var(--color-border-base-dark));
317
+ --color-border-muted: var(--lightningcss-light, var(--color-border-muted-light)) var(--lightningcss-dark, var(--color-border-muted-dark));
318
+ --color-border-subtle: var(--lightningcss-light, var(--color-border-subtle-light)) var(--lightningcss-dark, var(--color-border-subtle-dark));
319
+ --color-border-on-emphasis: var(--lightningcss-light, var(--color-border-on-emphasis-light)) var(--lightningcss-dark, var(--color-border-on-emphasis-dark));
320
+ --color-border-hover: var(--lightningcss-light, var(--color-border-hover-light)) var(--lightningcss-dark, var(--color-border-hover-dark));
321
+ --color-status-info-emphasis: var(--lightningcss-light, var(--color-status-info-emphasis-light)) var(--lightningcss-dark, var(--color-status-info-emphasis-dark));
322
+ --color-status-info-base: var(--lightningcss-light, var(--color-status-info-base-light)) var(--lightningcss-dark, var(--color-status-info-base-dark));
323
+ --color-status-info-surface: var(--lightningcss-light, var(--color-status-info-surface-light)) var(--lightningcss-dark, var(--color-status-info-surface-dark));
324
+ --color-status-info-hover: var(--lightningcss-light, var(--color-status-info-hover-light)) var(--lightningcss-dark, var(--color-status-info-hover-light));
325
+ --color-status-info-contrast-lightness: var(--lightningcss-light, var(--color-status-info-contrast-lightness-light)) var(--lightningcss-dark, var(--color-status-info-contrast-lightness-dark));
326
+ --color-status-info-contrast: var(--lightningcss-light, var(--color-status-info-contrast-light)) var(--lightningcss-dark, var(--color-status-info-contrast-dark));
327
+ --color-status-success-emphasis: var(--lightningcss-light, var(--color-status-success-emphasis-light)) var(--lightningcss-dark, var(--color-status-success-emphasis-dark));
328
+ --color-status-success-base: var(--lightningcss-light, var(--color-status-success-base-light)) var(--lightningcss-dark, var(--color-status-success-base-dark));
329
+ --color-status-success-surface: var(--lightningcss-light, var(--color-status-success-surface-light)) var(--lightningcss-dark, var(--color-status-success-surface-dark));
330
+ --color-status-success-hover: var(--lightningcss-light, var(--color-status-success-hover-light)) var(--lightningcss-dark, var(--color-status-success-hover-light));
331
+ --color-status-success-contrast-lightness: var(--lightningcss-light, var(--color-status-success-contrast-lightness-light)) var(--lightningcss-dark, var(--color-status-success-contrast-lightness-dark));
332
+ --color-status-success-contrast: var(--lightningcss-light, var(--color-status-success-contrast-light)) var(--lightningcss-dark, var(--color-status-success-contrast-dark));
333
+ --color-status-warning-emphasis: var(--lightningcss-light, var(--color-status-warning-emphasis-light)) var(--lightningcss-dark, var(--color-status-warning-emphasis-dark));
334
+ --color-status-warning-base: var(--lightningcss-light, var(--color-status-warning-base-light)) var(--lightningcss-dark, var(--color-status-warning-base-dark));
335
+ --color-status-warning-surface: var(--lightningcss-light, var(--color-status-warning-surface-light)) var(--lightningcss-dark, var(--color-status-warning-surface-dark));
336
+ --color-status-warning-hover: var(--lightningcss-light, var(--color-status-warning-hover-light)) var(--lightningcss-dark, var(--color-status-warning-hover-light));
337
+ --color-status-warning-contrast-lightness: var(--lightningcss-light, var(--color-status-warning-contrast-lightness-light)) var(--lightningcss-dark, var(--color-status-warning-contrast-lightness-dark));
338
+ --color-status-warning-contrast: var(--lightningcss-light, var(--color-status-warning-contrast-light)) var(--lightningcss-dark, var(--color-status-warning-contrast-dark));
339
+ --color-status-danger-emphasis: var(--lightningcss-light, var(--color-status-danger-emphasis-light)) var(--lightningcss-dark, var(--color-status-danger-emphasis-dark));
340
+ --color-status-danger-base: var(--lightningcss-light, var(--color-status-danger-base-light)) var(--lightningcss-dark, var(--color-status-danger-base-dark));
341
+ --color-status-danger-surface: var(--lightningcss-light, var(--color-status-danger-surface-light)) var(--lightningcss-dark, var(--color-status-danger-surface-dark));
342
+ --color-status-danger-hover: var(--lightningcss-light, var(--color-status-danger-hover-light)) var(--lightningcss-dark, var(--color-status-danger-hover-light));
343
+ --color-status-danger-contrast-lightness: var(--lightningcss-light, var(--color-status-danger-contrast-lightness-light)) var(--lightningcss-dark, var(--color-status-danger-contrast-lightness-dark));
344
+ --color-status-danger-contrast: var(--lightningcss-light, var(--color-status-danger-contrast-light)) var(--lightningcss-dark, var(--color-status-danger-contrast-dark));
345
+ --shadow-color: var(--lightningcss-light, var(--shadow-color-light)) var(--lightningcss-dark, var(--shadow-color-dark));
346
+ --shadow-inset: var(--lightningcss-light, var(--shadow-inset-light)) var(--lightningcss-dark, var(--shadow-inset-dark));
347
+ --shadow-nearest: var(--lightningcss-light, var(--shadow-nearest-light)) var(--lightningcss-dark, var(--shadow-nearest-dark));
348
+ --shadow-near: var(--lightningcss-light, var(--shadow-near-light)) var(--lightningcss-dark, var(--shadow-near-dark));
349
+ --shadow-medium: var(--lightningcss-light, var(--shadow-medium-light)) var(--lightningcss-dark, var(--shadow-medium-dark));
350
+ --shadow-far: var(--lightningcss-light, var(--shadow-far-light)) var(--lightningcss-dark, var(--shadow-far-dark));
351
+ --triangle-down-url: var(--lightningcss-light, var(--triangle-down-url-light)) var(--lightningcss-dark, var(--triangle-down-url-dark));
352
+ --triangle-up-url: var(--lightningcss-light, var(--triangle-up-url-light)) var(--lightningcss-dark, var(--triangle-up-url-dark));
353
+ }
354
+ }
355
+
356
+ @layer reset {
357
+ *, :after, :before {
358
+ box-sizing: border-box;
359
+ accent-color: var(--color-brand-primary-base);
360
+ font-kerning: normal;
361
+ -moz-osx-font-smoothing: grayscale;
362
+ -webkit-font-smoothing: antialiased;
363
+ }
364
+
365
+ :where(:not(dialog)) {
366
+ margin: 0;
367
+ }
368
+
369
+ :where(:not(fieldset, progress, meter)) {
370
+ background-repeat: no-repeat;
371
+ background-origin: border-box;
372
+ border-style: solid;
373
+ border-width: 0;
374
+ }
375
+
376
+ :where(:focus-visible) {
377
+ transition: outline-offset var(--transition-duration-short) var(--ease-2);
378
+ }
379
+
380
+ :where(:focus-visible, :focus) {
381
+ outline: var(--border-width-medium) solid var(--color-brand-primary-base);
382
+ outline-offset: 1ch;
383
+ }
384
+
385
+ :where(:focus:not(:focus-visible)) {
386
+ outline: none;
387
+ }
388
+
389
+ :where(html) {
390
+ -webkit-text-size-adjust: none;
391
+ -moz-text-size-adjust: none;
392
+ text-size-adjust: none;
393
+ inline-size: 100%;
394
+ text-rendering: optimizeSpeed;
395
+ block-size: 100%;
396
+ min-block-size: 100vh;
397
+ }
398
+
399
+ :where(body) {
400
+ font-weight: var(--font-weight-default);
401
+ color: var(--color-text-base);
402
+ background-color: var(--color-surface-muted);
403
+ font-family: var(--font-family-default);
404
+ line-height: var(--line-height-base);
405
+ font-style: normal;
406
+ }
407
+
408
+ :where(body, h1, h2, h3, h4, p, figure, blockquote, dl, dd) {
409
+ margin: 0;
410
+ }
411
+
412
+ :where(ul[role="list"], ol[role="list"]) {
413
+ list-style: none;
414
+ }
415
+
416
+ :where(h1, h2, h3, h4) {
417
+ text-wrap: balance;
418
+ }
419
+
420
+ :where(a:not([class])) {
421
+ -webkit-text-decoration-skip-ink: auto;
422
+ text-decoration-skip-ink: auto;
423
+ color: currentColor;
424
+ }
425
+
426
+ :where(img, svg, video, canvas, audio, iframe, embed, object) {
427
+ display: block;
428
+ }
429
+
430
+ :where(img, svg, video) {
431
+ block-size: auto;
432
+ max-inline-size: 100%;
433
+ }
434
+
435
+ :where(figure) {
436
+ place-items: center;
437
+ gap: 0;
438
+ display: grid;
439
+ }
440
+
441
+ :where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
442
+ cursor: pointer;
443
+ touch-action: manipulation;
444
+ -webkit-tap-highlight-color: transparent;
445
+ }
446
+
447
+ :where(input, button, textarea, select) {
448
+ font: inherit;
449
+ color: inherit;
450
+ letter-spacing: inherit;
451
+ }
452
+
453
+ :where(input[type="file"])::-webkit-file-upload-button {
454
+ font: inherit;
455
+ color: inherit;
456
+ letter-spacing: inherit;
457
+ }
458
+
459
+ :where(label:not(class) + input, label:not(class) + select, label:not(class) + textarea) {
460
+ display: block;
461
+ }
462
+
463
+ :where(p, summary) {
464
+ max-inline-size: var(--measure-base);
465
+ font-size: inherit;
466
+ line-height: var(--line-height-base);
467
+ margin: 0;
468
+ }
469
+
470
+ :where(p) {
471
+ text-wrap: pretty;
472
+ }
473
+ }
474
+
475
+ @layer base {
476
+ :where(dt) {
477
+ font-weight: var(--font-weight-active);
478
+ color: var(--color-text-base);
479
+ }
480
+
481
+ :where(dd) {
482
+ font-weight: var(--font-weight-default);
483
+ color: var(--color-text-base);
484
+ }
485
+
486
+ :where(dd):not(:last-of-type) {
487
+ border-bottom: var(--border-width-thin) solid var(--color-border-muted);
488
+ padding-block-end: .5lh;
489
+ }
490
+
491
+ :where(dl:not([class]), .nc-description-list) {
492
+ word-break: break-word;
493
+ grid-template-columns: .25fr .75fr;
494
+ align-items: flex-start;
495
+ row-gap: .5lh;
496
+ inline-size: 100%;
497
+ max-inline-size: 100%;
498
+ display: grid;
499
+ container: description-list / inline-size;
500
+ }
501
+
502
+ :where(dd, dt) {
503
+ max-inline-size: var(--measure-base);
504
+ grid-column: 1 / span 2;
505
+ }
506
+
507
+ @container description-list (width >= 30rem) {
508
+ :where(dt) {
509
+ grid-column: 1 / 1;
510
+ min-block-size: 100%;
511
+ padding-block-end: 0;
512
+ padding-inline-end: 2ch;
513
+ }
514
+
515
+ :where(dt):not(:last-of-type) {
516
+ border-bottom: var(--border-width-thin) solid var(--color-border-muted);
517
+ padding-block-end: .5lh;
518
+ }
519
+
520
+ :where(dd) {
521
+ grid-column: 2 / 2;
522
+ min-block-size: 100%;
523
+ }
524
+ }
525
+
526
+ :where(small) {
527
+ font-size: var(--font-size-small);
528
+ }
529
+
530
+ :where(figure) {
531
+ border-radius: var(--border-radius-medium);
532
+ }
533
+
534
+ :where(figure) :where(img, picture) {
535
+ border-start-start-radius: inherit;
536
+ border-start-end-radius: inherit;
537
+ }
538
+
539
+ :where(figure) :where(figcaption) {
540
+ border-end-end-radius: inherit;
541
+ border-end-start-radius: inherit;
542
+ }
543
+
544
+ :where(figcaption) {
545
+ font-family: var(--font-family-sans);
546
+ font-weight: var(--font-weight-default);
547
+ line-height: var(--line-height-base);
548
+ color: var(--color-surface-subtle);
549
+ background-color: var(--color-text-base);
550
+ padding: .3lh 1ch;
551
+ display: block;
552
+ }
553
+
554
+ :where(details) {
555
+ --p-x-details: 2ch;
556
+ --p-y-details: .75lh;
557
+ background-color: var(--color-surface-subtle);
558
+ border-radius: var(--border-radius-medium);
559
+ border: var(--border-width-thin) solid var(--color-border-base);
560
+ inline-size: 100%;
561
+ }
562
+
563
+ :where(details) > * {
564
+ padding-inline: var(--p-x-details);
565
+ }
566
+
567
+ :where(details) > :last-child {
568
+ padding-block-end: var(--p-y-details);
569
+ }
570
+
571
+ :where(details) > summary {
572
+ cursor: pointer;
573
+ color: var(--color-text-base);
574
+ inline-size: 100%;
575
+ font-weight: var(--font-weight-strong);
576
+ padding-inline: var(--p-x-details);
577
+ padding-block: var(--p-y-details);
578
+ }
579
+
580
+ .note, blockquote {
581
+ inline-size: 100%;
582
+ color: var(--color-text-base);
583
+ font-family: var(--font-family-serif);
584
+ quotes: auto;
585
+ font-size: var(--font-size-large);
586
+ margin-inline: 0;
587
+ padding: 0;
588
+ padding-inline-start: 2ch;
589
+ position: relative;
590
+ }
591
+
592
+ :is(.note, blockquote) p {
593
+ max-inline-size: var(--measure-base);
594
+ }
595
+
596
+ :is(.note, blockquote) p:first-of-type:before {
597
+ content: open-quote;
598
+ }
599
+
600
+ :is(.note, blockquote) p:last-of-type:after {
601
+ content: close-quote;
602
+ }
603
+
604
+ :is(.note, blockquote) cite {
605
+ font-family: var(--font-family-default);
606
+ font-size: var(--font-size-base);
607
+ max-inline-size: max-content;
608
+ color: color-mix(in oklch, currentColor calc(var(--transparency-weaker) * 100%), transparent);
609
+ margin-block-start: var(--spacing-near);
610
+ display: block;
611
+ }
612
+
613
+ :is(.note, blockquote) cite:before {
614
+ content: "—";
615
+ margin-inline-end: .5ch;
616
+ }
617
+
618
+ cite {
619
+ font-family: var(--font-family-serif);
620
+ font-style: normal;
621
+ }
622
+
623
+ :where(hr) {
624
+ border-top: var(--border-width-medium) solid var(--color-border-base);
625
+ block-size: 0;
626
+ inline-size: 100%;
627
+ }
628
+
629
+ :where(h1, h2, h3, h4, h5, h6) {
630
+ line-height: var(--line-height-small);
631
+ color: inherit;
632
+ max-inline-size: 100%;
633
+ font-weight: var(--font-weight-heading);
634
+ }
635
+
636
+ :where(h1) {
637
+ font-size: var(--font-size-display);
638
+ }
639
+
640
+ :where(h2) {
641
+ font-size: var(--font-size-largest);
642
+ }
643
+
644
+ :where(h3) {
645
+ font-size: var(--font-size-large);
646
+ }
647
+
648
+ :where(h4) {
649
+ font-size: var(--font-size-base);
650
+ }
651
+
652
+ :where(h5) {
653
+ font-size: var(--font-size-small);
654
+ }
655
+
656
+ :where(h6) {
657
+ font-size: var(--font-size-smallest);
658
+ }
659
+
660
+ ::marker {
661
+ color: var(--color-brand-primary-base);
662
+ }
663
+
664
+ :where() {
665
+ background-color: var(--color-brand-primary-base);
666
+ color: var(--color-surface-base);
667
+ }
668
+
669
+ :where(a, .nc-link) {
670
+ color: inherit;
671
+ font-family: var(--font-family-link);
672
+ text-underline-offset: .25lh;
673
+ font-weight: var(--font-weight-default);
674
+ cursor: pointer;
675
+ letter-spacing: var(--tracking-tight);
676
+ text-decoration: underline;
677
+ text-decoration-thickness: from-font;
678
+ }
679
+
680
+ :where(a, .nc-link):visited {
681
+ opacity: .72;
682
+ }
683
+
684
+ :where(a, .nc-link):hover {
685
+ -webkit-text-decoration-color: var(--color-brand-primary-base);
686
+ text-decoration-color: var(--color-brand-primary-base);
687
+ }
688
+
689
+ :where(em, i) {
690
+ font-family: var(--font-family-serif);
691
+ }
692
+
693
+ :where(strong, b) {
694
+ font-weight: var(--font-weight-strong);
695
+ }
696
+
697
+ :where(dfn, var) {
698
+ font-family: var(--font-family-mono);
699
+ letter-spacing: var(--tracking-tight);
700
+ font-weight: var(--font-weight-default);
701
+ }
702
+
703
+ :where([aria-disabled="true"], .disabled, :disabled) {
704
+ color: inherit;
705
+ opacity: 1;
706
+ cursor: not-allowed;
707
+ filter: contrast(.64) opacity(.64);
708
+ }
709
+
710
+ :where(del, ins, mark, code, kbd, var) {
711
+ border-radius: var(--border-radius-small);
712
+ line-height: inherit;
713
+ -webkit-box-decoration-break: clone;
714
+ box-decoration-break: clone;
715
+ padding-inline: .5ch;
716
+ }
717
+
718
+ :where(code, kbd, var) {
719
+ font-family: var(--font-family-mono);
720
+ letter-spacing: 0;
721
+ font-weight: var(--font-weight-default);
722
+ -webkit-hyphens: none;
723
+ hyphens: none;
724
+ tab-size: 4;
725
+ text-align: left;
726
+ word-spacing: normal;
727
+ word-break: normal;
728
+ word-wrap: normal;
729
+ max-inline-size: fit-content;
730
+ padding-block: .125lh;
731
+ font-style: normal;
732
+ }
733
+
734
+ :where(code) {
735
+ background: var(--color-surface-subtle);
736
+ }
737
+
738
+ :where(var) {
739
+ background: var(--color-brand-primary-surface);
740
+ color: var(--color-brand-primary-emphasis);
741
+ }
742
+
743
+ :where(kbd) {
744
+ background: var(--color-surface-subtle);
745
+ border: var(--border-width-thin) solid var(--color-border-base);
746
+ box-shadow: var(--shadow-nearest);
747
+ font-weight: var(--font-weight-active);
748
+ }
749
+
750
+ :where(pre) {
751
+ inline-size: 100%;
752
+ color: var(--color-text-base);
753
+ border: var(--border-width-medium) solid var(--color-border-base);
754
+ border-radius: var(--border-radius-medium);
755
+ background: var(--color-surface-subtle);
756
+ -webkit-overflow-scrolling: touch;
757
+ padding: .5lh 2ch;
758
+ overflow-x: auto;
759
+ }
760
+
761
+ :where(pre) code {
762
+ white-space: pre;
763
+ background: none;
764
+ border-radius: 0;
765
+ padding: 0;
766
+ }
767
+
768
+ :where(table) {
769
+ --_nc-table-border-radius: var(--nc-table-border-radius, var(--border-radius-medium));
770
+ border-collapse: separate;
771
+ border-spacing: 0;
772
+ text-align: left;
773
+ border: var(--border-width-medium) solid var(--color-border-base);
774
+ border-radius: var(--_nc-table-border-radius);
775
+ inline-size: 100%;
776
+ }
777
+
778
+ :where(table > thead th:first-child) {
779
+ border-start-start-radius: var(--_nc-table-border-radius);
780
+ }
781
+
782
+ :where(table > thead th:last-child) {
783
+ border-start-end-radius: var(--_nc-table-border-radius);
784
+ }
785
+
786
+ :where(table > tfoot th:first-child) {
787
+ border-end-start-radius: var(--_nc-table-border-radius);
788
+ }
789
+
790
+ :where(table > tfoot th:last-child) {
791
+ border-end-end-radius: var(--_nc-table-border-radius);
792
+ }
793
+
794
+ :where(td, th) {
795
+ line-height: var(--line-height-small);
796
+ white-space: nowrap;
797
+ font-variant-numeric: tabular-nums;
798
+ padding: .4lh 1ch;
799
+ }
800
+
801
+ :where(td), :where(thead th) {
802
+ border-block-end: var(--border-width-thin) solid var(--color-border-muted);
803
+ }
804
+
805
+ :where(tfoot th) {
806
+ border-block-start: var(--border-width-thin) solid var(--color-border-muted);
807
+ }
808
+
809
+ :where(th) {
810
+ font-weight: var(--font-weight-active);
811
+ color: var(--color-text-muted);
812
+ background-color: var(--color-surface-subtle);
813
+ }
814
+
815
+ :where(tbody tr:hover) {
816
+ background: var(--color-brand-primary-hover);
817
+ }
818
+
819
+ :where(caption) {
820
+ color: var(--color-text-base);
821
+ }
822
+
823
+ :where(tr:has(td) th) {
824
+ border-block-end: var(--border-width-thin) solid var(--color-border-muted);
825
+ border-inline-end: var(--border-width-thin) solid var(--color-border-muted);
826
+ }
827
+
828
+ :where(tr:last-child:has(td) th) {
829
+ border-block-end: none;
830
+ }
831
+
832
+ :where(tr:last-child > td) {
833
+ border: none;
834
+ }
835
+
836
+ :where(tbody tr:nth-child(2n) > td) {
837
+ background-color: var(--color-surface-muted);
838
+ }
839
+
840
+ :target {
841
+ scroll-margin-block-start: 2ex;
842
+ }
843
+
844
+ :where(del) {
845
+ color: var(--color-status-danger-text);
846
+ -webkit-text-decoration-color: var(--color-status-danger-text);
847
+ text-decoration-color: var(--color-status-danger-text);
848
+ background: var(--color-status-danger-surface);
849
+ }
850
+
851
+ :where(ins) {
852
+ color: var(--color-status-success-text);
853
+ -webkit-text-decoration-color: var(--color-status-success-text);
854
+ text-decoration-color: var(--color-status-success-text);
855
+ background: var(--color-status-success-surface);
856
+ }
857
+
858
+ :where(mark) {
859
+ color: var(--color-brand-primary-emphasis);
860
+ background: var(--color-brand-primary-surface);
861
+ }
862
+
863
+ :where(ul, ol) {
864
+ padding-inline-start: 2ch;
865
+ }
866
+
867
+ :where(li + li), :where(li > :is(ul, ol)) {
868
+ margin-top: .5lh;
869
+ }
870
+ }
871
+
872
+ @layer utils {
873
+ :where(.nc-box) {
874
+ padding: var(--spacing-base);
875
+ }
876
+
877
+ :where(.nc-box).-bordered {
878
+ border: var(--border-width-thin) solid var(--border, var(--color-border-base));
879
+ border-radius: var(--border-radius-medium);
880
+ }
881
+
882
+ :where(.nc-box).-tiny {
883
+ padding: var(--spacing-tiny);
884
+ }
885
+
886
+ :where(.nc-box).-nearest {
887
+ padding: var(--spacing-nearest);
888
+ }
889
+
890
+ :where(.nc-box).-near {
891
+ padding: var(--spacing-near);
892
+ }
893
+
894
+ :where(.nc-box).-base {
895
+ padding: var(--spacing-base);
896
+ }
897
+
898
+ :where(.nc-box).-far {
899
+ padding: var(--spacing-far);
900
+ }
901
+
902
+ :where(.nc-box).-farthest {
903
+ padding: var(--spacing-farthest);
904
+ }
905
+
906
+ :where(.nc-stack) {
907
+ gap: var(--spacing-base);
908
+ flex-direction: column;
909
+ align-items: flex-start;
910
+ display: flex;
911
+ }
912
+
913
+ :where(.nc-stack).-inherit {
914
+ gap: var(--stack-gap, var(--spacing-base));
915
+ }
916
+
917
+ :where(.nc-stack).-stretched {
918
+ inline-size: 100%;
919
+ }
920
+
921
+ :where(.nc-stack).-stretched > * {
922
+ inline-size: 100%;
923
+ }
924
+
925
+ :where(.nc-stack).-contained > * {
926
+ max-inline-size: 100%;
927
+ }
928
+
929
+ :where(.nc-flow) > * + * {
930
+ margin-block-start: var(--flow-gap, .6lh);
931
+ }
932
+
933
+ :where(.nc-flow) > * {
934
+ max-inline-size: var(--flow-base-meassure, 72ch);
935
+ }
936
+
937
+ :where(.nc-flow) > :is(h1, h2, h3, h4, h5, h6) {
938
+ max-inline-size: var(--flow-headline-meassure, 32ch);
939
+ --flow-gap: 1.3lh;
940
+ }
941
+
942
+ :where(.nc-flow) > :is(h1, h2, h3, h4, h5, h6) + p {
943
+ --flow-gap: .5lh;
944
+ }
945
+
946
+ :where(.nc-flow) > p + p {
947
+ --flow-gap: .8lh;
948
+ }
949
+
950
+ :where(.nc-flow) > figure {
951
+ margin-block: 1lh;
952
+ margin-inline: 0;
953
+ }
954
+
955
+ :where(.nc-flow) .breakAfter {
956
+ margin-block-end: auto;
957
+ }
958
+
959
+ :where(.nc-center) {
960
+ box-sizing: content-box;
961
+ max-inline-size: var(--center-measure, max-content);
962
+ padding-inline: var(--center-padding, 0);
963
+ margin-inline: auto;
964
+ position: relative;
965
+ }
966
+
967
+ :where(.nc-region) {
968
+ padding-block: var(--region-space, var(--spacing-farthest));
969
+ }
970
+
971
+ :where(.nc-cluster) {
972
+ gap: var(--spacing-base);
973
+ flex-flow: wrap;
974
+ align-items: flex-start;
975
+ display: flex;
976
+ }
977
+
978
+ :where(.nc-cluster).-inherit {
979
+ gap: var(--cluster-gap, var(--spacing-base));
980
+ }
981
+
982
+ :where(.nc-cluster).-centered {
983
+ align-items: center;
984
+ }
985
+
986
+ :where(.nc-cluster).-nowrap {
987
+ flex-wrap: nowrap;
988
+ }
989
+
990
+ :where(.nc-cluster).-between {
991
+ justify-content: space-between;
992
+ }
993
+
994
+ :where(.nc-with-sidebar) {
995
+ align-items: flex-start;
996
+ gap: var(--with-sidebar-gap, var(--spacing-far));
997
+ flex-wrap: wrap;
998
+ inline-size: 100%;
999
+ display: flex;
1000
+ }
1001
+
1002
+ :where(.nc-with-sidebar) > [data-aside] {
1003
+ flex-grow: 1;
1004
+ flex-basis: var(--with-sidebar-target-width, 20rem);
1005
+ min-width: min-content;
1006
+ }
1007
+
1008
+ :where(.nc-with-sidebar) > [data-grow] {
1009
+ min-width: var(--with-sidebar-min-size, 50%);
1010
+ flex-grow: 999;
1011
+ flex-basis: 0;
1012
+ }
1013
+
1014
+ :where(.nc-with-sidebar)[data-direction="rtl"] {
1015
+ flex-direction: row-reverse;
1016
+ }
1017
+
1018
+ :where(.nc-with-sidebar).-centered {
1019
+ align-items: center;
1020
+ }
1021
+
1022
+ :where(.nc-grid) {
1023
+ grid-template-columns: repeat(var(--grid-placement, auto-fill), minmax(var(--grid-min-item-size, 16rem), 1fr));
1024
+ gap: var(--grid-gap, var(--spacing-base));
1025
+ display: grid;
1026
+ }
1027
+
1028
+ :where(.nc-grid)[data-layout="50-50"] {
1029
+ --grid-placement: auto-fit;
1030
+ --grid-min-item-size: clamp(16rem, 50vw, 33rem);
1031
+ }
1032
+
1033
+ :where(.nc-grid)[data-layout="thirds"] {
1034
+ --grid-placement: auto-fit;
1035
+ --grid-min-item-size: clamp(16rem, 33%, 20rem);
1036
+ }
1037
+
1038
+ :where(.nc-switcher) {
1039
+ gap: var(--switcher-gap, var(--spacing-base));
1040
+ align-items: var(--switcher-vertical-alignment, flex-start);
1041
+ flex-wrap: wrap;
1042
+ display: flex;
1043
+ }
1044
+
1045
+ :where(.nc-switcher) > * {
1046
+ flex-grow: 1;
1047
+ flex-basis: calc((var(--switcher-target-container-width, 40rem) - 100%) * 999);
1048
+ }
1049
+
1050
+ :where(.nc-switcher) > :nth-child(n+4) {
1051
+ flex-basis: 100%;
1052
+ }
1053
+
1054
+ :where(.nc-pile) {
1055
+ grid: [pile] 1fr / [pile] 1fr;
1056
+ place-items: center;
1057
+ display: grid;
1058
+ }
1059
+
1060
+ :where(.nc-pile) > * {
1061
+ grid-area: pile;
1062
+ }
1063
+
1064
+ :where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-inherit {
1065
+ gap: inherit;
1066
+ }
1067
+
1068
+ :where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-tiny {
1069
+ gap: var(--spacing-tiny);
1070
+ }
1071
+
1072
+ :where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-nearest {
1073
+ gap: var(--spacing-nearest);
1074
+ }
1075
+
1076
+ :where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-near {
1077
+ gap: var(--spacing-near);
1078
+ }
1079
+
1080
+ :where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-base {
1081
+ gap: var(--spacing-base);
1082
+ }
1083
+
1084
+ :where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-far {
1085
+ gap: var(--spacing-far);
1086
+ }
1087
+
1088
+ :where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-farthest {
1089
+ gap: var(--spacing-farthest);
1090
+ }
1091
+
1092
+ :where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-nogap {
1093
+ gap: 0;
1094
+ }
1095
+
1096
+ :where(.nc-ram-grid) {
1097
+ --_nc-ram-grid-gap-row: var(--nc-ram-grid-gap-row, var(--_nc-ram-grid-gap));
1098
+ --_nc-ram-grid-gap-column: var(--nc-ram-grid-gap-column, var(--_nc-ram-grid-gap));
1099
+ --_nc-ram-grid-gap: var(--nc-ram-grid-gap, var(--spacing-near));
1100
+ --_nc-ram-grid-min-width: var(--nc-ram-grid-min-width, 150px);
1101
+ --_nc-ram-grid-repeat-count: var(--nc-ram-grid-repeat-count, auto-fit);
1102
+ row-gap: var(--_nc-ram-grid-gap-row);
1103
+ column-gap: var(--_nc-ram-grid-gap-column);
1104
+ grid-template-columns: repeat(var(--_nc-ram-grid-repeat-count), minmax(min(var(--_nc-ram-grid-min-width), 100%), 1fr));
1105
+ display: grid;
1106
+ }
1107
+ }
1108
+
1109
+ @layer components, helpers;
1110
+
1111
+ @layer config.easings {
1112
+ :where(html) {
1113
+ --ease-1: cubic-bezier(.25, 0, .5, 1);
1114
+ --ease-2: cubic-bezier(.25, 0, .4, 1);
1115
+ --ease-3: cubic-bezier(.25, 0, .3, 1);
1116
+ --ease-4: cubic-bezier(.25, 0, .2, 1);
1117
+ --ease-5: cubic-bezier(.25, 0, .1, 1);
1118
+ --ease-in-1: cubic-bezier(.25, 0, 1, 1);
1119
+ --ease-in-2: cubic-bezier(.5, 0, 1, 1);
1120
+ --ease-in-3: cubic-bezier(.7, 0, 1, 1);
1121
+ --ease-in-4: cubic-bezier(.9, 0, 1, 1);
1122
+ --ease-in-5: cubic-bezier(1, 0, 1, 1);
1123
+ --ease-out-1: cubic-bezier(0, 0, .75, 1);
1124
+ --ease-out-2: cubic-bezier(0, 0, .5, 1);
1125
+ --ease-out-3: cubic-bezier(0, 0, .3, 1);
1126
+ --ease-out-4: cubic-bezier(0, 0, .1, 1);
1127
+ --ease-out-5: cubic-bezier(0, 0, 0, 1);
1128
+ --ease-in-out-1: cubic-bezier(.1, 0, .9, 1);
1129
+ --ease-in-out-2: cubic-bezier(.3, 0, .7, 1);
1130
+ --ease-in-out-3: cubic-bezier(.5, 0, .5, 1);
1131
+ --ease-in-out-4: cubic-bezier(.7, 0, .3, 1);
1132
+ --ease-in-out-5: cubic-bezier(.9, 0, .1, 1);
1133
+ --ease-elastic-out-1: cubic-bezier(.5, .75, .75, 1.25);
1134
+ --ease-elastic-out-2: cubic-bezier(.5, 1, .75, 1.25);
1135
+ --ease-elastic-out-3: cubic-bezier(.5, 1.25, .75, 1.25);
1136
+ --ease-elastic-out-4: cubic-bezier(.5, 1.5, .75, 1.25);
1137
+ --ease-elastic-out-5: cubic-bezier(.5, 1.75, .75, 1.25);
1138
+ --ease-elastic-in-1: cubic-bezier(.5, -.25, .75, 1);
1139
+ --ease-elastic-in-2: cubic-bezier(.5, -.5, .75, 1);
1140
+ --ease-elastic-in-3: cubic-bezier(.5, -.75, .75, 1);
1141
+ --ease-elastic-in-4: cubic-bezier(.5, -1, .75, 1);
1142
+ --ease-elastic-in-5: cubic-bezier(.5, -1.25, .75, 1);
1143
+ --ease-elastic-in-out-1: cubic-bezier(.5, -.1, .1, 1.5);
1144
+ --ease-elastic-in-out-2: cubic-bezier(.5, -.3, .1, 1.5);
1145
+ --ease-elastic-in-out-3: cubic-bezier(.5, -.5, .1, 1.5);
1146
+ --ease-elastic-in-out-4: cubic-bezier(.5, -.7, .1, 1.5);
1147
+ --ease-elastic-in-out-5: cubic-bezier(.5, -.9, .1, 1.5);
1148
+ --ease-step-1: steps(2);
1149
+ --ease-step-2: steps(3);
1150
+ --ease-step-3: steps(4);
1151
+ --ease-step-4: steps(7);
1152
+ --ease-step-5: steps(10);
1153
+ --ease-elastic-1: var(--ease-elastic-out-1);
1154
+ --ease-elastic-2: var(--ease-elastic-out-2);
1155
+ --ease-elastic-3: var(--ease-elastic-out-3);
1156
+ --ease-elastic-4: var(--ease-elastic-out-4);
1157
+ --ease-elastic-5: var(--ease-elastic-out-5);
1158
+ --ease-squish-1: var(--ease-elastic-in-out-1);
1159
+ --ease-squish-2: var(--ease-elastic-in-out-2);
1160
+ --ease-squish-3: var(--ease-elastic-in-out-3);
1161
+ --ease-squish-4: var(--ease-elastic-in-out-4);
1162
+ --ease-squish-5: var(--ease-elastic-in-out-5);
1163
+ --ease-spring-1: linear(0, .006, .025 2.8%, .101 6.1%, .539 18.9%, .721 25.3%, .849 31.5%, .937 38.1%, .968 41.8%, .991 45.7%, 1.006 50.1%, 1.015 55%, 1.017 63.9%, 1.001);
1164
+ --ease-spring-2: linear(0, .007, .029 2.2%, .118 4.7%, .625 14.4%, .826 19%, .902, .962, 1.008 26.1%, 1.041 28.7%, 1.064 32.1%, 1.07 36%, 1.061 40.5%, 1.015 53.4%, .999 61.6%, .995 71.2%, 1);
1165
+ --ease-spring-3: linear(0, .009, .035 2.1%, .141 4.4%, .723 12.9%, .938 16.7%, 1.017, 1.077, 1.121, 1.149 24.3%, 1.159, 1.163, 1.161, 1.154 29.9%, 1.129 32.8%, 1.051 39.6%, 1.017 43.1%, .991, .977 51%, .974 53.8%, .975 57.1%, .997 69.8%, 1.003 76.9%, 1);
1166
+ --ease-spring-4: linear(0, .009, .037 1.7%, .153 3.6%, .776 10.3%, 1.001, 1.142 16%, 1.185, 1.209 19%, 1.215 19.9% 20.8%, 1.199, 1.165 25%, 1.056 30.3%, 1.008 33%, .973, .955 39.2%, .953 41.1%, .957 43.3%, .998 53.3%, 1.009 59.1% 63.7%, .998 78.9%, 1);
1167
+ --ease-spring-5: linear(0, .01, .04 1.6%, .161 3.3%, .816 9.4%, 1.046, 1.189 14.4%, 1.231, 1.254 17%, 1.259, 1.257 18.6%, 1.236, 1.194 22.3%, 1.057 27%, .999 29.4%, .955 32.1%, .942, .935 34.9%, .933, .939 38.4%, 1 47.3%, 1.011, 1.017 52.6%, 1.016 56.4%, 1 65.2%, .996 70.2%, 1.001 87.2%, 1);
1168
+ --ease-bounce-1: linear(0, .004, .016, .035, .063, .098, .141, .191, .25, .316, .391 36.8%, .563, .766, 1 58.8%, .946, .908 69.1%, .895, .885, .879, .878, .879, .885, .895, .908 89.7%, .946, 1);
1169
+ --ease-bounce-2: linear(0, .004, .016, .035, .063, .098, .141 15.1%, .25, .391, .562, .765, 1, .892 45.2%, .849, .815, .788, .769, .757, .753, .757, .769, .788, .815, .85, .892 75.2%, 1 80.2%, .973, .954, .943, .939, .943, .954, .973, 1);
1170
+ --ease-bounce-3: linear(0, .004, .016, .035, .062, .098, .141 11.4%, .25, .39, .562, .764, 1 30.3%, .847 34.8%, .787, .737, .699, .672, .655, .65, .656, .672, .699, .738, .787, .847 61.7%, 1 66.2%, .946, .908, .885 74.2%, .879, .878, .879, .885 79.5%, .908, .946, 1 87.4%, .981, .968, .96, .957, .96, .968, .981, 1);
1171
+ --ease-bounce-4: linear(0, .004, .016 3%, .062, .141, .25, .391, .562 18.2%, 1 24.3%, .81, .676 32.3%, .629, .595, .575, .568, .575, .595, .629, .676 48.2%, .811, 1 56.2%, .918, .86, .825, .814, .825, .86, .918, 1 77.2%, .94 80.6%, .925, .92, .925, .94 87.5%, 1 90.9%, .974, .965, .974, 1);
1172
+ --ease-bounce-5: linear(0, .004, .016 2.5%, .063, .141, .25 10.1%, .562, 1 20.2%, .783, .627, .534 30.9%, .511, .503, .511, .534 38%, .627, .782, 1 48.7%, .892, .815, .769 56.3%, .757, .753, .757, .769 61.3%, .815, .892, 1 68.8%, .908 72.4%, .885, .878, .885, .908 79.4%, 1 83%, .954 85.5%, .943, .939, .943, .954 90.5%, 1 93%, .977, .97, .977, 1);
1173
+ --transition-duration-instant: 0s;
1174
+ --transition-duration-short: .1s;
1175
+ --transition-duration-base: .2s;
1176
+ --transition-duration-long: .3s;
1177
+ --transition-duration-entry: 0s;
1178
+ --transition-duration-exit: 0s;
1179
+ --transition-target-scale: .9;
1180
+ }
1181
+
1182
+ @media (prefers-reduced-motion: reduce) {
1183
+ :where(html) {
1184
+ --transition-duration-instant: 0s;
1185
+ --transition-duration-short: 0s;
1186
+ --transition-duration-base: 0s;
1187
+ --transition-duration-long: 0s;
1188
+ --transition-duration-entry: 0s;
1189
+ --transition-duration-exit: 0s;
1190
+ }
1191
+ }
1192
+ }
1193
+
1194
+ @layer helpers.theme {
1195
+ * {
1196
+ --text: var(--color-text-muted);
1197
+ --color: var(--color-text-muted);
1198
+ --surface: transparent;
1199
+ --border: var(--color-border-muted);
1200
+ --text-hover: var(--color-text-on-emphasis);
1201
+ --color-hover: var(--color-text-on-emphasis);
1202
+ --surface-hover: var(--color-surface-emphasis);
1203
+ --border-hover: var(--color-border-base);
1204
+ }
1205
+
1206
+ .-primary {
1207
+ --text: var(--color-brand-primary-emphasis);
1208
+ --color: var(--color-brand-primary-base);
1209
+ --surface: var(--color-brand-primary-surface);
1210
+ --border: var(--color-brand-primary-base);
1211
+ --text-hover: var(--color-brand-primary-contrast);
1212
+ --color-hover: var(--color-brand-primary-contrast);
1213
+ --surface-hover: var(--color-brand-primary-base);
1214
+ --border-hover: var(--color-brand-primary-base);
1215
+ }
1216
+
1217
+ .-secondary {
1218
+ --text: var(--color-brand-secondary-emphasis);
1219
+ --color: var(--color-brand-secondary-base);
1220
+ --surface: var(--color-brand-secondary-surface);
1221
+ --border: var(--color-brand-secondary-base);
1222
+ --text-hover: var(--color-brand-secondary-contrast);
1223
+ --color-hover: var(--color-brand-secondary-contrast);
1224
+ --surface-hover: var(--color-brand-secondary-base);
1225
+ --border-hover: var(--color-brand-secondary-base);
1226
+ }
1227
+
1228
+ .-neutral {
1229
+ --text: var(--color-text-muted);
1230
+ --color: var(--color-text-muted);
1231
+ --surface: transparent;
1232
+ --border: var(--color-border-muted);
1233
+ --text-hover: var(--color-text-on-emphasis);
1234
+ --color-hover: var(--color-text-on-emphasis);
1235
+ --surface-hover: var(--color-surface-emphasis);
1236
+ --border-hover: var(--color-border-base);
1237
+ }
1238
+
1239
+ .-muted {
1240
+ --text: var(--color-text-muted);
1241
+ --color: var(--color-text-muted);
1242
+ --surface: transparent;
1243
+ --text-hover: var(--color-text-base);
1244
+ --color-hover: var(--color-text-base);
1245
+ --surface-hover: var(--color-surface-subtle);
1246
+ --border-hover: var(--color-border-base);
1247
+ }
1248
+
1249
+ .-emphasis {
1250
+ --text: var(--color-text-on-emphasis);
1251
+ --color: var(--color-text-on-emphasis);
1252
+ --surface: var(--color-surface-emphasis);
1253
+ --border: var(--color-surface-emphasis);
1254
+ --text-hover: var(--color-text-base);
1255
+ --color-hover: var(--color-text-base);
1256
+ --surface-hover: var(--color-surface-subtle);
1257
+ --border-hover: var(--color-border-base);
1258
+ }
1259
+
1260
+ .-info {
1261
+ --text: var(--color-status-info-emphasis);
1262
+ --color: var(--color-status-info-base);
1263
+ --surface: var(--color-status-info-surface);
1264
+ --border: var(--color-status-info-base);
1265
+ --text-hover: var(--color-status-info-contrast);
1266
+ --color-hover: var(--color-status-info-contrast);
1267
+ --surface-hover: var(--color-status-info-base);
1268
+ --border-hover: var(--color-status-info-base);
1269
+ }
1270
+
1271
+ .-warning {
1272
+ --text: var(--color-status-warning-emphasis);
1273
+ --color: var(--color-status-warning-base);
1274
+ --surface: var(--color-status-warning-surface);
1275
+ --border: var(--color-status-warning-base);
1276
+ --text-hover: var(--color-status-warning-contrast);
1277
+ --color-hover: var(--color-status-warning-contrast);
1278
+ --surface-hover: var(--color-status-warning-base);
1279
+ --border-hover: var(--color-status-warning-base);
1280
+ }
1281
+
1282
+ .-danger {
1283
+ --text: var(--color-status-danger-emphasis);
1284
+ --color: var(--color-status-danger-base);
1285
+ --surface: var(--color-status-danger-surface);
1286
+ --border: var(--color-status-danger-base);
1287
+ --text-hover: var(--color-status-danger-contrast);
1288
+ --color-hover: var(--color-status-danger-contrast);
1289
+ --surface-hover: var(--color-status-danger-base);
1290
+ --border-hover: var(--color-status-danger-base);
1291
+ }
1292
+
1293
+ .-success {
1294
+ --text: var(--color-status-success-emphasis);
1295
+ --color: var(--color-status-success-base);
1296
+ --surface: var(--color-status-success-surface);
1297
+ --border: var(--color-status-success-base);
1298
+ --text-hover: var(--color-status-success-contrast);
1299
+ --color-hover: var(--color-status-success-contrast);
1300
+ --surface-hover: var(--color-status-success-base);
1301
+ --border-hover: var(--color-status-success-base);
1302
+ }
1303
+ }
1304
+
1305
+ :where(.text-assistive, .sr-only) {
1306
+ clip: rect(0 0 0 0);
1307
+ white-space: nowrap;
1308
+ border: 0;
1309
+ width: 1px;
1310
+ height: 0;
1311
+ margin: 0;
1312
+ padding: 0;
1313
+ position: absolute;
1314
+ overflow: hidden;
1315
+ }
1316
+
1317
+ :where(.break-word) {
1318
+ overflow-wrap: break-word;
1319
+ -webkit-hyphens: auto;
1320
+ hyphens: auto;
1321
+ max-inline-size: 100%;
1322
+ }
1323
+
1324
+ .full-width {
1325
+ inline-size: 100%;
1326
+ }
1327
+
1328
+ .nc-hint {
1329
+ color: var(--color-text-muted);
1330
+ font-size: var(--font-size-small);
1331
+ line-height: var(--line-height-base);
1332
+ }
1333
+
1334
+ .nc-slub {
1335
+ color: var(--color-text-subtle);
1336
+ text-transform: uppercase;
1337
+ letter-spacing: var(--tracking-wide);
1338
+ font-weight: var(--font-weight-active);
1339
+ font-size: var(--font-size-smallest);
1340
+ }
1341
+
1342
+ .allcaps {
1343
+ text-transform: capitalize;
1344
+ }
1345
+
1346
+ .strong {
1347
+ font-weight: var(--font-weight-strong);
1348
+ }
1349
+
1350
+ .font-mono {
1351
+ font-family: var(--font-family-mono);
1352
+ }
1353
+
1354
+ .font-sans {
1355
+ font-family: var(--font-family-sans);
1356
+ }
1357
+
1358
+ .font-serif {
1359
+ font-family: var(--font-family-serif);
1360
+ }
1361
+
1362
+ .font-size-display {
1363
+ font-size: var(--font-size-display);
1364
+ }
1365
+
1366
+ .font-size-largest {
1367
+ font-size: var(--font-size-largest);
1368
+ }
1369
+
1370
+ .font-size-large {
1371
+ font-size: var(--font-size-large);
1372
+ }
1373
+
1374
+ .font-size-base {
1375
+ font-size: var(--font-size-base);
1376
+ }
1377
+
1378
+ .font-size-small {
1379
+ font-size: var(--font-size-small);
1380
+ }
1381
+
1382
+ .font-size-smallest {
1383
+ font-size: var(--font-size-smallest);
1384
+ }
1385
+
1386
+ .mt-base {
1387
+ margin-block-start: var(--spacing-base);
1388
+ }
1389
+
1390
+ .mt-auto {
1391
+ margin-block-start: auto;
1392
+ }
1393
+
1394
+ .ml-auto {
1395
+ margin-inline-start: auto;
1396
+ }
1397
+
1398
+ .mr-auto {
1399
+ margin-inline-end: auto;
1400
+ }