@vireo-ai/trellis-ui 0.1.8 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -4
- package/packages/client/src/components/app/styles.css +1 -30
- package/packages/client/src/components/button/styles.css +1 -122
- package/packages/client/src/components/date-picker/styles.css +47 -77
- package/packages/client/src/components/field/styles.css +10 -0
- package/packages/client/src/components/file-upload/styles.css +0 -28
- package/packages/client/src/components/panels/styles.css +43 -0
- package/packages/client/src/components/radio/styles.css +26 -21
- package/packages/client/src/components/scroll-area/styles.css +0 -4
- package/packages/client/src/components/select/styles.css +0 -30
- package/packages/client/src/components/sidebar/styles.css +8 -0
- package/packages/client/src/components/toast/styles.css +14 -7
- package/packages/client/src/styles/components.css +1 -0
- package/packages/client/src/styles/generated/theme-fonts.css +5 -0
- package/packages/client/src/styles/generated/theme-palette.css +2656 -0
- package/packages/client/src/styles/generated/theme-runtime.css +2966 -0
- package/packages/client/src/styles/generated-sources.css +1 -1
- package/packages/client/src/styles/static.css +1 -0
- package/packages/client/src/styles/theme.css +777 -738
- package/packages/client/types/cdn.d.ts +1 -4
- package/packages/client/types/component-api.d.ts +21 -0
- package/packages/client/types/components/accordion/contract.d.ts +3 -2
- package/packages/client/types/components/accordion/index.d.ts +28 -42
- package/packages/client/types/components/accordion/machine.d.ts +131 -0
- package/packages/client/types/components/accordion/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/action/contract.d.ts +3 -3
- package/packages/client/types/components/app/contract.d.ts +25 -12
- package/packages/client/types/components/app/index.d.ts +2 -2
- package/packages/client/types/components/badge/contract.d.ts +5 -5
- package/packages/client/types/components/box/contract.d.ts +25 -28
- package/packages/client/types/components/brand/contract.d.ts +2 -2
- package/packages/client/types/components/button/contract.d.ts +5 -5
- package/packages/client/types/components/card/contract.d.ts +28 -31
- package/packages/client/types/components/checkbox/contract.d.ts +17 -17
- package/packages/client/types/components/checkbox/index.d.ts +20 -26
- package/packages/client/types/components/checkbox/machine.d.ts +41 -0
- package/packages/client/types/components/checkbox/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/common.d.ts +53 -235
- package/packages/client/types/components/container/contract.d.ts +11 -12
- package/packages/client/types/components/date-picker/contract.d.ts +21 -16
- package/packages/client/types/components/date-picker/index.d.ts +38 -60
- package/packages/client/types/components/date-picker/machine.d.ts +529 -0
- package/packages/client/types/components/date-picker/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/date-picker/value.d.ts +28 -0
- package/packages/client/types/components/dropdown/contract.d.ts +4 -4
- package/packages/client/types/components/dropdown/index.d.ts +20 -45
- package/packages/client/types/components/dropdown/machine.d.ts +93 -0
- package/packages/client/types/components/dropdown/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/field/contract.d.ts +10 -6
- package/packages/client/types/components/field/index.d.ts +6 -6
- package/packages/client/types/components/field/machine.d.ts +13 -0
- package/packages/client/types/components/field/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/file-upload/contract.d.ts +7 -4
- package/packages/client/types/components/file-upload/index.d.ts +34 -31
- package/packages/client/types/components/file-upload/machine.d.ts +127 -0
- package/packages/client/types/components/file-upload/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/flex/contract.d.ts +16 -17
- package/packages/client/types/components/frame/contract.d.ts +41 -47
- package/packages/client/types/components/frame/index.d.ts +2 -2
- package/packages/client/types/components/grid/contract.d.ts +20 -21
- package/packages/client/types/components/heading/contract.d.ts +1 -1
- package/packages/client/types/components/image/contract.d.ts +3 -3
- package/packages/client/types/components/input/contract.d.ts +2 -2
- package/packages/client/types/components/input/index.d.ts +15 -12
- package/packages/client/types/components/input/machine.d.ts +20 -0
- package/packages/client/types/components/layout.d.ts +44 -225
- package/packages/client/types/components/menu/contract.d.ts +14 -8
- package/packages/client/types/components/modal/contract.d.ts +12 -12
- package/packages/client/types/components/modal/index.d.ts +41 -75
- package/packages/client/types/components/modal/machine.d.ts +129 -0
- package/packages/client/types/components/modal/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/overlay/contract.d.ts +3 -3
- package/packages/client/types/components/panels/contract.d.ts +39 -0
- package/packages/client/types/components/panels/index.d.ts +54 -0
- package/packages/client/types/components/panels/machine.d.ts +151 -0
- package/packages/client/types/components/panels/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/radio/contract.d.ts +11 -11
- package/packages/client/types/components/radio/index.d.ts +19 -23
- package/packages/client/types/components/radio/machine.d.ts +40 -0
- package/packages/client/types/components/radio/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/runtime.d.ts +16 -19
- package/packages/client/types/components/scroll-area/contract.d.ts +4 -7
- package/packages/client/types/components/scroll-area/index.d.ts +23 -49
- package/packages/client/types/components/scroll-area/machine.d.ts +21 -0
- package/packages/client/types/components/scroll-area/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/section/contract.d.ts +12 -13
- package/packages/client/types/components/select/contract.d.ts +19 -15
- package/packages/client/types/components/select/index.d.ts +42 -89
- package/packages/client/types/components/select/machine.d.ts +476 -0
- package/packages/client/types/components/select/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/shared/controlled-open.d.ts +11 -0
- package/packages/client/types/components/sidebar/contract.d.ts +19 -12
- package/packages/client/types/components/sidebar/index.d.ts +51 -88
- package/packages/client/types/components/sidebar/machine.d.ts +100 -0
- package/packages/client/types/components/sidebar/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/slider/contract.d.ts +3 -3
- package/packages/client/types/components/slider/index.d.ts +17 -21
- package/packages/client/types/components/slider/machine.d.ts +37 -0
- package/packages/client/types/components/slider/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/stack/contract.d.ts +16 -17
- package/packages/client/types/components/surface-manifest.d.ts +9 -0
- package/packages/client/types/components/switch/contract.d.ts +11 -11
- package/packages/client/types/components/switch/index.d.ts +13 -18
- package/packages/client/types/components/switch/machine.d.ts +19 -0
- package/packages/client/types/components/switch/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/table/contract.d.ts +18 -18
- package/packages/client/types/components/tabs/contract.d.ts +10 -5
- package/packages/client/types/components/tabs/index.d.ts +33 -51
- package/packages/client/types/components/tabs/machine.d.ts +84 -0
- package/packages/client/types/components/tabs/runtime-docs.d.ts +2 -0
- package/packages/client/types/components/text/contract.d.ts +1 -1
- package/packages/client/types/components/textarea/contract.d.ts +2 -2
- package/packages/client/types/components/toast/contract.d.ts +5 -4
- package/packages/client/types/components/toast/index.d.ts +38 -12
- package/packages/client/types/components/toast/machine.d.ts +115 -0
- package/packages/client/types/components/toast/runtime-docs.d.ts +2 -0
- package/packages/client/types/directives/index.d.ts +3 -1
- package/packages/client/types/directives/layout.d.ts +3 -0
- package/packages/client/types/directives/request.d.ts +1 -2
- package/packages/client/types/directives/transition.d.ts +3 -0
- package/packages/client/types/docs/transition-docs.d.ts +30 -0
- package/packages/client/types/index.d.ts +8 -40
- package/packages/client/types/motion/animate.d.ts +5 -44
- package/packages/client/types/motion/controller.d.ts +33 -0
- package/packages/client/types/motion/index.d.ts +43 -20
- package/packages/client/types/motion/owned.d.ts +5 -0
- package/packages/client/types/motion/plan.d.ts +46 -0
- package/packages/client/types/motion/recipe.d.ts +56 -0
- package/packages/client/types/motion/registry.d.ts +12 -0
- package/packages/client/types/motion/resize.d.ts +15 -0
- package/packages/client/types/motion/subject.d.ts +10 -0
- package/packages/client/types/motion/targets.d.ts +2 -5
- package/packages/client/types/motion/view.d.ts +7 -2
- package/packages/client/types/runtime/alpine-machine.d.ts +68 -0
- package/packages/client/types/runtime/anchored-popover.d.ts +10 -2
- package/packages/client/types/runtime/codecs.d.ts +16 -2
- package/packages/client/types/runtime/{resizable.d.ts → drag-and-drop/index.d.ts} +4 -2
- package/packages/client/types/runtime/engine/request.d.ts +2 -2
- package/packages/client/types/runtime/engine/stream.d.ts +11 -5
- package/packages/client/types/runtime/focus-scope.d.ts +7 -0
- package/packages/client/types/runtime/identity.d.ts +3 -0
- package/packages/client/types/runtime/index.d.ts +9 -75
- package/packages/client/types/runtime/merge-bindings.d.ts +1 -1
- package/packages/client/types/runtime/semantic-observer.d.ts +10 -0
- package/packages/client/types/runtime/state-machine/index.d.ts +4 -0
- package/packages/client/types/runtime/state-machine/machine.d.ts +83 -0
- package/packages/client/types/runtime/state-machine/props-change.d.ts +12 -0
- package/packages/client/types/runtime/transition-coordinator.d.ts +52 -0
- package/packages/client/types/runtime/ui.d.ts +15 -0
- package/packages/client/types/utils/index.d.ts +2 -1
- package/packages/client/types/utils/number.d.ts +2 -0
- package/packages/client/types/utils/object.d.ts +4 -1
- package/packages/server/trellis_ui/static/trellis_ui/assets/css/trellis.css +9097 -2595
- package/packages/server/trellis_ui/static/trellis_ui/assets/css/trellis.min.css +1 -1
- package/packages/server/trellis_ui/static/trellis_ui/assets/js/esm/index.js +17313 -13281
- package/packages/server/trellis_ui/static/trellis_ui/assets/js/esm/index.js.map +1 -1
- package/packages/server/trellis_ui/static/trellis_ui/assets/js/trellis.js +8 -15
- package/packages/server/trellis_ui/static/trellis_ui/assets/js/trellis.min.js +8 -15
- package/packages/client/types/bindings/disclosure.d.ts +0 -3
- package/packages/client/types/bindings/index.d.ts +0 -7
- package/packages/client/types/bindings/motion.d.ts +0 -3
- package/packages/client/types/bindings/state.d.ts +0 -3
- package/packages/client/types/bindings/types.d.ts +0 -33
- package/packages/client/types/components/combobox/contract.d.ts +0 -60
- package/packages/client/types/components/combobox/index.d.ts +0 -80
- package/packages/client/types/components/textarea/index.d.ts +0 -13
- package/packages/client/types/motion/presence.d.ts +0 -34
- package/packages/client/types/runtime/class-name.d.ts +0 -9
- package/packages/client/types/runtime/create.d.ts +0 -8
- package/packages/client/types/runtime/machine.d.ts +0 -55
- package/packages/server/trellis_ui/static/trellis_ui/assets/js/esm/chunks/cally-TZl4LpyH.js +0 -1134
- package/packages/server/trellis_ui/static/trellis_ui/assets/js/esm/chunks/cally-TZl4LpyH.js.map +0 -1
|
@@ -0,0 +1,2966 @@
|
|
|
1
|
+
/* Generated by packages/theme-engine/scripts/generate-default-css.mjs. */
|
|
2
|
+
/* Theme 72972b25a2870eb2; CSS 2536c95b9b43140d. */
|
|
3
|
+
@theme {
|
|
4
|
+
--color-separator: transparent;
|
|
5
|
+
--color-separator-muted: transparent;
|
|
6
|
+
--color-intent-accent-text: transparent;
|
|
7
|
+
--color-intent-accent-text-hover: transparent;
|
|
8
|
+
--color-intent-accent-soft: transparent;
|
|
9
|
+
--color-intent-accent-soft-hover: transparent;
|
|
10
|
+
--color-intent-accent-soft-pressed: transparent;
|
|
11
|
+
--color-intent-accent-soft-ink: transparent;
|
|
12
|
+
--color-intent-accent-soft-ink-muted: transparent;
|
|
13
|
+
--color-intent-accent-solid: transparent;
|
|
14
|
+
--color-intent-accent-solid-hover: transparent;
|
|
15
|
+
--color-intent-accent-solid-pressed: transparent;
|
|
16
|
+
--color-intent-accent-solid-ink: transparent;
|
|
17
|
+
--color-intent-accent-edge: transparent;
|
|
18
|
+
--color-intent-accent-edge-hover: transparent;
|
|
19
|
+
--color-intent-accent-edge-strong: transparent;
|
|
20
|
+
--color-intent-accent-focus: transparent;
|
|
21
|
+
--color-intent-danger-text: transparent;
|
|
22
|
+
--color-intent-danger-text-hover: transparent;
|
|
23
|
+
--color-intent-danger-soft: transparent;
|
|
24
|
+
--color-intent-danger-soft-hover: transparent;
|
|
25
|
+
--color-intent-danger-soft-pressed: transparent;
|
|
26
|
+
--color-intent-danger-soft-ink: transparent;
|
|
27
|
+
--color-intent-danger-soft-ink-muted: transparent;
|
|
28
|
+
--color-intent-danger-solid: transparent;
|
|
29
|
+
--color-intent-danger-solid-hover: transparent;
|
|
30
|
+
--color-intent-danger-solid-pressed: transparent;
|
|
31
|
+
--color-intent-danger-solid-ink: transparent;
|
|
32
|
+
--color-intent-danger-edge: transparent;
|
|
33
|
+
--color-intent-danger-edge-hover: transparent;
|
|
34
|
+
--color-intent-danger-edge-strong: transparent;
|
|
35
|
+
--color-intent-danger-focus: transparent;
|
|
36
|
+
--color-intent-information-text: transparent;
|
|
37
|
+
--color-intent-information-text-hover: transparent;
|
|
38
|
+
--color-intent-information-soft: transparent;
|
|
39
|
+
--color-intent-information-soft-hover: transparent;
|
|
40
|
+
--color-intent-information-soft-pressed: transparent;
|
|
41
|
+
--color-intent-information-soft-ink: transparent;
|
|
42
|
+
--color-intent-information-soft-ink-muted: transparent;
|
|
43
|
+
--color-intent-information-solid: transparent;
|
|
44
|
+
--color-intent-information-solid-hover: transparent;
|
|
45
|
+
--color-intent-information-solid-pressed: transparent;
|
|
46
|
+
--color-intent-information-solid-ink: transparent;
|
|
47
|
+
--color-intent-information-edge: transparent;
|
|
48
|
+
--color-intent-information-edge-hover: transparent;
|
|
49
|
+
--color-intent-information-edge-strong: transparent;
|
|
50
|
+
--color-intent-information-focus: transparent;
|
|
51
|
+
--color-intent-neutral-text: transparent;
|
|
52
|
+
--color-intent-neutral-text-hover: transparent;
|
|
53
|
+
--color-intent-neutral-soft: transparent;
|
|
54
|
+
--color-intent-neutral-soft-hover: transparent;
|
|
55
|
+
--color-intent-neutral-soft-pressed: transparent;
|
|
56
|
+
--color-intent-neutral-soft-ink: transparent;
|
|
57
|
+
--color-intent-neutral-soft-ink-muted: transparent;
|
|
58
|
+
--color-intent-neutral-solid: transparent;
|
|
59
|
+
--color-intent-neutral-solid-hover: transparent;
|
|
60
|
+
--color-intent-neutral-solid-pressed: transparent;
|
|
61
|
+
--color-intent-neutral-solid-ink: transparent;
|
|
62
|
+
--color-intent-neutral-edge: transparent;
|
|
63
|
+
--color-intent-neutral-edge-hover: transparent;
|
|
64
|
+
--color-intent-neutral-edge-strong: transparent;
|
|
65
|
+
--color-intent-neutral-focus: transparent;
|
|
66
|
+
--color-intent-success-text: transparent;
|
|
67
|
+
--color-intent-success-text-hover: transparent;
|
|
68
|
+
--color-intent-success-soft: transparent;
|
|
69
|
+
--color-intent-success-soft-hover: transparent;
|
|
70
|
+
--color-intent-success-soft-pressed: transparent;
|
|
71
|
+
--color-intent-success-soft-ink: transparent;
|
|
72
|
+
--color-intent-success-soft-ink-muted: transparent;
|
|
73
|
+
--color-intent-success-solid: transparent;
|
|
74
|
+
--color-intent-success-solid-hover: transparent;
|
|
75
|
+
--color-intent-success-solid-pressed: transparent;
|
|
76
|
+
--color-intent-success-solid-ink: transparent;
|
|
77
|
+
--color-intent-success-edge: transparent;
|
|
78
|
+
--color-intent-success-edge-hover: transparent;
|
|
79
|
+
--color-intent-success-edge-strong: transparent;
|
|
80
|
+
--color-intent-success-focus: transparent;
|
|
81
|
+
--color-intent-warning-text: transparent;
|
|
82
|
+
--color-intent-warning-text-hover: transparent;
|
|
83
|
+
--color-intent-warning-soft: transparent;
|
|
84
|
+
--color-intent-warning-soft-hover: transparent;
|
|
85
|
+
--color-intent-warning-soft-pressed: transparent;
|
|
86
|
+
--color-intent-warning-soft-ink: transparent;
|
|
87
|
+
--color-intent-warning-soft-ink-muted: transparent;
|
|
88
|
+
--color-intent-warning-solid: transparent;
|
|
89
|
+
--color-intent-warning-solid-hover: transparent;
|
|
90
|
+
--color-intent-warning-solid-pressed: transparent;
|
|
91
|
+
--color-intent-warning-solid-ink: transparent;
|
|
92
|
+
--color-intent-warning-edge: transparent;
|
|
93
|
+
--color-intent-warning-edge-hover: transparent;
|
|
94
|
+
--color-intent-warning-edge-strong: transparent;
|
|
95
|
+
--color-intent-warning-focus: transparent;
|
|
96
|
+
--color-interaction-hover: transparent;
|
|
97
|
+
--color-interaction-pressed: transparent;
|
|
98
|
+
--color-interaction-selected: transparent;
|
|
99
|
+
--color-interaction-selected-hover: transparent;
|
|
100
|
+
--color-interaction-disabled: transparent;
|
|
101
|
+
--color-interaction-disabled-edge: transparent;
|
|
102
|
+
--color-interaction-disabled-ink: transparent;
|
|
103
|
+
--color-scrim: transparent;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
@theme {
|
|
107
|
+
--color-surface-0: transparent;
|
|
108
|
+
--color-surface-0-ink: transparent;
|
|
109
|
+
--color-surface-0-ink-muted: transparent;
|
|
110
|
+
--color-surface-1: transparent;
|
|
111
|
+
--color-surface-1-ink: transparent;
|
|
112
|
+
--color-surface-1-ink-muted: transparent;
|
|
113
|
+
--color-surface-2: transparent;
|
|
114
|
+
--color-surface-2-ink: transparent;
|
|
115
|
+
--color-surface-2-ink-muted: transparent;
|
|
116
|
+
--color-surface-3: transparent;
|
|
117
|
+
--color-surface-3-ink: transparent;
|
|
118
|
+
--color-surface-3-ink-muted: transparent;
|
|
119
|
+
--color-surface-4: transparent;
|
|
120
|
+
--color-surface-4-ink: transparent;
|
|
121
|
+
--color-surface-4-ink-muted: transparent;
|
|
122
|
+
--color-surface-5: transparent;
|
|
123
|
+
--color-surface-5-ink: transparent;
|
|
124
|
+
--color-surface-5-ink-muted: transparent;
|
|
125
|
+
--color-surface-6: transparent;
|
|
126
|
+
--color-surface-6-ink: transparent;
|
|
127
|
+
--color-surface-6-ink-muted: transparent;
|
|
128
|
+
--color-surface-7: transparent;
|
|
129
|
+
--color-surface-7-ink: transparent;
|
|
130
|
+
--color-surface-7-ink-muted: transparent;
|
|
131
|
+
--color-surface-8: transparent;
|
|
132
|
+
--color-surface-8-ink: transparent;
|
|
133
|
+
--color-surface-8-ink-muted: transparent;
|
|
134
|
+
--shadow-elevation-0: none;
|
|
135
|
+
--shadow-elevation-1: none;
|
|
136
|
+
--shadow-elevation-2: none;
|
|
137
|
+
--shadow-elevation-3: none;
|
|
138
|
+
--shadow-elevation-4: none;
|
|
139
|
+
--shadow-elevation-5: none;
|
|
140
|
+
--shadow-elevation-6: none;
|
|
141
|
+
--shadow-elevation-7: none;
|
|
142
|
+
--shadow-elevation-8: none;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
:root, .light {
|
|
146
|
+
--breakpoint-sm: 640px;
|
|
147
|
+
--breakpoint-md: 768px;
|
|
148
|
+
--breakpoint-lg: 1024px;
|
|
149
|
+
--breakpoint-xl: 1280px;
|
|
150
|
+
--breakpoint-2xl: 1536px;
|
|
151
|
+
--border-width-0: 0px;
|
|
152
|
+
--border-width-1: 1px;
|
|
153
|
+
--border-width-2: 2px;
|
|
154
|
+
--border-width-3: 4px;
|
|
155
|
+
--border-width-edge-perimeter: var(--border-width-1);
|
|
156
|
+
--border-width-edge-control: var(--border-width-1);
|
|
157
|
+
--border-width-edge-separator: var(--border-width-1);
|
|
158
|
+
--border-width-edge-divider: var(--border-width-1);
|
|
159
|
+
--radius-1: 1px;
|
|
160
|
+
--radius-2: 2.5px;
|
|
161
|
+
--radius-3: 4px;
|
|
162
|
+
--radius-4: 6px;
|
|
163
|
+
--radius-5: 8px;
|
|
164
|
+
--radius-6: 10.5px;
|
|
165
|
+
--radius-control: var(--radius-3);
|
|
166
|
+
--radius-control-xs: var(--radius-1);
|
|
167
|
+
--radius-control-sm: var(--radius-2);
|
|
168
|
+
--radius-control-md: var(--radius-3);
|
|
169
|
+
--radius-control-lg: var(--radius-4);
|
|
170
|
+
--radius-surface: var(--radius-4);
|
|
171
|
+
--radius-surface-xs: var(--radius-2);
|
|
172
|
+
--radius-surface-sm: var(--radius-3);
|
|
173
|
+
--radius-surface-md: var(--radius-4);
|
|
174
|
+
--radius-surface-lg: var(--radius-5);
|
|
175
|
+
--radius-overlay: var(--radius-5);
|
|
176
|
+
--radius-overlay-xs: var(--radius-3);
|
|
177
|
+
--radius-overlay-sm: var(--radius-4);
|
|
178
|
+
--radius-overlay-md: var(--radius-5);
|
|
179
|
+
--radius-overlay-lg: var(--radius-6);
|
|
180
|
+
--radius-none: 0px;
|
|
181
|
+
--radius-full: 9999px;
|
|
182
|
+
--radius-circle: 50%;
|
|
183
|
+
--spacing-0: 0px;
|
|
184
|
+
--spacing-0\.5: 2px;
|
|
185
|
+
--spacing-1: 4px;
|
|
186
|
+
--spacing-1\.5: 6px;
|
|
187
|
+
--spacing-2: 8px;
|
|
188
|
+
--spacing-2\.5: 10px;
|
|
189
|
+
--spacing-3: 12px;
|
|
190
|
+
--spacing-3\.5: 14px;
|
|
191
|
+
--spacing-4: 16px;
|
|
192
|
+
--spacing-4\.5: clamp(18px, calc(17.8571px + 0.0446vw), 18.5px);
|
|
193
|
+
--spacing-5: clamp(20px, calc(19.7143px + 0.0893vw), 21px);
|
|
194
|
+
--spacing-5\.5: clamp(22px, calc(21.5714px + 0.1339vw), 23.5px);
|
|
195
|
+
--spacing-6: clamp(24px, calc(23.4286px + 0.1786vw), 26px);
|
|
196
|
+
--spacing-6\.5: clamp(26px, calc(25.2857px + 0.2232vw), 28.5px);
|
|
197
|
+
--spacing-7: clamp(28px, calc(27.1429px + 0.2679vw), 31px);
|
|
198
|
+
--spacing-7\.5: clamp(30px, calc(29px + 0.3125vw), 33.5px);
|
|
199
|
+
--spacing-8: clamp(32px, calc(30.8571px + 0.3571vw), 36px);
|
|
200
|
+
--spacing-8\.5: clamp(34px, calc(32.7143px + 0.4018vw), 38.5px);
|
|
201
|
+
--spacing-9: clamp(36px, calc(34.5714px + 0.4464vw), 41px);
|
|
202
|
+
--spacing-9\.5: clamp(38px, calc(36.4286px + 0.4911vw), 43.5px);
|
|
203
|
+
--spacing-10: clamp(40px, calc(38.2857px + 0.5357vw), 46px);
|
|
204
|
+
--spacing-10\.5: clamp(42px, calc(40.1429px + 0.5804vw), 48.5px);
|
|
205
|
+
--spacing-11: clamp(44px, calc(42px + 0.625vw), 51px);
|
|
206
|
+
--spacing-11\.5: clamp(46px, calc(43.8571px + 0.6696vw), 53.5px);
|
|
207
|
+
--spacing-12: clamp(48px, calc(45.7143px + 0.7143vw), 56px);
|
|
208
|
+
--spacing-control-gap: var(--spacing-2);
|
|
209
|
+
--spacing-control-padding-xs: var(--spacing-2);
|
|
210
|
+
--spacing-control-padding-sm: var(--spacing-2);
|
|
211
|
+
--spacing-control-padding-md: var(--spacing-3);
|
|
212
|
+
--spacing-control-padding-lg: var(--spacing-3);
|
|
213
|
+
--spacing-control-padding-xlg: var(--spacing-4);
|
|
214
|
+
--spacing-badge-padding-xs: var(--spacing-1\.5);
|
|
215
|
+
--spacing-badge-padding-sm: var(--spacing-2);
|
|
216
|
+
--spacing-badge-padding-md: var(--spacing-2\.5);
|
|
217
|
+
--spacing-badge-padding-lg: var(--spacing-3);
|
|
218
|
+
--spacing-badge-padding-xlg: var(--spacing-4);
|
|
219
|
+
--spacing-popover-padding: var(--spacing-1\.5);
|
|
220
|
+
--spacing-menu-item-padding-inline: var(--spacing-2\.5);
|
|
221
|
+
--spacing-app-region-gap: var(--spacing-2);
|
|
222
|
+
--spacing-app-region-padding-inline: var(--spacing-4);
|
|
223
|
+
--spacing-app-region-padding-block: var(--spacing-3);
|
|
224
|
+
--spacing-sidebar-header-gap: var(--spacing-2);
|
|
225
|
+
--spacing-sidebar-header-padding-inline: var(--spacing-3);
|
|
226
|
+
--spacing-sidebar-header-padding-block: var(--spacing-2);
|
|
227
|
+
--spacing-sidebar-content-gap: var(--spacing-1);
|
|
228
|
+
--spacing-sidebar-content-padding-inline: var(--spacing-2);
|
|
229
|
+
--spacing-sidebar-content-padding-block: var(--spacing-2);
|
|
230
|
+
--font-mono: "Fira Code", ui-monospace, monospace;
|
|
231
|
+
--font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
|
|
232
|
+
--text-1: 12px;
|
|
233
|
+
--text-1--line-height: 16px;
|
|
234
|
+
--text-1--letter-spacing: 0em;
|
|
235
|
+
--leading-type-1: var(--text-1--line-height);
|
|
236
|
+
--tracking-type-1: var(--text-1--letter-spacing);
|
|
237
|
+
--text-xs: var(--text-1);
|
|
238
|
+
--text-xs--line-height: var(--text-1--line-height);
|
|
239
|
+
--text-xs--letter-spacing: var(--text-1--letter-spacing);
|
|
240
|
+
--text-2: 14px;
|
|
241
|
+
--text-2--line-height: 20px;
|
|
242
|
+
--text-2--letter-spacing: 0em;
|
|
243
|
+
--leading-type-2: var(--text-2--line-height);
|
|
244
|
+
--tracking-type-2: var(--text-2--letter-spacing);
|
|
245
|
+
--text-sm: var(--text-2);
|
|
246
|
+
--text-sm--line-height: var(--text-2--line-height);
|
|
247
|
+
--text-sm--letter-spacing: var(--text-2--letter-spacing);
|
|
248
|
+
--text-3: 16px;
|
|
249
|
+
--text-3--line-height: 24px;
|
|
250
|
+
--text-3--letter-spacing: 0em;
|
|
251
|
+
--leading-type-3: var(--text-3--line-height);
|
|
252
|
+
--tracking-type-3: var(--text-3--letter-spacing);
|
|
253
|
+
--text-base: var(--text-3);
|
|
254
|
+
--text-base--line-height: var(--text-3--line-height);
|
|
255
|
+
--text-base--letter-spacing: var(--text-3--letter-spacing);
|
|
256
|
+
--text-4: 18px;
|
|
257
|
+
--text-4--line-height: 26px;
|
|
258
|
+
--text-4--letter-spacing: 0em;
|
|
259
|
+
--leading-type-4: var(--text-4--line-height);
|
|
260
|
+
--tracking-type-4: var(--text-4--letter-spacing);
|
|
261
|
+
--text-lg: var(--text-4);
|
|
262
|
+
--text-lg--line-height: var(--text-4--line-height);
|
|
263
|
+
--text-lg--letter-spacing: var(--text-4--letter-spacing);
|
|
264
|
+
--text-5: 20px;
|
|
265
|
+
--text-5--line-height: 28px;
|
|
266
|
+
--text-5--letter-spacing: 0em;
|
|
267
|
+
--leading-type-5: var(--text-5--line-height);
|
|
268
|
+
--tracking-type-5: var(--text-5--letter-spacing);
|
|
269
|
+
--text-xl: var(--text-5);
|
|
270
|
+
--text-xl--line-height: var(--text-5--line-height);
|
|
271
|
+
--text-xl--letter-spacing: var(--text-5--letter-spacing);
|
|
272
|
+
--text-6: 30px;
|
|
273
|
+
--text-6--line-height: 38px;
|
|
274
|
+
--text-6--letter-spacing: -0.01em;
|
|
275
|
+
--leading-type-6: var(--text-6--line-height);
|
|
276
|
+
--tracking-type-6: var(--text-6--letter-spacing);
|
|
277
|
+
--text-2xl: var(--text-6);
|
|
278
|
+
--text-2xl--line-height: var(--text-6--line-height);
|
|
279
|
+
--text-2xl--letter-spacing: var(--text-6--letter-spacing);
|
|
280
|
+
--text-7: 36px;
|
|
281
|
+
--text-7--line-height: 44px;
|
|
282
|
+
--text-7--letter-spacing: -0.015em;
|
|
283
|
+
--leading-type-7: var(--text-7--line-height);
|
|
284
|
+
--tracking-type-7: var(--text-7--letter-spacing);
|
|
285
|
+
--text-3xl: var(--text-7);
|
|
286
|
+
--text-3xl--line-height: var(--text-7--line-height);
|
|
287
|
+
--text-3xl--letter-spacing: var(--text-7--letter-spacing);
|
|
288
|
+
--text-8: 48px;
|
|
289
|
+
--text-8--line-height: 56px;
|
|
290
|
+
--text-8--letter-spacing: -0.02em;
|
|
291
|
+
--leading-type-8: var(--text-8--line-height);
|
|
292
|
+
--tracking-type-8: var(--text-8--letter-spacing);
|
|
293
|
+
--text-4xl: var(--text-8);
|
|
294
|
+
--text-4xl--line-height: var(--text-8--line-height);
|
|
295
|
+
--text-4xl--letter-spacing: var(--text-8--letter-spacing);
|
|
296
|
+
--text-9: 60px;
|
|
297
|
+
--text-9--line-height: 64px;
|
|
298
|
+
--text-9--letter-spacing: -0.025em;
|
|
299
|
+
--leading-type-9: var(--text-9--line-height);
|
|
300
|
+
--tracking-type-9: var(--text-9--letter-spacing);
|
|
301
|
+
--text-5xl: var(--text-9);
|
|
302
|
+
--text-5xl--line-height: var(--text-9--line-height);
|
|
303
|
+
--text-5xl--letter-spacing: var(--text-9--letter-spacing);
|
|
304
|
+
--text-10: 72px;
|
|
305
|
+
--text-10--line-height: 76px;
|
|
306
|
+
--text-10--letter-spacing: -0.03em;
|
|
307
|
+
--leading-type-10: var(--text-10--line-height);
|
|
308
|
+
--tracking-type-10: var(--text-10--letter-spacing);
|
|
309
|
+
--text-6xl: var(--text-10);
|
|
310
|
+
--text-6xl--line-height: var(--text-10--line-height);
|
|
311
|
+
--text-6xl--letter-spacing: var(--text-10--letter-spacing);
|
|
312
|
+
--text-11: 84px;
|
|
313
|
+
--text-11--line-height: 88px;
|
|
314
|
+
--text-11--letter-spacing: -0.035em;
|
|
315
|
+
--leading-type-11: var(--text-11--line-height);
|
|
316
|
+
--tracking-type-11: var(--text-11--letter-spacing);
|
|
317
|
+
--text-7xl: var(--text-11);
|
|
318
|
+
--text-7xl--line-height: var(--text-11--line-height);
|
|
319
|
+
--text-7xl--letter-spacing: var(--text-11--letter-spacing);
|
|
320
|
+
--text-12: 96px;
|
|
321
|
+
--text-12--line-height: 100px;
|
|
322
|
+
--text-12--letter-spacing: -0.04em;
|
|
323
|
+
--leading-type-12: var(--text-12--line-height);
|
|
324
|
+
--tracking-type-12: var(--text-12--letter-spacing);
|
|
325
|
+
--text-8xl: var(--text-12);
|
|
326
|
+
--text-8xl--line-height: var(--text-12--line-height);
|
|
327
|
+
--text-8xl--letter-spacing: var(--text-12--letter-spacing);
|
|
328
|
+
--text-13: 128px;
|
|
329
|
+
--text-13--line-height: 132px;
|
|
330
|
+
--text-13--letter-spacing: -0.045em;
|
|
331
|
+
--leading-type-13: var(--text-13--line-height);
|
|
332
|
+
--tracking-type-13: var(--text-13--letter-spacing);
|
|
333
|
+
--text-9xl: var(--text-13);
|
|
334
|
+
--text-9xl--line-height: var(--text-13--line-height);
|
|
335
|
+
--text-9xl--letter-spacing: var(--text-13--letter-spacing);
|
|
336
|
+
--font-weight-normal: 400;
|
|
337
|
+
--font-weight-medium: 500;
|
|
338
|
+
--font-weight-semibold: 600;
|
|
339
|
+
--font-weight-bold: 700;
|
|
340
|
+
--text-body: var(--text-2);
|
|
341
|
+
--text-body--line-height: var(--text-2--line-height);
|
|
342
|
+
--text-body--letter-spacing: var(--text-2--letter-spacing);
|
|
343
|
+
--font-body: var(--font-sans);
|
|
344
|
+
--font-weight-body: var(--font-weight-normal);
|
|
345
|
+
--text-heading: var(--text-2);
|
|
346
|
+
--text-heading--line-height: var(--text-2--line-height);
|
|
347
|
+
--text-heading--letter-spacing: var(--text-2--letter-spacing);
|
|
348
|
+
--font-heading: var(--font-sans);
|
|
349
|
+
--font-weight-heading: var(--font-weight-medium);
|
|
350
|
+
--text-code: var(--text-2);
|
|
351
|
+
--text-code--line-height: var(--text-2--line-height);
|
|
352
|
+
--text-code--letter-spacing: var(--text-2--letter-spacing);
|
|
353
|
+
--font-code: var(--font-mono);
|
|
354
|
+
--font-weight-code: var(--font-weight-normal);
|
|
355
|
+
--text-control-xs: var(--text-1);
|
|
356
|
+
--text-control-xs--line-height: var(--text-1--line-height);
|
|
357
|
+
--text-control-xs--letter-spacing: var(--text-1--letter-spacing);
|
|
358
|
+
--font-control: var(--font-sans);
|
|
359
|
+
--font-weight-control-xs: var(--font-weight-normal);
|
|
360
|
+
--text-control-sm: var(--text-1);
|
|
361
|
+
--text-control-sm--line-height: var(--text-1--line-height);
|
|
362
|
+
--text-control-sm--letter-spacing: var(--text-1--letter-spacing);
|
|
363
|
+
--font-weight-control-sm: var(--font-weight-normal);
|
|
364
|
+
--text-control-md: var(--text-2);
|
|
365
|
+
--text-control-md--line-height: var(--text-2--line-height);
|
|
366
|
+
--text-control-md--letter-spacing: var(--text-2--letter-spacing);
|
|
367
|
+
--font-weight-control-md: var(--font-weight-normal);
|
|
368
|
+
--text-control-lg: var(--text-2);
|
|
369
|
+
--text-control-lg--line-height: var(--text-2--line-height);
|
|
370
|
+
--text-control-lg--letter-spacing: var(--text-2--letter-spacing);
|
|
371
|
+
--font-weight-control-lg: var(--font-weight-normal);
|
|
372
|
+
--text-control-xlg: var(--text-2);
|
|
373
|
+
--text-control-xlg--line-height: var(--text-2--line-height);
|
|
374
|
+
--text-control-xlg--letter-spacing: var(--text-2--letter-spacing);
|
|
375
|
+
--font-weight-control-xlg: var(--font-weight-normal);
|
|
376
|
+
--text-badge-xs: var(--text-1);
|
|
377
|
+
--text-badge-xs--line-height: var(--text-1--line-height);
|
|
378
|
+
--text-badge-xs--letter-spacing: var(--text-1--letter-spacing);
|
|
379
|
+
--font-badge: var(--font-sans);
|
|
380
|
+
--font-weight-badge-xs: var(--font-weight-medium);
|
|
381
|
+
--text-badge-sm: var(--text-1);
|
|
382
|
+
--text-badge-sm--line-height: var(--text-1--line-height);
|
|
383
|
+
--text-badge-sm--letter-spacing: var(--text-1--letter-spacing);
|
|
384
|
+
--font-weight-badge-sm: var(--font-weight-medium);
|
|
385
|
+
--text-badge-md: var(--text-2);
|
|
386
|
+
--text-badge-md--line-height: var(--text-2--line-height);
|
|
387
|
+
--text-badge-md--letter-spacing: var(--text-2--letter-spacing);
|
|
388
|
+
--font-weight-badge-md: var(--font-weight-medium);
|
|
389
|
+
--text-badge-lg: var(--text-2);
|
|
390
|
+
--text-badge-lg--line-height: var(--text-2--line-height);
|
|
391
|
+
--text-badge-lg--letter-spacing: var(--text-2--letter-spacing);
|
|
392
|
+
--font-weight-badge-lg: var(--font-weight-medium);
|
|
393
|
+
--text-badge-xlg: var(--text-2);
|
|
394
|
+
--text-badge-xlg--line-height: var(--text-2--line-height);
|
|
395
|
+
--text-badge-xlg--letter-spacing: var(--text-2--letter-spacing);
|
|
396
|
+
--font-weight-badge-xlg: var(--font-weight-medium);
|
|
397
|
+
--text-label: var(--text-2);
|
|
398
|
+
--text-label--line-height: var(--text-2--line-height);
|
|
399
|
+
--text-label--letter-spacing: var(--text-2--letter-spacing);
|
|
400
|
+
--font-label: var(--font-sans);
|
|
401
|
+
--font-weight-label: var(--font-weight-medium);
|
|
402
|
+
--text-description: var(--text-2);
|
|
403
|
+
--text-description--line-height: var(--text-2--line-height);
|
|
404
|
+
--text-description--letter-spacing: var(--text-2--letter-spacing);
|
|
405
|
+
--font-description: var(--font-sans);
|
|
406
|
+
--font-weight-description: var(--font-weight-normal);
|
|
407
|
+
--text-metadata: var(--text-1);
|
|
408
|
+
--text-metadata--line-height: var(--text-1--line-height);
|
|
409
|
+
--text-metadata--letter-spacing: var(--text-1--letter-spacing);
|
|
410
|
+
--font-metadata: var(--font-sans);
|
|
411
|
+
--font-weight-metadata: var(--font-weight-normal);
|
|
412
|
+
--text-menu-item: var(--text-2);
|
|
413
|
+
--text-menu-item--line-height: var(--text-2--line-height);
|
|
414
|
+
--text-menu-item--letter-spacing: var(--text-2--letter-spacing);
|
|
415
|
+
--font-menu-item: var(--font-sans);
|
|
416
|
+
--font-weight-menu-item: var(--font-weight-normal);
|
|
417
|
+
--spacing-control-xs: 20px;
|
|
418
|
+
--spacing-control-sm: 24px;
|
|
419
|
+
--spacing-control-md: 28px;
|
|
420
|
+
--spacing-control-lg: 32px;
|
|
421
|
+
--spacing-control-xlg: 36px;
|
|
422
|
+
--spacing-control-multiline-xs: 32px;
|
|
423
|
+
--spacing-control-multiline-sm: 36px;
|
|
424
|
+
--spacing-control-multiline-md: 48px;
|
|
425
|
+
--spacing-control-multiline-lg: 80px;
|
|
426
|
+
--spacing-control-multiline-xlg: 96px;
|
|
427
|
+
--spacing-icon-xs: 12px;
|
|
428
|
+
--spacing-icon-sm: 14px;
|
|
429
|
+
--spacing-icon-md: 14px;
|
|
430
|
+
--spacing-icon-lg: 16px;
|
|
431
|
+
--spacing-icon-xlg: 20px;
|
|
432
|
+
--spacing-brand-logo-xs: 16px;
|
|
433
|
+
--spacing-brand-logo-sm: 20px;
|
|
434
|
+
--spacing-brand-logo-md: 24px;
|
|
435
|
+
--spacing-brand-logo-lg: 24px;
|
|
436
|
+
--spacing-brand-logo-xlg: 32px;
|
|
437
|
+
--spacing-badge-close-xs: 16px;
|
|
438
|
+
--spacing-badge-close-sm: 16px;
|
|
439
|
+
--spacing-badge-close-md: 20px;
|
|
440
|
+
--spacing-badge-close-lg: 20px;
|
|
441
|
+
--spacing-badge-close-xlg: 24px;
|
|
442
|
+
--spacing-checkbox-indicator-xs: 12px;
|
|
443
|
+
--spacing-checkbox-indicator-sm: 14px;
|
|
444
|
+
--spacing-checkbox-indicator-md: 16px;
|
|
445
|
+
--spacing-checkbox-indicator-lg: 16px;
|
|
446
|
+
--spacing-checkbox-indicator-xlg: 20px;
|
|
447
|
+
--spacing-radio-indicator-xs: 12px;
|
|
448
|
+
--spacing-radio-indicator-sm: 14px;
|
|
449
|
+
--spacing-radio-indicator-md: 16px;
|
|
450
|
+
--spacing-radio-indicator-lg: 16px;
|
|
451
|
+
--spacing-radio-indicator-xlg: 20px;
|
|
452
|
+
--spacing-radio-dot-xs: 4px;
|
|
453
|
+
--spacing-radio-dot-sm: 6px;
|
|
454
|
+
--spacing-radio-dot-md: 6px;
|
|
455
|
+
--spacing-radio-dot-lg: 8px;
|
|
456
|
+
--spacing-radio-dot-xlg: 10px;
|
|
457
|
+
--spacing-switch-track-width-xs: 24px;
|
|
458
|
+
--spacing-switch-track-width-sm: 28px;
|
|
459
|
+
--spacing-switch-track-width-md: 36px;
|
|
460
|
+
--spacing-switch-track-width-lg: 44px;
|
|
461
|
+
--spacing-switch-track-width-xlg: 56px;
|
|
462
|
+
--spacing-switch-track-height-xs: 14px;
|
|
463
|
+
--spacing-switch-track-height-sm: 16px;
|
|
464
|
+
--spacing-switch-track-height-md: 20px;
|
|
465
|
+
--spacing-switch-track-height-lg: 24px;
|
|
466
|
+
--spacing-switch-track-height-xlg: 28px;
|
|
467
|
+
--spacing-switch-thumb-xs: 10px;
|
|
468
|
+
--spacing-switch-thumb-sm: 12px;
|
|
469
|
+
--spacing-switch-thumb-md: 16px;
|
|
470
|
+
--spacing-switch-thumb-lg: 20px;
|
|
471
|
+
--spacing-switch-thumb-xlg: 24px;
|
|
472
|
+
--spacing-switch-inset: 2px;
|
|
473
|
+
--spacing-switch-travel-xs: 10px;
|
|
474
|
+
--spacing-switch-travel-sm: 12px;
|
|
475
|
+
--spacing-switch-travel-md: 16px;
|
|
476
|
+
--spacing-switch-travel-lg: 20px;
|
|
477
|
+
--spacing-switch-travel-xlg: 28px;
|
|
478
|
+
--spacing-slider-track-xs: 4px;
|
|
479
|
+
--spacing-slider-track-sm: 4px;
|
|
480
|
+
--spacing-slider-track-md: 6px;
|
|
481
|
+
--spacing-slider-track-lg: 6px;
|
|
482
|
+
--spacing-slider-track-xlg: 8px;
|
|
483
|
+
--spacing-slider-thumb-xs: 12px;
|
|
484
|
+
--spacing-slider-thumb-sm: 14px;
|
|
485
|
+
--spacing-slider-thumb-md: 16px;
|
|
486
|
+
--spacing-slider-thumb-lg: 18px;
|
|
487
|
+
--spacing-slider-thumb-xlg: 20px;
|
|
488
|
+
--spacing-scrollbar: 6px;
|
|
489
|
+
--spacing-scrollbar-inset: 2px;
|
|
490
|
+
--spacing-menu-item: var(--spacing-control-lg);
|
|
491
|
+
--spacing-select-listbox: 256px;
|
|
492
|
+
--spacing-panel-collapsed: 48px;
|
|
493
|
+
--spacing-panel-resize-handle: 8px;
|
|
494
|
+
--spacing-panel-resize-handle-coarse: 24px;
|
|
495
|
+
--spacing-sidebar-width: 256px;
|
|
496
|
+
--spacing-sidebar-drawer-width: 288px;
|
|
497
|
+
--spacing-sidebar-min-width: 192px;
|
|
498
|
+
--spacing-sidebar-max-width: 448px;
|
|
499
|
+
--spacing-sidebar-min-height: 48px;
|
|
500
|
+
--spacing-sidebar-max-height: 288px;
|
|
501
|
+
--container-xs: 320px;
|
|
502
|
+
--container-sm: 384px;
|
|
503
|
+
--container-md: 448px;
|
|
504
|
+
--container-lg: 512px;
|
|
505
|
+
--container-xl: 576px;
|
|
506
|
+
--container-2xl: 672px;
|
|
507
|
+
--container-3xl: 768px;
|
|
508
|
+
--container-4xl: 896px;
|
|
509
|
+
--container-5xl: 1024px;
|
|
510
|
+
--container-6xl: 1152px;
|
|
511
|
+
--container-7xl: 1280px;
|
|
512
|
+
--container-modal-sm: 384px;
|
|
513
|
+
--container-modal-md: 512px;
|
|
514
|
+
--container-modal-lg: 672px;
|
|
515
|
+
--container-modal-xl: 896px;
|
|
516
|
+
--spacing-panel-1-min: 160px;
|
|
517
|
+
--spacing-panel-1: 192px;
|
|
518
|
+
--spacing-panel-1-max: 240px;
|
|
519
|
+
--spacing-panel-2-min: 192px;
|
|
520
|
+
--spacing-panel-2: 240px;
|
|
521
|
+
--spacing-panel-2-max: 288px;
|
|
522
|
+
--spacing-panel-3-min: 240px;
|
|
523
|
+
--spacing-panel-3: 320px;
|
|
524
|
+
--spacing-panel-3-max: 384px;
|
|
525
|
+
--spacing-panel-4-min: 288px;
|
|
526
|
+
--spacing-panel-4: 384px;
|
|
527
|
+
--spacing-panel-4-max: 480px;
|
|
528
|
+
--spacing-panel-5-min: 320px;
|
|
529
|
+
--spacing-panel-5: 480px;
|
|
530
|
+
--spacing-panel-5-max: 640px;
|
|
531
|
+
--spacing-panel-6-min: 384px;
|
|
532
|
+
--spacing-panel-6: 640px;
|
|
533
|
+
--spacing-panel-6-max: 768px;
|
|
534
|
+
--spacing-icon: var(--spacing-icon-md);
|
|
535
|
+
--container-prose: 65ch;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.dark {
|
|
539
|
+
--breakpoint-sm: 640px;
|
|
540
|
+
--breakpoint-md: 768px;
|
|
541
|
+
--breakpoint-lg: 1024px;
|
|
542
|
+
--breakpoint-xl: 1280px;
|
|
543
|
+
--breakpoint-2xl: 1536px;
|
|
544
|
+
--border-width-0: 0px;
|
|
545
|
+
--border-width-1: 1px;
|
|
546
|
+
--border-width-2: 2px;
|
|
547
|
+
--border-width-3: 4px;
|
|
548
|
+
--border-width-edge-perimeter: var(--border-width-1);
|
|
549
|
+
--border-width-edge-control: var(--border-width-1);
|
|
550
|
+
--border-width-edge-separator: var(--border-width-1);
|
|
551
|
+
--border-width-edge-divider: var(--border-width-1);
|
|
552
|
+
--radius-1: 1px;
|
|
553
|
+
--radius-2: 2.5px;
|
|
554
|
+
--radius-3: 4px;
|
|
555
|
+
--radius-4: 6px;
|
|
556
|
+
--radius-5: 8px;
|
|
557
|
+
--radius-6: 10.5px;
|
|
558
|
+
--radius-control: var(--radius-3);
|
|
559
|
+
--radius-control-xs: var(--radius-1);
|
|
560
|
+
--radius-control-sm: var(--radius-2);
|
|
561
|
+
--radius-control-md: var(--radius-3);
|
|
562
|
+
--radius-control-lg: var(--radius-4);
|
|
563
|
+
--radius-surface: var(--radius-4);
|
|
564
|
+
--radius-surface-xs: var(--radius-2);
|
|
565
|
+
--radius-surface-sm: var(--radius-3);
|
|
566
|
+
--radius-surface-md: var(--radius-4);
|
|
567
|
+
--radius-surface-lg: var(--radius-5);
|
|
568
|
+
--radius-overlay: var(--radius-5);
|
|
569
|
+
--radius-overlay-xs: var(--radius-3);
|
|
570
|
+
--radius-overlay-sm: var(--radius-4);
|
|
571
|
+
--radius-overlay-md: var(--radius-5);
|
|
572
|
+
--radius-overlay-lg: var(--radius-6);
|
|
573
|
+
--radius-none: 0px;
|
|
574
|
+
--radius-full: 9999px;
|
|
575
|
+
--radius-circle: 50%;
|
|
576
|
+
--spacing-0: 0px;
|
|
577
|
+
--spacing-0\.5: 2px;
|
|
578
|
+
--spacing-1: 4px;
|
|
579
|
+
--spacing-1\.5: 6px;
|
|
580
|
+
--spacing-2: 8px;
|
|
581
|
+
--spacing-2\.5: 10px;
|
|
582
|
+
--spacing-3: 12px;
|
|
583
|
+
--spacing-3\.5: 14px;
|
|
584
|
+
--spacing-4: 16px;
|
|
585
|
+
--spacing-4\.5: clamp(18px, calc(17.8571px + 0.0446vw), 18.5px);
|
|
586
|
+
--spacing-5: clamp(20px, calc(19.7143px + 0.0893vw), 21px);
|
|
587
|
+
--spacing-5\.5: clamp(22px, calc(21.5714px + 0.1339vw), 23.5px);
|
|
588
|
+
--spacing-6: clamp(24px, calc(23.4286px + 0.1786vw), 26px);
|
|
589
|
+
--spacing-6\.5: clamp(26px, calc(25.2857px + 0.2232vw), 28.5px);
|
|
590
|
+
--spacing-7: clamp(28px, calc(27.1429px + 0.2679vw), 31px);
|
|
591
|
+
--spacing-7\.5: clamp(30px, calc(29px + 0.3125vw), 33.5px);
|
|
592
|
+
--spacing-8: clamp(32px, calc(30.8571px + 0.3571vw), 36px);
|
|
593
|
+
--spacing-8\.5: clamp(34px, calc(32.7143px + 0.4018vw), 38.5px);
|
|
594
|
+
--spacing-9: clamp(36px, calc(34.5714px + 0.4464vw), 41px);
|
|
595
|
+
--spacing-9\.5: clamp(38px, calc(36.4286px + 0.4911vw), 43.5px);
|
|
596
|
+
--spacing-10: clamp(40px, calc(38.2857px + 0.5357vw), 46px);
|
|
597
|
+
--spacing-10\.5: clamp(42px, calc(40.1429px + 0.5804vw), 48.5px);
|
|
598
|
+
--spacing-11: clamp(44px, calc(42px + 0.625vw), 51px);
|
|
599
|
+
--spacing-11\.5: clamp(46px, calc(43.8571px + 0.6696vw), 53.5px);
|
|
600
|
+
--spacing-12: clamp(48px, calc(45.7143px + 0.7143vw), 56px);
|
|
601
|
+
--spacing-control-gap: var(--spacing-2);
|
|
602
|
+
--spacing-control-padding-xs: var(--spacing-2);
|
|
603
|
+
--spacing-control-padding-sm: var(--spacing-2);
|
|
604
|
+
--spacing-control-padding-md: var(--spacing-3);
|
|
605
|
+
--spacing-control-padding-lg: var(--spacing-3);
|
|
606
|
+
--spacing-control-padding-xlg: var(--spacing-4);
|
|
607
|
+
--spacing-badge-padding-xs: var(--spacing-1\.5);
|
|
608
|
+
--spacing-badge-padding-sm: var(--spacing-2);
|
|
609
|
+
--spacing-badge-padding-md: var(--spacing-2\.5);
|
|
610
|
+
--spacing-badge-padding-lg: var(--spacing-3);
|
|
611
|
+
--spacing-badge-padding-xlg: var(--spacing-4);
|
|
612
|
+
--spacing-popover-padding: var(--spacing-1\.5);
|
|
613
|
+
--spacing-menu-item-padding-inline: var(--spacing-2\.5);
|
|
614
|
+
--spacing-app-region-gap: var(--spacing-2);
|
|
615
|
+
--spacing-app-region-padding-inline: var(--spacing-4);
|
|
616
|
+
--spacing-app-region-padding-block: var(--spacing-3);
|
|
617
|
+
--spacing-sidebar-header-gap: var(--spacing-2);
|
|
618
|
+
--spacing-sidebar-header-padding-inline: var(--spacing-3);
|
|
619
|
+
--spacing-sidebar-header-padding-block: var(--spacing-2);
|
|
620
|
+
--spacing-sidebar-content-gap: var(--spacing-1);
|
|
621
|
+
--spacing-sidebar-content-padding-inline: var(--spacing-2);
|
|
622
|
+
--spacing-sidebar-content-padding-block: var(--spacing-2);
|
|
623
|
+
--font-mono: "Fira Code", ui-monospace, monospace;
|
|
624
|
+
--font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
|
|
625
|
+
--text-1: 12px;
|
|
626
|
+
--text-1--line-height: 16px;
|
|
627
|
+
--text-1--letter-spacing: 0em;
|
|
628
|
+
--leading-type-1: var(--text-1--line-height);
|
|
629
|
+
--tracking-type-1: var(--text-1--letter-spacing);
|
|
630
|
+
--text-xs: var(--text-1);
|
|
631
|
+
--text-xs--line-height: var(--text-1--line-height);
|
|
632
|
+
--text-xs--letter-spacing: var(--text-1--letter-spacing);
|
|
633
|
+
--text-2: 14px;
|
|
634
|
+
--text-2--line-height: 20px;
|
|
635
|
+
--text-2--letter-spacing: 0em;
|
|
636
|
+
--leading-type-2: var(--text-2--line-height);
|
|
637
|
+
--tracking-type-2: var(--text-2--letter-spacing);
|
|
638
|
+
--text-sm: var(--text-2);
|
|
639
|
+
--text-sm--line-height: var(--text-2--line-height);
|
|
640
|
+
--text-sm--letter-spacing: var(--text-2--letter-spacing);
|
|
641
|
+
--text-3: 16px;
|
|
642
|
+
--text-3--line-height: 24px;
|
|
643
|
+
--text-3--letter-spacing: 0em;
|
|
644
|
+
--leading-type-3: var(--text-3--line-height);
|
|
645
|
+
--tracking-type-3: var(--text-3--letter-spacing);
|
|
646
|
+
--text-base: var(--text-3);
|
|
647
|
+
--text-base--line-height: var(--text-3--line-height);
|
|
648
|
+
--text-base--letter-spacing: var(--text-3--letter-spacing);
|
|
649
|
+
--text-4: 18px;
|
|
650
|
+
--text-4--line-height: 26px;
|
|
651
|
+
--text-4--letter-spacing: 0em;
|
|
652
|
+
--leading-type-4: var(--text-4--line-height);
|
|
653
|
+
--tracking-type-4: var(--text-4--letter-spacing);
|
|
654
|
+
--text-lg: var(--text-4);
|
|
655
|
+
--text-lg--line-height: var(--text-4--line-height);
|
|
656
|
+
--text-lg--letter-spacing: var(--text-4--letter-spacing);
|
|
657
|
+
--text-5: 20px;
|
|
658
|
+
--text-5--line-height: 28px;
|
|
659
|
+
--text-5--letter-spacing: 0em;
|
|
660
|
+
--leading-type-5: var(--text-5--line-height);
|
|
661
|
+
--tracking-type-5: var(--text-5--letter-spacing);
|
|
662
|
+
--text-xl: var(--text-5);
|
|
663
|
+
--text-xl--line-height: var(--text-5--line-height);
|
|
664
|
+
--text-xl--letter-spacing: var(--text-5--letter-spacing);
|
|
665
|
+
--text-6: 30px;
|
|
666
|
+
--text-6--line-height: 38px;
|
|
667
|
+
--text-6--letter-spacing: -0.01em;
|
|
668
|
+
--leading-type-6: var(--text-6--line-height);
|
|
669
|
+
--tracking-type-6: var(--text-6--letter-spacing);
|
|
670
|
+
--text-2xl: var(--text-6);
|
|
671
|
+
--text-2xl--line-height: var(--text-6--line-height);
|
|
672
|
+
--text-2xl--letter-spacing: var(--text-6--letter-spacing);
|
|
673
|
+
--text-7: 36px;
|
|
674
|
+
--text-7--line-height: 44px;
|
|
675
|
+
--text-7--letter-spacing: -0.015em;
|
|
676
|
+
--leading-type-7: var(--text-7--line-height);
|
|
677
|
+
--tracking-type-7: var(--text-7--letter-spacing);
|
|
678
|
+
--text-3xl: var(--text-7);
|
|
679
|
+
--text-3xl--line-height: var(--text-7--line-height);
|
|
680
|
+
--text-3xl--letter-spacing: var(--text-7--letter-spacing);
|
|
681
|
+
--text-8: 48px;
|
|
682
|
+
--text-8--line-height: 56px;
|
|
683
|
+
--text-8--letter-spacing: -0.02em;
|
|
684
|
+
--leading-type-8: var(--text-8--line-height);
|
|
685
|
+
--tracking-type-8: var(--text-8--letter-spacing);
|
|
686
|
+
--text-4xl: var(--text-8);
|
|
687
|
+
--text-4xl--line-height: var(--text-8--line-height);
|
|
688
|
+
--text-4xl--letter-spacing: var(--text-8--letter-spacing);
|
|
689
|
+
--text-9: 60px;
|
|
690
|
+
--text-9--line-height: 64px;
|
|
691
|
+
--text-9--letter-spacing: -0.025em;
|
|
692
|
+
--leading-type-9: var(--text-9--line-height);
|
|
693
|
+
--tracking-type-9: var(--text-9--letter-spacing);
|
|
694
|
+
--text-5xl: var(--text-9);
|
|
695
|
+
--text-5xl--line-height: var(--text-9--line-height);
|
|
696
|
+
--text-5xl--letter-spacing: var(--text-9--letter-spacing);
|
|
697
|
+
--text-10: 72px;
|
|
698
|
+
--text-10--line-height: 76px;
|
|
699
|
+
--text-10--letter-spacing: -0.03em;
|
|
700
|
+
--leading-type-10: var(--text-10--line-height);
|
|
701
|
+
--tracking-type-10: var(--text-10--letter-spacing);
|
|
702
|
+
--text-6xl: var(--text-10);
|
|
703
|
+
--text-6xl--line-height: var(--text-10--line-height);
|
|
704
|
+
--text-6xl--letter-spacing: var(--text-10--letter-spacing);
|
|
705
|
+
--text-11: 84px;
|
|
706
|
+
--text-11--line-height: 88px;
|
|
707
|
+
--text-11--letter-spacing: -0.035em;
|
|
708
|
+
--leading-type-11: var(--text-11--line-height);
|
|
709
|
+
--tracking-type-11: var(--text-11--letter-spacing);
|
|
710
|
+
--text-7xl: var(--text-11);
|
|
711
|
+
--text-7xl--line-height: var(--text-11--line-height);
|
|
712
|
+
--text-7xl--letter-spacing: var(--text-11--letter-spacing);
|
|
713
|
+
--text-12: 96px;
|
|
714
|
+
--text-12--line-height: 100px;
|
|
715
|
+
--text-12--letter-spacing: -0.04em;
|
|
716
|
+
--leading-type-12: var(--text-12--line-height);
|
|
717
|
+
--tracking-type-12: var(--text-12--letter-spacing);
|
|
718
|
+
--text-8xl: var(--text-12);
|
|
719
|
+
--text-8xl--line-height: var(--text-12--line-height);
|
|
720
|
+
--text-8xl--letter-spacing: var(--text-12--letter-spacing);
|
|
721
|
+
--text-13: 128px;
|
|
722
|
+
--text-13--line-height: 132px;
|
|
723
|
+
--text-13--letter-spacing: -0.045em;
|
|
724
|
+
--leading-type-13: var(--text-13--line-height);
|
|
725
|
+
--tracking-type-13: var(--text-13--letter-spacing);
|
|
726
|
+
--text-9xl: var(--text-13);
|
|
727
|
+
--text-9xl--line-height: var(--text-13--line-height);
|
|
728
|
+
--text-9xl--letter-spacing: var(--text-13--letter-spacing);
|
|
729
|
+
--font-weight-normal: 400;
|
|
730
|
+
--font-weight-medium: 500;
|
|
731
|
+
--font-weight-semibold: 600;
|
|
732
|
+
--font-weight-bold: 700;
|
|
733
|
+
--text-body: var(--text-2);
|
|
734
|
+
--text-body--line-height: var(--text-2--line-height);
|
|
735
|
+
--text-body--letter-spacing: var(--text-2--letter-spacing);
|
|
736
|
+
--font-body: var(--font-sans);
|
|
737
|
+
--font-weight-body: var(--font-weight-normal);
|
|
738
|
+
--text-heading: var(--text-2);
|
|
739
|
+
--text-heading--line-height: var(--text-2--line-height);
|
|
740
|
+
--text-heading--letter-spacing: var(--text-2--letter-spacing);
|
|
741
|
+
--font-heading: var(--font-sans);
|
|
742
|
+
--font-weight-heading: var(--font-weight-medium);
|
|
743
|
+
--text-code: var(--text-2);
|
|
744
|
+
--text-code--line-height: var(--text-2--line-height);
|
|
745
|
+
--text-code--letter-spacing: var(--text-2--letter-spacing);
|
|
746
|
+
--font-code: var(--font-mono);
|
|
747
|
+
--font-weight-code: var(--font-weight-normal);
|
|
748
|
+
--text-control-xs: var(--text-1);
|
|
749
|
+
--text-control-xs--line-height: var(--text-1--line-height);
|
|
750
|
+
--text-control-xs--letter-spacing: var(--text-1--letter-spacing);
|
|
751
|
+
--font-control: var(--font-sans);
|
|
752
|
+
--font-weight-control-xs: var(--font-weight-normal);
|
|
753
|
+
--text-control-sm: var(--text-1);
|
|
754
|
+
--text-control-sm--line-height: var(--text-1--line-height);
|
|
755
|
+
--text-control-sm--letter-spacing: var(--text-1--letter-spacing);
|
|
756
|
+
--font-weight-control-sm: var(--font-weight-normal);
|
|
757
|
+
--text-control-md: var(--text-2);
|
|
758
|
+
--text-control-md--line-height: var(--text-2--line-height);
|
|
759
|
+
--text-control-md--letter-spacing: var(--text-2--letter-spacing);
|
|
760
|
+
--font-weight-control-md: var(--font-weight-normal);
|
|
761
|
+
--text-control-lg: var(--text-2);
|
|
762
|
+
--text-control-lg--line-height: var(--text-2--line-height);
|
|
763
|
+
--text-control-lg--letter-spacing: var(--text-2--letter-spacing);
|
|
764
|
+
--font-weight-control-lg: var(--font-weight-normal);
|
|
765
|
+
--text-control-xlg: var(--text-2);
|
|
766
|
+
--text-control-xlg--line-height: var(--text-2--line-height);
|
|
767
|
+
--text-control-xlg--letter-spacing: var(--text-2--letter-spacing);
|
|
768
|
+
--font-weight-control-xlg: var(--font-weight-normal);
|
|
769
|
+
--text-badge-xs: var(--text-1);
|
|
770
|
+
--text-badge-xs--line-height: var(--text-1--line-height);
|
|
771
|
+
--text-badge-xs--letter-spacing: var(--text-1--letter-spacing);
|
|
772
|
+
--font-badge: var(--font-sans);
|
|
773
|
+
--font-weight-badge-xs: var(--font-weight-medium);
|
|
774
|
+
--text-badge-sm: var(--text-1);
|
|
775
|
+
--text-badge-sm--line-height: var(--text-1--line-height);
|
|
776
|
+
--text-badge-sm--letter-spacing: var(--text-1--letter-spacing);
|
|
777
|
+
--font-weight-badge-sm: var(--font-weight-medium);
|
|
778
|
+
--text-badge-md: var(--text-2);
|
|
779
|
+
--text-badge-md--line-height: var(--text-2--line-height);
|
|
780
|
+
--text-badge-md--letter-spacing: var(--text-2--letter-spacing);
|
|
781
|
+
--font-weight-badge-md: var(--font-weight-medium);
|
|
782
|
+
--text-badge-lg: var(--text-2);
|
|
783
|
+
--text-badge-lg--line-height: var(--text-2--line-height);
|
|
784
|
+
--text-badge-lg--letter-spacing: var(--text-2--letter-spacing);
|
|
785
|
+
--font-weight-badge-lg: var(--font-weight-medium);
|
|
786
|
+
--text-badge-xlg: var(--text-2);
|
|
787
|
+
--text-badge-xlg--line-height: var(--text-2--line-height);
|
|
788
|
+
--text-badge-xlg--letter-spacing: var(--text-2--letter-spacing);
|
|
789
|
+
--font-weight-badge-xlg: var(--font-weight-medium);
|
|
790
|
+
--text-label: var(--text-2);
|
|
791
|
+
--text-label--line-height: var(--text-2--line-height);
|
|
792
|
+
--text-label--letter-spacing: var(--text-2--letter-spacing);
|
|
793
|
+
--font-label: var(--font-sans);
|
|
794
|
+
--font-weight-label: var(--font-weight-medium);
|
|
795
|
+
--text-description: var(--text-2);
|
|
796
|
+
--text-description--line-height: var(--text-2--line-height);
|
|
797
|
+
--text-description--letter-spacing: var(--text-2--letter-spacing);
|
|
798
|
+
--font-description: var(--font-sans);
|
|
799
|
+
--font-weight-description: var(--font-weight-normal);
|
|
800
|
+
--text-metadata: var(--text-1);
|
|
801
|
+
--text-metadata--line-height: var(--text-1--line-height);
|
|
802
|
+
--text-metadata--letter-spacing: var(--text-1--letter-spacing);
|
|
803
|
+
--font-metadata: var(--font-sans);
|
|
804
|
+
--font-weight-metadata: var(--font-weight-normal);
|
|
805
|
+
--text-menu-item: var(--text-2);
|
|
806
|
+
--text-menu-item--line-height: var(--text-2--line-height);
|
|
807
|
+
--text-menu-item--letter-spacing: var(--text-2--letter-spacing);
|
|
808
|
+
--font-menu-item: var(--font-sans);
|
|
809
|
+
--font-weight-menu-item: var(--font-weight-normal);
|
|
810
|
+
--spacing-control-xs: 20px;
|
|
811
|
+
--spacing-control-sm: 24px;
|
|
812
|
+
--spacing-control-md: 28px;
|
|
813
|
+
--spacing-control-lg: 32px;
|
|
814
|
+
--spacing-control-xlg: 36px;
|
|
815
|
+
--spacing-control-multiline-xs: 32px;
|
|
816
|
+
--spacing-control-multiline-sm: 36px;
|
|
817
|
+
--spacing-control-multiline-md: 48px;
|
|
818
|
+
--spacing-control-multiline-lg: 80px;
|
|
819
|
+
--spacing-control-multiline-xlg: 96px;
|
|
820
|
+
--spacing-icon-xs: 12px;
|
|
821
|
+
--spacing-icon-sm: 14px;
|
|
822
|
+
--spacing-icon-md: 14px;
|
|
823
|
+
--spacing-icon-lg: 16px;
|
|
824
|
+
--spacing-icon-xlg: 20px;
|
|
825
|
+
--spacing-brand-logo-xs: 16px;
|
|
826
|
+
--spacing-brand-logo-sm: 20px;
|
|
827
|
+
--spacing-brand-logo-md: 24px;
|
|
828
|
+
--spacing-brand-logo-lg: 24px;
|
|
829
|
+
--spacing-brand-logo-xlg: 32px;
|
|
830
|
+
--spacing-badge-close-xs: 16px;
|
|
831
|
+
--spacing-badge-close-sm: 16px;
|
|
832
|
+
--spacing-badge-close-md: 20px;
|
|
833
|
+
--spacing-badge-close-lg: 20px;
|
|
834
|
+
--spacing-badge-close-xlg: 24px;
|
|
835
|
+
--spacing-checkbox-indicator-xs: 12px;
|
|
836
|
+
--spacing-checkbox-indicator-sm: 14px;
|
|
837
|
+
--spacing-checkbox-indicator-md: 16px;
|
|
838
|
+
--spacing-checkbox-indicator-lg: 16px;
|
|
839
|
+
--spacing-checkbox-indicator-xlg: 20px;
|
|
840
|
+
--spacing-radio-indicator-xs: 12px;
|
|
841
|
+
--spacing-radio-indicator-sm: 14px;
|
|
842
|
+
--spacing-radio-indicator-md: 16px;
|
|
843
|
+
--spacing-radio-indicator-lg: 16px;
|
|
844
|
+
--spacing-radio-indicator-xlg: 20px;
|
|
845
|
+
--spacing-radio-dot-xs: 4px;
|
|
846
|
+
--spacing-radio-dot-sm: 6px;
|
|
847
|
+
--spacing-radio-dot-md: 6px;
|
|
848
|
+
--spacing-radio-dot-lg: 8px;
|
|
849
|
+
--spacing-radio-dot-xlg: 10px;
|
|
850
|
+
--spacing-switch-track-width-xs: 24px;
|
|
851
|
+
--spacing-switch-track-width-sm: 28px;
|
|
852
|
+
--spacing-switch-track-width-md: 36px;
|
|
853
|
+
--spacing-switch-track-width-lg: 44px;
|
|
854
|
+
--spacing-switch-track-width-xlg: 56px;
|
|
855
|
+
--spacing-switch-track-height-xs: 14px;
|
|
856
|
+
--spacing-switch-track-height-sm: 16px;
|
|
857
|
+
--spacing-switch-track-height-md: 20px;
|
|
858
|
+
--spacing-switch-track-height-lg: 24px;
|
|
859
|
+
--spacing-switch-track-height-xlg: 28px;
|
|
860
|
+
--spacing-switch-thumb-xs: 10px;
|
|
861
|
+
--spacing-switch-thumb-sm: 12px;
|
|
862
|
+
--spacing-switch-thumb-md: 16px;
|
|
863
|
+
--spacing-switch-thumb-lg: 20px;
|
|
864
|
+
--spacing-switch-thumb-xlg: 24px;
|
|
865
|
+
--spacing-switch-inset: 2px;
|
|
866
|
+
--spacing-switch-travel-xs: 10px;
|
|
867
|
+
--spacing-switch-travel-sm: 12px;
|
|
868
|
+
--spacing-switch-travel-md: 16px;
|
|
869
|
+
--spacing-switch-travel-lg: 20px;
|
|
870
|
+
--spacing-switch-travel-xlg: 28px;
|
|
871
|
+
--spacing-slider-track-xs: 4px;
|
|
872
|
+
--spacing-slider-track-sm: 4px;
|
|
873
|
+
--spacing-slider-track-md: 6px;
|
|
874
|
+
--spacing-slider-track-lg: 6px;
|
|
875
|
+
--spacing-slider-track-xlg: 8px;
|
|
876
|
+
--spacing-slider-thumb-xs: 12px;
|
|
877
|
+
--spacing-slider-thumb-sm: 14px;
|
|
878
|
+
--spacing-slider-thumb-md: 16px;
|
|
879
|
+
--spacing-slider-thumb-lg: 18px;
|
|
880
|
+
--spacing-slider-thumb-xlg: 20px;
|
|
881
|
+
--spacing-scrollbar: 6px;
|
|
882
|
+
--spacing-scrollbar-inset: 2px;
|
|
883
|
+
--spacing-menu-item: var(--spacing-control-lg);
|
|
884
|
+
--spacing-select-listbox: 256px;
|
|
885
|
+
--spacing-panel-collapsed: 48px;
|
|
886
|
+
--spacing-panel-resize-handle: 8px;
|
|
887
|
+
--spacing-panel-resize-handle-coarse: 24px;
|
|
888
|
+
--spacing-sidebar-width: 256px;
|
|
889
|
+
--spacing-sidebar-drawer-width: 288px;
|
|
890
|
+
--spacing-sidebar-min-width: 192px;
|
|
891
|
+
--spacing-sidebar-max-width: 448px;
|
|
892
|
+
--spacing-sidebar-min-height: 48px;
|
|
893
|
+
--spacing-sidebar-max-height: 288px;
|
|
894
|
+
--container-xs: 320px;
|
|
895
|
+
--container-sm: 384px;
|
|
896
|
+
--container-md: 448px;
|
|
897
|
+
--container-lg: 512px;
|
|
898
|
+
--container-xl: 576px;
|
|
899
|
+
--container-2xl: 672px;
|
|
900
|
+
--container-3xl: 768px;
|
|
901
|
+
--container-4xl: 896px;
|
|
902
|
+
--container-5xl: 1024px;
|
|
903
|
+
--container-6xl: 1152px;
|
|
904
|
+
--container-7xl: 1280px;
|
|
905
|
+
--container-modal-sm: 384px;
|
|
906
|
+
--container-modal-md: 512px;
|
|
907
|
+
--container-modal-lg: 672px;
|
|
908
|
+
--container-modal-xl: 896px;
|
|
909
|
+
--spacing-panel-1-min: 160px;
|
|
910
|
+
--spacing-panel-1: 192px;
|
|
911
|
+
--spacing-panel-1-max: 240px;
|
|
912
|
+
--spacing-panel-2-min: 192px;
|
|
913
|
+
--spacing-panel-2: 240px;
|
|
914
|
+
--spacing-panel-2-max: 288px;
|
|
915
|
+
--spacing-panel-3-min: 240px;
|
|
916
|
+
--spacing-panel-3: 320px;
|
|
917
|
+
--spacing-panel-3-max: 384px;
|
|
918
|
+
--spacing-panel-4-min: 288px;
|
|
919
|
+
--spacing-panel-4: 384px;
|
|
920
|
+
--spacing-panel-4-max: 480px;
|
|
921
|
+
--spacing-panel-5-min: 320px;
|
|
922
|
+
--spacing-panel-5: 480px;
|
|
923
|
+
--spacing-panel-5-max: 640px;
|
|
924
|
+
--spacing-panel-6-min: 384px;
|
|
925
|
+
--spacing-panel-6: 640px;
|
|
926
|
+
--spacing-panel-6-max: 768px;
|
|
927
|
+
--spacing-icon: var(--spacing-icon-md);
|
|
928
|
+
--container-prose: 65ch;
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
:root, .light {
|
|
932
|
+
--color-separator: oklch(61.752131% 0.03464 319.944721 / 0.098);
|
|
933
|
+
--color-separator-muted: oklch(61.752131% 0.03464 319.944721 / 0.0588);
|
|
934
|
+
--color-intent-accent-text: oklch(55.25987% 0.16965 252.857709 / 1);
|
|
935
|
+
--color-intent-accent-text-hover: oklch(35.151696% 0.099995 251.779887 / 1);
|
|
936
|
+
--color-intent-accent-soft: oklch(53.538442% 0.258239 262.526117 / 0.120607);
|
|
937
|
+
--color-intent-accent-soft-hover: oklch(65.248254% 0.191479 251.324013 / 0.261);
|
|
938
|
+
--color-intent-accent-soft-pressed: oklch(58.440777% 0.225295 258.885918 / 0.329);
|
|
939
|
+
--color-intent-accent-soft-ink: oklch(55.25987% 0.16965 252.857709 / 1);
|
|
940
|
+
--color-intent-accent-soft-ink-muted: oklch(55.25987% 0.16965 252.857709 / 1);
|
|
941
|
+
--color-intent-accent-solid: oklch(56.681703% 0.186805 255.023228 / 1);
|
|
942
|
+
--color-intent-accent-solid-hover: oklch(53.708657% 0.183273 255.984773 / 1);
|
|
943
|
+
--color-intent-accent-solid-pressed: oklch(52.228467% 0.182305 256.577313 / 1);
|
|
944
|
+
--color-intent-accent-solid-ink: oklch(100% 0 none / 1);
|
|
945
|
+
--color-intent-accent-edge: oklch(58.440777% 0.225295 258.885918 / 0.329);
|
|
946
|
+
--color-intent-accent-edge-hover: oklch(52.336251% 0.259576 262.836671 / 0.394);
|
|
947
|
+
--color-intent-accent-edge-strong: oklch(44.725533% 0.309917 264.052023 / 0.469);
|
|
948
|
+
--color-intent-accent-focus: oklch(71.509921% 0.14671 251.779887 / 1);
|
|
949
|
+
--color-intent-accent-focus-width: 2px;
|
|
950
|
+
--color-intent-danger-text: oklch(56.831333% 0.171879 23.02606 / 1);
|
|
951
|
+
--color-intent-danger-text-hover: oklch(35.572963% 0.10015 23.02606 / 1);
|
|
952
|
+
--color-intent-danger-soft: oklch(62.795536% 0.257683 29.23388 / 0.121462);
|
|
953
|
+
--color-intent-danger-soft-hover: oklch(62.795536% 0.257683 29.23388 / 0.243837);
|
|
954
|
+
--color-intent-danger-soft-pressed: oklch(62.795536% 0.257683 29.23388 / 0.329);
|
|
955
|
+
--color-intent-danger-soft-ink: oklch(56.831333% 0.171879 23.02606 / 1);
|
|
956
|
+
--color-intent-danger-soft-ink-muted: oklch(56.831333% 0.171879 23.02606 / 1);
|
|
957
|
+
--color-intent-danger-solid: oklch(58.635272% 0.19334 23.02606 / 1);
|
|
958
|
+
--color-intent-danger-solid-hover: oklch(55.633546% 0.191407 23.02606 / 1);
|
|
959
|
+
--color-intent-danger-solid-pressed: oklch(54.131096% 0.191407 23.02606 / 1);
|
|
960
|
+
--color-intent-danger-solid-ink: oklch(100% 0 none / 1);
|
|
961
|
+
--color-intent-danger-edge: oklch(62.795536% 0.257683 29.23388 / 0.329);
|
|
962
|
+
--color-intent-danger-edge-hover: oklch(61.798613% 0.253592 29.23388 / 0.394);
|
|
963
|
+
--color-intent-danger-edge-strong: oklch(59.825195% 0.245494 29.23388 / 0.469);
|
|
964
|
+
--color-intent-danger-focus: oklch(71.489264% 0.146938 23.02606 / 0.42);
|
|
965
|
+
--color-intent-danger-focus-width: 3px;
|
|
966
|
+
--color-intent-information-text: oklch(55.25987% 0.16965 252.857709 / 1);
|
|
967
|
+
--color-intent-information-text-hover: oklch(35.151696% 0.099995 251.779887 / 1);
|
|
968
|
+
--color-intent-information-soft: oklch(53.538442% 0.258239 262.526117 / 0.120607);
|
|
969
|
+
--color-intent-information-soft-hover: oklch(65.248254% 0.191479 251.324013 / 0.261);
|
|
970
|
+
--color-intent-information-soft-pressed: oklch(58.440777% 0.225295 258.885918 / 0.329);
|
|
971
|
+
--color-intent-information-soft-ink: oklch(55.25987% 0.16965 252.857709 / 1);
|
|
972
|
+
--color-intent-information-soft-ink-muted: oklch(55.25987% 0.16965 252.857709 / 1);
|
|
973
|
+
--color-intent-information-solid: oklch(56.681703% 0.186805 255.023228 / 1);
|
|
974
|
+
--color-intent-information-solid-hover: oklch(53.708657% 0.183273 255.984773 / 1);
|
|
975
|
+
--color-intent-information-solid-pressed: oklch(52.228467% 0.182305 256.577313 / 1);
|
|
976
|
+
--color-intent-information-solid-ink: oklch(100% 0 none / 1);
|
|
977
|
+
--color-intent-information-edge: oklch(58.440777% 0.225295 258.885918 / 0.329);
|
|
978
|
+
--color-intent-information-edge-hover: oklch(52.336251% 0.259576 262.836671 / 0.394);
|
|
979
|
+
--color-intent-information-edge-strong: oklch(44.725533% 0.309917 264.052023 / 0.469);
|
|
980
|
+
--color-intent-information-focus: oklch(71.509921% 0.14671 251.779887 / 0.42);
|
|
981
|
+
--color-intent-information-focus-width: 3px;
|
|
982
|
+
--color-intent-neutral-text: oklch(12.382253% 0 none / 1);
|
|
983
|
+
--color-intent-neutral-text-hover: oklch(12.382253% 0 none / 1);
|
|
984
|
+
--color-intent-neutral-soft: oklch(75.985345% 0.0417 42.653991 / 0.043);
|
|
985
|
+
--color-intent-neutral-soft-hover: oklch(61.752131% 0.03464 319.944721 / 0.098);
|
|
986
|
+
--color-intent-neutral-soft-pressed: oklch(52.289138% 0.032536 53.126276 / 0.161);
|
|
987
|
+
--color-intent-neutral-soft-ink: oklch(18% 0 none / 1);
|
|
988
|
+
--color-intent-neutral-soft-ink-muted: oklch(18% 0 none / 1);
|
|
989
|
+
--color-intent-neutral-solid: oklch(12.382253% 0 none / 1);
|
|
990
|
+
--color-intent-neutral-solid-hover: oklch(32.394043% 0 none / 1);
|
|
991
|
+
--color-intent-neutral-solid-pressed: oklch(36.397949% 0 none / 1);
|
|
992
|
+
--color-intent-neutral-solid-ink: oklch(94.063697% 0 none / 1);
|
|
993
|
+
--color-intent-neutral-edge: oklch(52.289138% 0.032536 53.126276 / 0.161);
|
|
994
|
+
--color-intent-neutral-edge-hover: oklch(29.765441% 0.053308 217.459714 / 0.229);
|
|
995
|
+
--color-intent-neutral-edge-strong: oklch(0% 0 none / 0.294);
|
|
996
|
+
--color-intent-neutral-focus: oklch(71.310365% 0 none / 0.42);
|
|
997
|
+
--color-intent-neutral-focus-width: 3px;
|
|
998
|
+
--color-intent-success-text: oklch(53.50073% 0.118126 157.679534 / 1);
|
|
999
|
+
--color-intent-success-text-hover: oklch(34.498218% 0.068829 157.679534 / 1);
|
|
1000
|
+
--color-intent-success-soft: oklch(62.557232% 0.212866 142.495345 / 0.11321);
|
|
1001
|
+
--color-intent-success-soft-hover: oklch(65.569977% 0.223118 142.495345 / 0.240883);
|
|
1002
|
+
--color-intent-success-soft-pressed: oklch(61.89047% 0.210597 142.495345 / 0.329);
|
|
1003
|
+
--color-intent-success-soft-ink: oklch(53.50073% 0.118126 157.679534 / 1);
|
|
1004
|
+
--color-intent-success-soft-ink-muted: oklch(53.50073% 0.118126 157.679534 / 1);
|
|
1005
|
+
--color-intent-success-solid: oklch(54.761455% 0.1304 156.995342 / 1);
|
|
1006
|
+
--color-intent-success-solid-hover: oklch(51.805691% 0.125665 155.991499 / 1);
|
|
1007
|
+
--color-intent-success-solid-pressed: oklch(50.318489% 0.123554 155.350742 / 1);
|
|
1008
|
+
--color-intent-success-solid-ink: oklch(100% 0 none / 1);
|
|
1009
|
+
--color-intent-success-edge: oklch(61.89047% 0.210597 142.495345 / 0.329);
|
|
1010
|
+
--color-intent-success-edge-hover: oklch(57.080812% 0.194231 142.495345 / 0.394);
|
|
1011
|
+
--color-intent-success-edge-strong: oklch(50.791775% 0.172831 142.495345 / 0.469);
|
|
1012
|
+
--color-intent-success-focus: oklch(71.410855% 0.100985 157.679534 / 0.42);
|
|
1013
|
+
--color-intent-success-focus-width: 3px;
|
|
1014
|
+
--color-intent-warning-text: oklch(55.666518% 0.115491 79.432947 / 1);
|
|
1015
|
+
--color-intent-warning-text-hover: oklch(36.267297% 0.07484 81.380682 / 1);
|
|
1016
|
+
--color-intent-warning-soft: oklch(74.167072% 0.151576 88.492062 / 0.146267);
|
|
1017
|
+
--color-intent-warning-soft-hover: oklch(72.396279% 0.147948 88.752833 / 0.261);
|
|
1018
|
+
--color-intent-warning-soft-pressed: oklch(65.257887% 0.133419 87.570725 / 0.329);
|
|
1019
|
+
--color-intent-warning-soft-ink: oklch(55.666518% 0.115491 79.432947 / 1);
|
|
1020
|
+
--color-intent-warning-soft-ink-muted: oklch(55.666518% 0.115491 79.432947 / 1);
|
|
1021
|
+
--color-intent-warning-solid: oklch(85.369678% 0.157207 84.129977 / 1);
|
|
1022
|
+
--color-intent-warning-solid-hover: oklch(82.369678% 0.155635 84.129977 / 1);
|
|
1023
|
+
--color-intent-warning-solid-pressed: oklch(80.861444% 0.155635 84.129977 / 1);
|
|
1024
|
+
--color-intent-warning-solid-ink: oklch(35.612648% 0.031441 84.129977 / 1);
|
|
1025
|
+
--color-intent-warning-edge: oklch(65.257887% 0.133419 87.570725 / 0.329);
|
|
1026
|
+
--color-intent-warning-edge-hover: oklch(58.464905% 0.120709 81.172745 / 0.394);
|
|
1027
|
+
--color-intent-warning-edge-strong: oklch(49.23687% 0.104461 73.787219 / 0.469);
|
|
1028
|
+
--color-intent-warning-focus: oklch(71.848357% 0.119477 84.129977 / 0.42);
|
|
1029
|
+
--color-intent-warning-focus-width: 3px;
|
|
1030
|
+
--background-interaction-selection-accent: oklch(50.756307% 0.185449 257.696372 / 0.115167);
|
|
1031
|
+
--background-interaction-selection-accent-hover: oklch(50.756307% 0.185449 257.696372 / 0.161989);
|
|
1032
|
+
--color-interaction-selection-accent-ink: oklch(55.25987% 0.16965 252.857709 / 1);
|
|
1033
|
+
--background-interaction-selection-danger: oklch(50.734487% 0.20819 29.23388 / 0.116544);
|
|
1034
|
+
--background-interaction-selection-danger-hover: oklch(50.734487% 0.20819 29.23388 / 0.163881);
|
|
1035
|
+
--color-interaction-selection-danger-ink: oklch(56.831333% 0.171879 23.02606 / 1);
|
|
1036
|
+
--background-interaction-selection-information: oklch(50.756307% 0.185449 257.696372 / 0.115167);
|
|
1037
|
+
--background-interaction-selection-information-hover: oklch(50.756307% 0.185449 257.696372 / 0.161989);
|
|
1038
|
+
--color-interaction-selection-information-ink: oklch(55.25987% 0.16965 252.857709 / 1);
|
|
1039
|
+
--background-interaction-selection-neutral: oklch(0% 0 none / 0.074218);
|
|
1040
|
+
--background-interaction-selection-neutral-hover: oklch(0% 0 none / 0.116935);
|
|
1041
|
+
--color-interaction-selection-neutral-ink: oklch(18% 0 none / 1);
|
|
1042
|
+
--background-interaction-selection-success: oklch(48.174496% 0.14582 146.334155 / 0.115826);
|
|
1043
|
+
--background-interaction-selection-success-hover: oklch(48.174496% 0.14582 146.334155 / 0.162912);
|
|
1044
|
+
--color-interaction-selection-success-ink: oklch(53.50073% 0.118126 157.679534 / 1);
|
|
1045
|
+
--background-interaction-selection-warning: oklch(51.857569% 0.108211 77.702583 / 0.119976);
|
|
1046
|
+
--background-interaction-selection-warning-hover: oklch(51.857569% 0.108211 77.702583 / 0.168755);
|
|
1047
|
+
--color-interaction-selection-warning-ink: oklch(55.666518% 0.115491 79.432947 / 1);
|
|
1048
|
+
--color-interaction-hover: oklch(75.985345% 0.0417 42.653991 / 0.035);
|
|
1049
|
+
--color-interaction-pressed: oklch(61.752131% 0.03464 319.944721 / 0.055);
|
|
1050
|
+
--color-interaction-selected: oklch(50.756307% 0.185449 257.696372 / 0.115167);
|
|
1051
|
+
--color-interaction-selected-hover: oklch(50.756307% 0.185449 257.696372 / 0.161989);
|
|
1052
|
+
--opacity-interaction-disabled: 0.5;
|
|
1053
|
+
--color-interaction-disabled: oklch(75.985345% 0.0417 42.653991 / 0.043);
|
|
1054
|
+
--color-interaction-disabled-edge: oklch(0% 0 none / 0.294);
|
|
1055
|
+
--color-interaction-disabled-ink: var(--ui-surface-ink-muted);
|
|
1056
|
+
--color-scrim: oklch(12.382253% 0 none / 0.35);
|
|
1057
|
+
--color-surface-0: oklch(98.510365% 0 none / 1);
|
|
1058
|
+
--color-surface-0-ink: oklch(20.93472% 0 none / 1);
|
|
1059
|
+
--color-surface-0-ink-muted: oklch(55.779494% 0 none / 1);
|
|
1060
|
+
--shadow-elevation-0: 0 0 0 0 transparent;
|
|
1061
|
+
--color-surface-1: oklch(99.110365% 0 none / 1);
|
|
1062
|
+
--color-surface-1-ink: oklch(21.693184% 0 none / 1);
|
|
1063
|
+
--color-surface-1-ink-muted: oklch(56.194798% 0 none / 1);
|
|
1064
|
+
--shadow-elevation-1: 0px 0px 0px 1px oklch(0% 0 none / 0.06);
|
|
1065
|
+
--color-surface-2: oklch(100% 0 none / 1);
|
|
1066
|
+
--color-surface-2-ink: oklch(22.74366% 0 none / 1);
|
|
1067
|
+
--color-surface-2-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1068
|
+
--shadow-elevation-2: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06);
|
|
1069
|
+
--color-surface-3: oklch(100% 0 none / 1);
|
|
1070
|
+
--color-surface-3-ink: oklch(22.74366% 0 none / 1);
|
|
1071
|
+
--color-surface-3-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1072
|
+
--shadow-elevation-3: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06), 0px 3px 3px -1.5px oklch(0% 0 none / 0.06);
|
|
1073
|
+
--color-surface-4: oklch(100% 0 none / 1);
|
|
1074
|
+
--color-surface-4-ink: oklch(22.74366% 0 none / 1);
|
|
1075
|
+
--color-surface-4-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1076
|
+
--shadow-elevation-4: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06), 0px 3px 3px -1.5px oklch(0% 0 none / 0.06), 0px 6px 6px -3px oklch(0% 0 none / 0.06);
|
|
1077
|
+
--color-surface-5: oklch(100% 0 none / 1);
|
|
1078
|
+
--color-surface-5-ink: oklch(22.74366% 0 none / 1);
|
|
1079
|
+
--color-surface-5-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1080
|
+
--shadow-elevation-5: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06), 0px 3px 3px -1.5px oklch(0% 0 none / 0.06), 0px 6px 6px -3px oklch(0% 0 none / 0.06), 0px 12px 12px -6px oklch(0% 0 none / 0.06);
|
|
1081
|
+
--color-surface-6: oklch(100% 0 none / 1);
|
|
1082
|
+
--color-surface-6-ink: oklch(22.74366% 0 none / 1);
|
|
1083
|
+
--color-surface-6-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1084
|
+
--shadow-elevation-6: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06), 0px 3px 3px -1.5px oklch(0% 0 none / 0.06), 0px 6px 6px -3px oklch(0% 0 none / 0.06), 0px 12px 12px -6px oklch(0% 0 none / 0.06), 0px 24px 24px -12px oklch(0% 0 none / 0.06);
|
|
1085
|
+
--color-surface-7: oklch(100% 0 none / 1);
|
|
1086
|
+
--color-surface-7-ink: oklch(22.74366% 0 none / 1);
|
|
1087
|
+
--color-surface-7-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1088
|
+
--shadow-elevation-7: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06), 0px 3px 3px -1.5px oklch(0% 0 none / 0.06), 0px 6px 6px -3px oklch(0% 0 none / 0.06), 0px 12px 12px -6px oklch(0% 0 none / 0.06), 0px 24px 24px -12px oklch(0% 0 none / 0.06), 0px 48px 48px -24px oklch(0% 0 none / 0.06);
|
|
1089
|
+
--color-surface-8: oklch(100% 0 none / 1);
|
|
1090
|
+
--color-surface-8-ink: oklch(22.74366% 0 none / 1);
|
|
1091
|
+
--color-surface-8-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1092
|
+
--shadow-elevation-8: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06), 0px 3px 3px -1.5px oklch(0% 0 none / 0.06), 0px 6px 6px -3px oklch(0% 0 none / 0.06), 0px 12px 12px -6px oklch(0% 0 none / 0.06), 0px 24px 24px -12px oklch(0% 0 none / 0.06), 0px 48px 48px -24px oklch(0% 0 none / 0.06), 0px 96px 96px -48px oklch(0% 0 none / 0.06);
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
.dark {
|
|
1096
|
+
--color-separator: oklch(46.196358% 0.002178 197.081633 / 0.125);
|
|
1097
|
+
--color-separator-muted: oklch(46.196358% 0.002178 197.081633 / 0.075);
|
|
1098
|
+
--color-intent-accent-text: oklch(75.932957% 0.129993 247.644507 / 1);
|
|
1099
|
+
--color-intent-accent-text-hover: oklch(91.955441% 0.042718 241.682235 / 1);
|
|
1100
|
+
--color-intent-accent-soft: oklch(47.81858% 0.135109 249.93113 / 0.125);
|
|
1101
|
+
--color-intent-accent-soft-hover: oklch(54.24105% 0.165297 252.615383 / 0.176);
|
|
1102
|
+
--color-intent-accent-soft-pressed: oklch(56.889903% 0.165035 250.91057 / 0.235);
|
|
1103
|
+
--color-intent-accent-soft-ink: oklch(75.932957% 0.129993 247.644507 / 1);
|
|
1104
|
+
--color-intent-accent-soft-ink-muted: oklch(75.932957% 0.129993 247.644507 / 1);
|
|
1105
|
+
--color-intent-accent-solid: oklch(56.681703% 0.186805 255.023228 / 1);
|
|
1106
|
+
--color-intent-accent-solid-hover: oklch(53.830079% 0.177423 255.025716 / 1);
|
|
1107
|
+
--color-intent-accent-solid-pressed: oklch(52.302711% 0.176369 255.663733 / 1);
|
|
1108
|
+
--color-intent-accent-solid-ink: oklch(100% 0 none / 1);
|
|
1109
|
+
--color-intent-accent-edge: oklch(56.889903% 0.165035 250.91057 / 0.235);
|
|
1110
|
+
--color-intent-accent-edge-hover: oklch(60.714355% 0.156315 250.804802 / 0.294);
|
|
1111
|
+
--color-intent-accent-edge-strong: oklch(64.930737% 0.16113 251.390213 / 0.373);
|
|
1112
|
+
--color-intent-accent-focus: oklch(55.93859% 0.139761 251.779887 / 1);
|
|
1113
|
+
--color-intent-accent-focus-width: 2px;
|
|
1114
|
+
--color-intent-danger-text: oklch(76.851326% 0.136711 22.908814 / 1);
|
|
1115
|
+
--color-intent-danger-text-hover: oklch(91.961979% 0.041 24.327399 / 1);
|
|
1116
|
+
--color-intent-danger-soft: oklch(47.243958% 0.141975 23.79909 / 0.125);
|
|
1117
|
+
--color-intent-danger-soft-hover: oklch(53.573623% 0.169405 25.454358 / 0.176);
|
|
1118
|
+
--color-intent-danger-soft-pressed: oklch(56.752685% 0.166333 24.228836 / 0.235);
|
|
1119
|
+
--color-intent-danger-soft-ink: oklch(76.851326% 0.136711 22.908814 / 1);
|
|
1120
|
+
--color-intent-danger-soft-ink-muted: oklch(76.851326% 0.136711 22.908814 / 1);
|
|
1121
|
+
--color-intent-danger-solid: oklch(58.635272% 0.19334 23.02606 / 1);
|
|
1122
|
+
--color-intent-danger-solid-hover: oklch(55.794408% 0.183673 23.02606 / 1);
|
|
1123
|
+
--color-intent-danger-solid-pressed: oklch(54.237422% 0.183673 23.02606 / 1);
|
|
1124
|
+
--color-intent-danger-solid-ink: oklch(100% 0 none / 1);
|
|
1125
|
+
--color-intent-danger-edge: oklch(56.752685% 0.166333 24.228836 / 0.235);
|
|
1126
|
+
--color-intent-danger-edge-hover: oklch(60.720412% 0.156712 23.806921 / 0.294);
|
|
1127
|
+
--color-intent-danger-edge-strong: oklch(64.91049% 0.161707 23.22664 / 0.373);
|
|
1128
|
+
--color-intent-danger-focus: oklch(55.925747% 0.139978 23.02606 / 0.42);
|
|
1129
|
+
--color-intent-danger-focus-width: 3px;
|
|
1130
|
+
--color-intent-information-text: oklch(75.932957% 0.129993 247.644507 / 1);
|
|
1131
|
+
--color-intent-information-text-hover: oklch(91.955441% 0.042718 241.682235 / 1);
|
|
1132
|
+
--color-intent-information-soft: oklch(47.81858% 0.135109 249.93113 / 0.125);
|
|
1133
|
+
--color-intent-information-soft-hover: oklch(54.24105% 0.165297 252.615383 / 0.176);
|
|
1134
|
+
--color-intent-information-soft-pressed: oklch(56.889903% 0.165035 250.91057 / 0.235);
|
|
1135
|
+
--color-intent-information-soft-ink: oklch(75.932957% 0.129993 247.644507 / 1);
|
|
1136
|
+
--color-intent-information-soft-ink-muted: oklch(75.932957% 0.129993 247.644507 / 1);
|
|
1137
|
+
--color-intent-information-solid: oklch(56.681703% 0.186805 255.023228 / 1);
|
|
1138
|
+
--color-intent-information-solid-hover: oklch(53.830079% 0.177423 255.025716 / 1);
|
|
1139
|
+
--color-intent-information-solid-pressed: oklch(52.302711% 0.176369 255.663733 / 1);
|
|
1140
|
+
--color-intent-information-solid-ink: oklch(100% 0 none / 1);
|
|
1141
|
+
--color-intent-information-edge: oklch(56.889903% 0.165035 250.91057 / 0.235);
|
|
1142
|
+
--color-intent-information-edge-hover: oklch(60.714355% 0.156315 250.804802 / 0.294);
|
|
1143
|
+
--color-intent-information-edge-strong: oklch(64.930737% 0.16113 251.390213 / 0.373);
|
|
1144
|
+
--color-intent-information-focus: oklch(55.93859% 0.139761 251.779887 / 0.42);
|
|
1145
|
+
--color-intent-information-focus-width: 3px;
|
|
1146
|
+
--color-intent-neutral-text: oklch(92.431093% 0 none / 1);
|
|
1147
|
+
--color-intent-neutral-text-hover: oklch(92.431093% 0 none / 1);
|
|
1148
|
+
--color-intent-neutral-soft: oklch(34.3079% 0.016055 196.427263 / 0.047);
|
|
1149
|
+
--color-intent-neutral-soft-hover: oklch(46.196358% 0.002178 197.081633 / 0.125);
|
|
1150
|
+
--color-intent-neutral-soft-pressed: oklch(50.507823% 0.001822 197.099619 / 0.176);
|
|
1151
|
+
--color-intent-neutral-soft-ink: oklch(86% 0 none / 1);
|
|
1152
|
+
--color-intent-neutral-soft-ink-muted: oklch(86% 0 none / 1);
|
|
1153
|
+
--color-intent-neutral-solid: oklch(92.431093% 0 none / 1);
|
|
1154
|
+
--color-intent-neutral-solid-hover: oklch(84.425293% 0 none / 1);
|
|
1155
|
+
--color-intent-neutral-solid-pressed: oklch(82.430664% 0 none / 1);
|
|
1156
|
+
--color-intent-neutral-solid-ink: oklch(19.79752% 0 none / 1);
|
|
1157
|
+
--color-intent-neutral-edge: oklch(50.507823% 0.001822 197.099619 / 0.176);
|
|
1158
|
+
--color-intent-neutral-edge-hover: oklch(52.306176% 0.001698 197.105464 / 0.235);
|
|
1159
|
+
--color-intent-neutral-edge-strong: oklch(56.829515% 0.000719 197.137733 / 0.294);
|
|
1160
|
+
--color-intent-neutral-focus: oklch(56.062653% 0 none / 0.42);
|
|
1161
|
+
--color-intent-neutral-focus-width: 3px;
|
|
1162
|
+
--color-intent-success-text: oklch(75.524628% 0.105769 157.679534 / 1);
|
|
1163
|
+
--color-intent-success-text-hover: oklch(92.002315% 0.036806 157.679534 / 1);
|
|
1164
|
+
--color-intent-success-soft: oklch(47.48278% 0.100126 158.433394 / 0.125);
|
|
1165
|
+
--color-intent-success-soft-hover: oklch(53.691016% 0.119699 157.894009 / 0.176);
|
|
1166
|
+
--color-intent-success-soft-pressed: oklch(56.887883% 0.115676 157.640944 / 0.235);
|
|
1167
|
+
--color-intent-success-soft-ink: oklch(75.524628% 0.105769 157.679534 / 1);
|
|
1168
|
+
--color-intent-success-soft-ink-muted: oklch(75.524628% 0.105769 157.679534 / 1);
|
|
1169
|
+
--color-intent-success-solid: oklch(54.761455% 0.1304 156.995342 / 1);
|
|
1170
|
+
--color-intent-success-solid-hover: oklch(51.832749% 0.123607 156.914421 / 1);
|
|
1171
|
+
--color-intent-success-solid-pressed: oklch(50.345459% 0.121481 156.273445 / 1);
|
|
1172
|
+
--color-intent-success-solid-ink: oklch(100% 0 none / 1);
|
|
1173
|
+
--color-intent-success-edge: oklch(56.887883% 0.115676 157.640944 / 0.235);
|
|
1174
|
+
--color-intent-success-edge-hover: oklch(60.841675% 0.108338 157.660028 / 0.294);
|
|
1175
|
+
--color-intent-success-edge-strong: oklch(65.007154% 0.111551 157.668655 / 0.373);
|
|
1176
|
+
--color-intent-success-focus: oklch(55.997491% 0.096202 157.679534 / 0.42);
|
|
1177
|
+
--color-intent-success-focus-width: 3px;
|
|
1178
|
+
--color-intent-warning-text: oklch(76.965573% 0.125137 84.129977 / 1);
|
|
1179
|
+
--color-intent-warning-text-hover: oklch(92.432169% 0.043546 84.129977 / 1);
|
|
1180
|
+
--color-intent-warning-soft: oklch(50.127754% 0.10245 88.381541 / 0.125);
|
|
1181
|
+
--color-intent-warning-soft-hover: oklch(55.552674% 0.114073 83.739134 / 0.176);
|
|
1182
|
+
--color-intent-warning-soft-pressed: oklch(57.611344% 0.118384 83.347621 / 0.235);
|
|
1183
|
+
--color-intent-warning-soft-ink: oklch(76.965573% 0.125137 84.129977 / 1);
|
|
1184
|
+
--color-intent-warning-soft-ink-muted: oklch(76.965573% 0.125137 84.129977 / 1);
|
|
1185
|
+
--color-intent-warning-solid: oklch(85.369678% 0.157207 84.129977 / 1);
|
|
1186
|
+
--color-intent-warning-solid-hover: oklch(88.267406% 0.145791 89.020098 / 1);
|
|
1187
|
+
--color-intent-warning-solid-pressed: oklch(89.265713% 0.144587 91.230586 / 1);
|
|
1188
|
+
--color-intent-warning-solid-ink: oklch(35.612648% 0.031441 84.129977 / 1);
|
|
1189
|
+
--color-intent-warning-edge: oklch(57.611344% 0.118384 83.347621 / 0.235);
|
|
1190
|
+
--color-intent-warning-edge-hover: oklch(61.497343% 0.125909 85.833525 / 0.294);
|
|
1191
|
+
--color-intent-warning-edge-strong: oklch(65.04112% 0.133369 84.629105 / 0.373);
|
|
1192
|
+
--color-intent-warning-focus: oklch(56.020502% 0.113818 84.129977 / 0.42);
|
|
1193
|
+
--color-intent-warning-focus-width: 3px;
|
|
1194
|
+
--background-interaction-selection-accent: oklch(77.631661% 0.121666 245.605952 / 0.052868);
|
|
1195
|
+
--background-interaction-selection-accent-hover: oklch(77.631661% 0.121666 245.605952 / 0.078446);
|
|
1196
|
+
--color-interaction-selection-accent-ink: oklch(75.932957% 0.129993 247.644507 / 1);
|
|
1197
|
+
--background-interaction-selection-danger: oklch(78.425088% 0.125337 22.763785 / 0.050484);
|
|
1198
|
+
--background-interaction-selection-danger-hover: oklch(78.425088% 0.125337 22.763785 / 0.074815);
|
|
1199
|
+
--color-interaction-selection-danger-ink: oklch(76.851326% 0.136711 22.908814 / 1);
|
|
1200
|
+
--background-interaction-selection-information: oklch(77.631661% 0.121666 245.605952 / 0.052868);
|
|
1201
|
+
--background-interaction-selection-information-hover: oklch(77.631661% 0.121666 245.605952 / 0.078446);
|
|
1202
|
+
--color-interaction-selection-information-ink: oklch(75.932957% 0.129993 247.644507 / 1);
|
|
1203
|
+
--background-interaction-selection-neutral: oklch(89.093811% 0 none / 0.026409);
|
|
1204
|
+
--background-interaction-selection-neutral-hover: oklch(89.093811% 0 none / 0.043644);
|
|
1205
|
+
--color-interaction-selection-neutral-ink: oklch(86% 0 none / 1);
|
|
1206
|
+
--background-interaction-selection-success: oklch(78.22263% 0.109703 157.679229 / 0.053901);
|
|
1207
|
+
--background-interaction-selection-success-hover: oklch(78.22263% 0.109703 157.679229 / 0.07965);
|
|
1208
|
+
--color-interaction-selection-success-ink: oklch(75.524628% 0.105769 157.679534 / 1);
|
|
1209
|
+
--background-interaction-selection-warning: oklch(79.718501% 0.129813 84.141302 / 0.05001);
|
|
1210
|
+
--background-interaction-selection-warning-hover: oklch(79.718501% 0.129813 84.141302 / 0.07376);
|
|
1211
|
+
--color-interaction-selection-warning-ink: oklch(76.965573% 0.125137 84.129977 / 1);
|
|
1212
|
+
--color-interaction-hover: oklch(34.3079% 0.016055 196.427263 / 0.035);
|
|
1213
|
+
--color-interaction-pressed: oklch(46.196358% 0.002178 197.081633 / 0.055);
|
|
1214
|
+
--color-interaction-selected: oklch(77.631661% 0.121666 245.605952 / 0.052868);
|
|
1215
|
+
--color-interaction-selected-hover: oklch(77.631661% 0.121666 245.605952 / 0.078446);
|
|
1216
|
+
--opacity-interaction-disabled: 0.5;
|
|
1217
|
+
--color-interaction-disabled: oklch(34.3079% 0.016055 196.427263 / 0.047);
|
|
1218
|
+
--color-interaction-disabled-edge: oklch(56.829515% 0.000719 197.137733 / 0.294);
|
|
1219
|
+
--color-interaction-disabled-ink: var(--ui-surface-ink-muted);
|
|
1220
|
+
--color-scrim: oklch(20.962653% 0 none / 0.55);
|
|
1221
|
+
--color-surface-0: oklch(20.462653% 0 none / 1);
|
|
1222
|
+
--color-surface-0-ink: oklch(92.184718% 0 none / 1);
|
|
1223
|
+
--color-surface-0-ink-muted: oklch(76.561054% 0 none / 1);
|
|
1224
|
+
--shadow-elevation-0: 0 0 0 0 transparent;
|
|
1225
|
+
--color-surface-1: oklch(22.962653% 0 none / 1);
|
|
1226
|
+
--color-surface-1-ink: oklch(92.501588% 0 none / 1);
|
|
1227
|
+
--color-surface-1-ink-muted: oklch(76.93548% 0 none / 1);
|
|
1228
|
+
--shadow-elevation-1: inset 0px 0px 0px 1px oklch(100% 0 none / 0.02);
|
|
1229
|
+
--color-surface-2: oklch(25.462653% 0.000386 251.779887 / 1);
|
|
1230
|
+
--color-surface-2-ink: oklch(92.908812% 0.000077 251.779887 / 1);
|
|
1231
|
+
--color-surface-2-ink-muted: oklch(77.415975% 0.000077 251.779887 / 1);
|
|
1232
|
+
--shadow-elevation-2: 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.01), inset 0px 0px 0px 1px oklch(100% 0 none / 0.02);
|
|
1233
|
+
--color-surface-3: oklch(28.262653% 0.000579 251.779887 / 1);
|
|
1234
|
+
--color-surface-3-ink: oklch(93.477871% 0.000116 251.779887 / 1);
|
|
1235
|
+
--color-surface-3-ink-muted: oklch(78.08603% 0.000116 251.779887 / 1);
|
|
1236
|
+
--shadow-elevation-3: 0px 0px 0px 1px oklch(0% 0 none / 0.12), 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), 0px 3px 3px -1.5px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.02), inset 0px 0px 0px 1px oklch(100% 0 none / 0.02);
|
|
1237
|
+
--color-surface-4: oklch(31.262653% 0.000965 251.779887 / 1);
|
|
1238
|
+
--color-surface-4-ink: oklch(94.237603% 0.000193 251.779887 / 1);
|
|
1239
|
+
--color-surface-4-ink-muted: oklch(78.978204% 0.000193 251.779887 / 1);
|
|
1240
|
+
--shadow-elevation-4: 0px 0px 0px 1px oklch(0% 0 none / 0.14), 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), 0px 3px 3px -1.5px oklch(0% 0 none / 0.18), 0px 6px 6px -3px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.02), inset 0px 0px 0px 1px oklch(100% 0 none / 0.04);
|
|
1241
|
+
--color-surface-5: oklch(34.462653% 0.001351 251.779887 / 1);
|
|
1242
|
+
--color-surface-5-ink: oklch(95.30435% 0.00027 251.779887 / 1);
|
|
1243
|
+
--color-surface-5-ink-muted: oklch(80.226419% 0.00027 251.779887 / 1);
|
|
1244
|
+
--shadow-elevation-5: 0px 0px 0px 1px oklch(0% 0 none / 0.16), 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), 0px 3px 3px -1.5px oklch(0% 0 none / 0.18), 0px 6px 6px -3px oklch(0% 0 none / 0.18), 0px 12px 12px -6px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.04), inset 0px 0px 0px 1px oklch(100% 0 none / 0.04);
|
|
1245
|
+
--color-surface-6: oklch(37.862653% 0.001737 251.779887 / 1);
|
|
1246
|
+
--color-surface-6-ink: oklch(96.597068% 0.000347 251.779887 / 1);
|
|
1247
|
+
--color-surface-6-ink-muted: oklch(81.732335% 0.000347 251.779887 / 1);
|
|
1248
|
+
--shadow-elevation-6: 0px 0px 0px 1px oklch(0% 0 none / 0.18), 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), 0px 3px 3px -1.5px oklch(0% 0 none / 0.18), 0px 6px 6px -3px oklch(0% 0 none / 0.18), 0px 12px 12px -6px oklch(0% 0 none / 0.18), 0px 24px 24px -12px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.04), inset 0px 0px 0px 1px oklch(100% 0 none / 0.06);
|
|
1249
|
+
--color-surface-7: oklch(41.462653% 0.002316 251.779887 / 1);
|
|
1250
|
+
--color-surface-7-ink: oklch(98.092835% 0.000463 251.779887 / 1);
|
|
1251
|
+
--color-surface-7-ink-muted: oklch(83.46613% 0.000463 251.779887 / 1);
|
|
1252
|
+
--shadow-elevation-7: 0px 0px 0px 1px oklch(0% 0 none / 0.2), 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), 0px 3px 3px -1.5px oklch(0% 0 none / 0.18), 0px 6px 6px -3px oklch(0% 0 none / 0.18), 0px 12px 12px -6px oklch(0% 0 none / 0.18), 0px 24px 24px -12px oklch(0% 0 none / 0.18), 0px 48px 48px -24px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.06), inset 0px 0px 0px 1px oklch(100% 0 none / 0.06);
|
|
1253
|
+
--color-surface-8: oklch(45.262653% 0.002896 251.779887 / 1);
|
|
1254
|
+
--color-surface-8-ink: oklch(99.80618% 0.000579 251.779887 / 1);
|
|
1255
|
+
--color-surface-8-ink-muted: oklch(85.441382% 0.000579 251.779887 / 1);
|
|
1256
|
+
--shadow-elevation-8: 0px 0px 0px 1px oklch(0% 0 none / 0.22), 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), 0px 3px 3px -1.5px oklch(0% 0 none / 0.18), 0px 6px 6px -3px oklch(0% 0 none / 0.18), 0px 12px 12px -6px oklch(0% 0 none / 0.18), 0px 24px 24px -12px oklch(0% 0 none / 0.18), 0px 48px 48px -24px oklch(0% 0 none / 0.18), 0px 96px 96px -48px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.06), inset 0px 0px 0px 1px oklch(100% 0 none / 0.06);
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
@media (color-gamut: p3) {
|
|
1260
|
+
:root, .light {
|
|
1261
|
+
--color-separator: oklch(61.543431% 0.02801 347.674878 / 0.098);
|
|
1262
|
+
--color-separator-muted: oklch(61.543431% 0.02801 347.674878 / 0.0588);
|
|
1263
|
+
--color-intent-accent-text: oklch(55.080786% 0.171613 251.779887 / 1);
|
|
1264
|
+
--color-intent-accent-text-hover: oklch(35.151696% 0.099995 251.779887 / 1);
|
|
1265
|
+
--color-intent-accent-soft: oklch(55.666931% 0.26412 258.247129 / 0.118874);
|
|
1266
|
+
--color-intent-accent-soft-hover: oklch(65.09651% 0.21461 245.393007 / 0.256337);
|
|
1267
|
+
--color-intent-accent-soft-pressed: oklch(60.277055% 0.237774 252.863192 / 0.329);
|
|
1268
|
+
--color-intent-accent-soft-ink: oklch(55.080786% 0.171613 251.779887 / 1);
|
|
1269
|
+
--color-intent-accent-soft-ink-muted: oklch(55.080786% 0.171613 251.779887 / 1);
|
|
1270
|
+
--color-intent-accent-solid: oklch(56.104929% 0.19304 251.779887 / 1);
|
|
1271
|
+
--color-intent-accent-solid-hover: oklch(53.097766% 0.19111 251.779887 / 1);
|
|
1272
|
+
--color-intent-accent-solid-pressed: oklch(51.604177% 0.19111 251.779887 / 1);
|
|
1273
|
+
--color-intent-accent-solid-ink: oklch(100% 0 none / 1);
|
|
1274
|
+
--color-intent-accent-edge: oklch(60.277055% 0.237774 252.863192 / 0.329);
|
|
1275
|
+
--color-intent-accent-edge-hover: oklch(54.961845% 0.268431 258.923813 / 0.394);
|
|
1276
|
+
--color-intent-accent-edge-strong: oklch(47.393446% 0.307281 263.498529 / 0.469);
|
|
1277
|
+
--color-intent-accent-focus: oklch(71.509921% 0.14671 251.779887 / 1);
|
|
1278
|
+
--color-intent-accent-focus-width: 2px;
|
|
1279
|
+
--color-intent-danger-text: oklch(56.831333% 0.171879 23.02606 / 1);
|
|
1280
|
+
--color-intent-danger-text-hover: oklch(35.572963% 0.10015 23.02606 / 1);
|
|
1281
|
+
--color-intent-danger-soft: oklch(64.857408% 0.299485 28.958133 / 0.118386);
|
|
1282
|
+
--color-intent-danger-soft-hover: oklch(64.857408% 0.299485 28.958133 / 0.235341);
|
|
1283
|
+
--color-intent-danger-soft-pressed: oklch(64.208805% 0.29649 28.958133 / 0.329);
|
|
1284
|
+
--color-intent-danger-soft-ink: oklch(56.831333% 0.171879 23.02606 / 1);
|
|
1285
|
+
--color-intent-danger-soft-ink-muted: oklch(56.831333% 0.171879 23.02606 / 1);
|
|
1286
|
+
--color-intent-danger-solid: oklch(58.635272% 0.19334 23.02606 / 1);
|
|
1287
|
+
--color-intent-danger-solid-hover: oklch(55.633546% 0.191407 23.02606 / 1);
|
|
1288
|
+
--color-intent-danger-solid-pressed: oklch(54.131096% 0.191407 23.02606 / 1);
|
|
1289
|
+
--color-intent-danger-solid-ink: oklch(100% 0 none / 1);
|
|
1290
|
+
--color-intent-danger-edge: oklch(64.208805% 0.29649 28.958133 / 0.329);
|
|
1291
|
+
--color-intent-danger-edge-hover: oklch(62.115567% 0.286825 28.958133 / 0.394);
|
|
1292
|
+
--color-intent-danger-edge-strong: oklch(59.276352% 0.273714 28.958133 / 0.469);
|
|
1293
|
+
--color-intent-danger-focus: oklch(71.489264% 0.146938 23.02606 / 0.42);
|
|
1294
|
+
--color-intent-danger-focus-width: 3px;
|
|
1295
|
+
--color-intent-information-text: oklch(55.080786% 0.171613 251.779887 / 1);
|
|
1296
|
+
--color-intent-information-text-hover: oklch(35.151696% 0.099995 251.779887 / 1);
|
|
1297
|
+
--color-intent-information-soft: oklch(55.666931% 0.26412 258.247129 / 0.118874);
|
|
1298
|
+
--color-intent-information-soft-hover: oklch(65.09651% 0.21461 245.393007 / 0.256337);
|
|
1299
|
+
--color-intent-information-soft-pressed: oklch(60.277055% 0.237774 252.863192 / 0.329);
|
|
1300
|
+
--color-intent-information-soft-ink: oklch(55.080786% 0.171613 251.779887 / 1);
|
|
1301
|
+
--color-intent-information-soft-ink-muted: oklch(55.080786% 0.171613 251.779887 / 1);
|
|
1302
|
+
--color-intent-information-solid: oklch(56.104929% 0.19304 251.779887 / 1);
|
|
1303
|
+
--color-intent-information-solid-hover: oklch(53.097766% 0.19111 251.779887 / 1);
|
|
1304
|
+
--color-intent-information-solid-pressed: oklch(51.604177% 0.19111 251.779887 / 1);
|
|
1305
|
+
--color-intent-information-solid-ink: oklch(100% 0 none / 1);
|
|
1306
|
+
--color-intent-information-edge: oklch(60.277055% 0.237774 252.863192 / 0.329);
|
|
1307
|
+
--color-intent-information-edge-hover: oklch(54.961845% 0.268431 258.923813 / 0.394);
|
|
1308
|
+
--color-intent-information-edge-strong: oklch(47.393446% 0.307281 263.498529 / 0.469);
|
|
1309
|
+
--color-intent-information-focus: oklch(71.509921% 0.14671 251.779887 / 0.42);
|
|
1310
|
+
--color-intent-information-focus-width: 3px;
|
|
1311
|
+
--color-intent-neutral-text: oklch(12.382253% 0 none / 1);
|
|
1312
|
+
--color-intent-neutral-text-hover: oklch(12.382253% 0 none / 1);
|
|
1313
|
+
--color-intent-neutral-soft: oklch(75.896553% 0.058885 301.418569 / 0.043);
|
|
1314
|
+
--color-intent-neutral-soft-hover: oklch(61.543431% 0.02801 347.674878 / 0.098);
|
|
1315
|
+
--color-intent-neutral-soft-pressed: oklch(52.180039% 0.025048 329.378998 / 0.161);
|
|
1316
|
+
--color-intent-neutral-soft-ink: oklch(18% 0 none / 1);
|
|
1317
|
+
--color-intent-neutral-soft-ink-muted: oklch(18% 0 none / 1);
|
|
1318
|
+
--color-intent-neutral-solid: oklch(12.382253% 0 none / 1);
|
|
1319
|
+
--color-intent-neutral-solid-hover: oklch(32.394043% 0 none / 1);
|
|
1320
|
+
--color-intent-neutral-solid-pressed: oklch(36.397949% 0 none / 1);
|
|
1321
|
+
--color-intent-neutral-solid-ink: oklch(94.063697% 0 none / 1);
|
|
1322
|
+
--color-intent-neutral-edge: oklch(52.180039% 0.025048 329.378998 / 0.161);
|
|
1323
|
+
--color-intent-neutral-edge-hover: oklch(29.430239% 0.068324 212.150323 / 0.229);
|
|
1324
|
+
--color-intent-neutral-edge-strong: oklch(0% 0 none / 0.294);
|
|
1325
|
+
--color-intent-neutral-focus: oklch(71.310365% 0 none / 0.42);
|
|
1326
|
+
--color-intent-neutral-focus-width: 3px;
|
|
1327
|
+
--color-intent-success-text: oklch(53.50073% 0.118126 157.679534 / 1);
|
|
1328
|
+
--color-intent-success-text-hover: oklch(34.498218% 0.068829 157.679534 / 1);
|
|
1329
|
+
--color-intent-success-soft: oklch(62.664457% 0.272064 145.644956 / 0.10635);
|
|
1330
|
+
--color-intent-success-soft-hover: oklch(63.480728% 0.275608 145.644956 / 0.224281);
|
|
1331
|
+
--color-intent-success-soft-pressed: oklch(60.977856% 0.264742 145.644956 / 0.329);
|
|
1332
|
+
--color-intent-success-soft-ink: oklch(53.50073% 0.118126 157.679534 / 1);
|
|
1333
|
+
--color-intent-success-soft-ink-muted: oklch(53.50073% 0.118126 157.679534 / 1);
|
|
1334
|
+
--color-intent-success-solid: oklch(54.607263% 0.132875 157.679534 / 1);
|
|
1335
|
+
--color-intent-success-solid-hover: oklch(51.604915% 0.131547 157.679534 / 1);
|
|
1336
|
+
--color-intent-success-solid-pressed: oklch(50.096935% 0.131547 157.679534 / 1);
|
|
1337
|
+
--color-intent-success-solid-ink: oklch(100% 0 none / 1);
|
|
1338
|
+
--color-intent-success-edge: oklch(60.977856% 0.264742 145.644956 / 0.329);
|
|
1339
|
+
--color-intent-success-edge-hover: oklch(56.96563% 0.247322 145.644956 / 0.394);
|
|
1340
|
+
--color-intent-success-edge-strong: oklch(52.143613% 0.226387 145.644956 / 0.469);
|
|
1341
|
+
--color-intent-success-focus: oklch(71.410855% 0.100985 157.679534 / 0.42);
|
|
1342
|
+
--color-intent-success-focus-width: 3px;
|
|
1343
|
+
--color-intent-warning-text: oklch(55.558425% 0.131808 82.201817 / 1);
|
|
1344
|
+
--color-intent-warning-text-hover: oklch(36.194203% 0.081433 84.129977 / 1);
|
|
1345
|
+
--color-intent-warning-soft: oklch(73.26633% 0.173057 91.532471 / 0.140334);
|
|
1346
|
+
--color-intent-warning-soft-hover: oklch(72.462387% 0.171269 92.157803 / 0.261);
|
|
1347
|
+
--color-intent-warning-soft-pressed: oklch(65.913261% 0.155502 89.773867 / 0.329);
|
|
1348
|
+
--color-intent-warning-soft-ink: oklch(55.558425% 0.131808 82.201817 / 1);
|
|
1349
|
+
--color-intent-warning-soft-ink-muted: oklch(55.558425% 0.131808 82.201817 / 1);
|
|
1350
|
+
--color-intent-warning-solid: oklch(85.369678% 0.157207 84.129977 / 1);
|
|
1351
|
+
--color-intent-warning-solid-hover: oklch(82.369678% 0.155635 84.129977 / 1);
|
|
1352
|
+
--color-intent-warning-solid-pressed: oklch(80.861444% 0.155635 84.129977 / 1);
|
|
1353
|
+
--color-intent-warning-solid-ink: oklch(35.612648% 0.031441 84.129977 / 1);
|
|
1354
|
+
--color-intent-warning-edge: oklch(65.913261% 0.155502 89.773867 / 0.329);
|
|
1355
|
+
--color-intent-warning-edge-hover: oklch(59.265324% 0.140034 84.956326 / 0.394);
|
|
1356
|
+
--color-intent-warning-edge-strong: oklch(52.159903% 0.123347 84.243859 / 0.469);
|
|
1357
|
+
--color-intent-warning-focus: oklch(71.848357% 0.119477 84.129977 / 0.42);
|
|
1358
|
+
--color-intent-warning-focus-width: 3px;
|
|
1359
|
+
--background-interaction-selection-accent: oklch(50.510829% 0.192884 251.700212 / 0.114901);
|
|
1360
|
+
--background-interaction-selection-accent-hover: oklch(50.510829% 0.192884 251.700212 / 0.161613);
|
|
1361
|
+
--color-interaction-selection-accent-ink: oklch(55.080786% 0.171613 251.779887 / 1);
|
|
1362
|
+
--background-interaction-selection-danger: oklch(49.039211% 0.226443 28.958133 / 0.114714);
|
|
1363
|
+
--background-interaction-selection-danger-hover: oklch(49.039211% 0.226443 28.958133 / 0.161306);
|
|
1364
|
+
--color-interaction-selection-danger-ink: oklch(56.831333% 0.171879 23.02606 / 1);
|
|
1365
|
+
--background-interaction-selection-information: oklch(50.510829% 0.192884 251.700212 / 0.114901);
|
|
1366
|
+
--background-interaction-selection-information-hover: oklch(50.510829% 0.192884 251.700212 / 0.161613);
|
|
1367
|
+
--color-interaction-selection-information-ink: oklch(55.080786% 0.171613 251.779887 / 1);
|
|
1368
|
+
--background-interaction-selection-neutral: oklch(0% 0 none / 0.074218);
|
|
1369
|
+
--background-interaction-selection-neutral-hover: oklch(0% 0 none / 0.116935);
|
|
1370
|
+
--color-interaction-selection-neutral-ink: oklch(18% 0 none / 1);
|
|
1371
|
+
--background-interaction-selection-success: oklch(45.368413% 0.179612 148.854702 / 0.113315);
|
|
1372
|
+
--background-interaction-selection-success-hover: oklch(45.368413% 0.179612 148.854702 / 0.15938);
|
|
1373
|
+
--color-interaction-selection-success-ink: oklch(53.50073% 0.118126 157.679534 / 1);
|
|
1374
|
+
--background-interaction-selection-warning: oklch(52.264559% 0.123557 84.489733 / 0.120375);
|
|
1375
|
+
--background-interaction-selection-warning-hover: oklch(52.264559% 0.123557 84.489733 / 0.169313);
|
|
1376
|
+
--color-interaction-selection-warning-ink: oklch(55.558425% 0.131808 82.201817 / 1);
|
|
1377
|
+
--color-interaction-hover: oklch(75.896553% 0.058885 301.418569 / 0.035);
|
|
1378
|
+
--color-interaction-pressed: oklch(61.543431% 0.02801 347.674878 / 0.055);
|
|
1379
|
+
--color-interaction-selected: oklch(50.510829% 0.192884 251.700212 / 0.114901);
|
|
1380
|
+
--color-interaction-selected-hover: oklch(50.510829% 0.192884 251.700212 / 0.161613);
|
|
1381
|
+
--opacity-interaction-disabled: 0.5;
|
|
1382
|
+
--color-interaction-disabled: oklch(75.896553% 0.058885 301.418569 / 0.043);
|
|
1383
|
+
--color-interaction-disabled-edge: oklch(0% 0 none / 0.294);
|
|
1384
|
+
--color-interaction-disabled-ink: var(--ui-surface-ink-muted);
|
|
1385
|
+
--color-scrim: oklch(12.382253% 0 none / 0.35);
|
|
1386
|
+
--color-surface-0: oklch(98.510365% 0 none / 1);
|
|
1387
|
+
--color-surface-0-ink: oklch(20.93472% 0 none / 1);
|
|
1388
|
+
--color-surface-0-ink-muted: oklch(55.779494% 0 none / 1);
|
|
1389
|
+
--shadow-elevation-0: 0 0 0 0 transparent;
|
|
1390
|
+
--color-surface-1: oklch(99.110365% 0 none / 1);
|
|
1391
|
+
--color-surface-1-ink: oklch(21.693184% 0 none / 1);
|
|
1392
|
+
--color-surface-1-ink-muted: oklch(56.194798% 0 none / 1);
|
|
1393
|
+
--shadow-elevation-1: 0px 0px 0px 1px oklch(0% 0 none / 0.06);
|
|
1394
|
+
--color-surface-2: oklch(100% 0 none / 1);
|
|
1395
|
+
--color-surface-2-ink: oklch(22.74366% 0 none / 1);
|
|
1396
|
+
--color-surface-2-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1397
|
+
--shadow-elevation-2: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06);
|
|
1398
|
+
--color-surface-3: oklch(100% 0 none / 1);
|
|
1399
|
+
--color-surface-3-ink: oklch(22.74366% 0 none / 1);
|
|
1400
|
+
--color-surface-3-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1401
|
+
--shadow-elevation-3: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06), 0px 3px 3px -1.5px oklch(0% 0 none / 0.06);
|
|
1402
|
+
--color-surface-4: oklch(100% 0 none / 1);
|
|
1403
|
+
--color-surface-4-ink: oklch(22.74366% 0 none / 1);
|
|
1404
|
+
--color-surface-4-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1405
|
+
--shadow-elevation-4: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06), 0px 3px 3px -1.5px oklch(0% 0 none / 0.06), 0px 6px 6px -3px oklch(0% 0 none / 0.06);
|
|
1406
|
+
--color-surface-5: oklch(100% 0 none / 1);
|
|
1407
|
+
--color-surface-5-ink: oklch(22.74366% 0 none / 1);
|
|
1408
|
+
--color-surface-5-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1409
|
+
--shadow-elevation-5: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06), 0px 3px 3px -1.5px oklch(0% 0 none / 0.06), 0px 6px 6px -3px oklch(0% 0 none / 0.06), 0px 12px 12px -6px oklch(0% 0 none / 0.06);
|
|
1410
|
+
--color-surface-6: oklch(100% 0 none / 1);
|
|
1411
|
+
--color-surface-6-ink: oklch(22.74366% 0 none / 1);
|
|
1412
|
+
--color-surface-6-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1413
|
+
--shadow-elevation-6: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06), 0px 3px 3px -1.5px oklch(0% 0 none / 0.06), 0px 6px 6px -3px oklch(0% 0 none / 0.06), 0px 12px 12px -6px oklch(0% 0 none / 0.06), 0px 24px 24px -12px oklch(0% 0 none / 0.06);
|
|
1414
|
+
--color-surface-7: oklch(100% 0 none / 1);
|
|
1415
|
+
--color-surface-7-ink: oklch(22.74366% 0 none / 1);
|
|
1416
|
+
--color-surface-7-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1417
|
+
--shadow-elevation-7: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06), 0px 3px 3px -1.5px oklch(0% 0 none / 0.06), 0px 6px 6px -3px oklch(0% 0 none / 0.06), 0px 12px 12px -6px oklch(0% 0 none / 0.06), 0px 24px 24px -12px oklch(0% 0 none / 0.06), 0px 48px 48px -24px oklch(0% 0 none / 0.06);
|
|
1418
|
+
--color-surface-8: oklch(100% 0 none / 1);
|
|
1419
|
+
--color-surface-8-ink: oklch(22.74366% 0 none / 1);
|
|
1420
|
+
--color-surface-8-ink-muted: oklch(56.808564% 0 none / 1);
|
|
1421
|
+
--shadow-elevation-8: 0px 0px 0px 1px oklch(0% 0 none / 0.06), 0px 1px 1px -0.5px oklch(0% 0 none / 0.06), 0px 3px 3px -1.5px oklch(0% 0 none / 0.06), 0px 6px 6px -3px oklch(0% 0 none / 0.06), 0px 12px 12px -6px oklch(0% 0 none / 0.06), 0px 24px 24px -12px oklch(0% 0 none / 0.06), 0px 48px 48px -24px oklch(0% 0 none / 0.06), 0px 96px 96px -48px oklch(0% 0 none / 0.06);
|
|
1422
|
+
}
|
|
1423
|
+
.dark {
|
|
1424
|
+
--color-separator: oklch(46.131669% 0.007996 241.953581 / 0.125);
|
|
1425
|
+
--color-separator-muted: oklch(46.131669% 0.007996 241.953581 / 0.075);
|
|
1426
|
+
--color-intent-accent-text: oklch(76.009909% 0.139824 248.518651 / 1);
|
|
1427
|
+
--color-intent-accent-text-hover: oklch(92.037298% 0.045225 244.632508 / 1);
|
|
1428
|
+
--color-intent-accent-soft: oklch(47.363522% 0.137505 246.780027 / 0.125);
|
|
1429
|
+
--color-intent-accent-soft-hover: oklch(53.700834% 0.167927 249.654834 / 0.176);
|
|
1430
|
+
--color-intent-accent-soft-pressed: oklch(56.741432% 0.165659 250.068002 / 0.235);
|
|
1431
|
+
--color-intent-accent-soft-ink: oklch(76.009909% 0.139824 248.518651 / 1);
|
|
1432
|
+
--color-intent-accent-soft-ink-muted: oklch(76.009909% 0.139824 248.518651 / 1);
|
|
1433
|
+
--color-intent-accent-solid: oklch(56.104929% 0.19304 251.779887 / 1);
|
|
1434
|
+
--color-intent-accent-solid-hover: oklch(53.251251% 0.183388 251.779887 / 1);
|
|
1435
|
+
--color-intent-accent-solid-pressed: oklch(51.700377% 0.183388 251.779887 / 1);
|
|
1436
|
+
--color-intent-accent-solid-ink: oklch(100% 0 none / 1);
|
|
1437
|
+
--color-intent-accent-edge: oklch(56.741432% 0.165659 250.068002 / 0.235);
|
|
1438
|
+
--color-intent-accent-edge-hover: oklch(60.760916% 0.155806 251.088217 / 0.294);
|
|
1439
|
+
--color-intent-accent-edge-strong: oklch(64.930737% 0.16113 251.390213 / 0.373);
|
|
1440
|
+
--color-intent-accent-focus: oklch(55.93859% 0.139761 251.779887 / 1);
|
|
1441
|
+
--color-intent-accent-focus-width: 2px;
|
|
1442
|
+
--color-intent-danger-text: oklch(78.331653% 0.153899 23.02606 / 1);
|
|
1443
|
+
--color-intent-danger-text-hover: oklch(92.624873% 0.04868 23.583422 / 1);
|
|
1444
|
+
--color-intent-danger-soft: oklch(47.645191% 0.138897 25.055893 / 0.125);
|
|
1445
|
+
--color-intent-danger-soft-hover: oklch(53.569319% 0.169444 25.566189 / 0.176);
|
|
1446
|
+
--color-intent-danger-soft-pressed: oklch(56.750771% 0.166348 24.27652 / 0.235);
|
|
1447
|
+
--color-intent-danger-soft-ink: oklch(78.331653% 0.153899 23.02606 / 1);
|
|
1448
|
+
--color-intent-danger-soft-ink-muted: oklch(78.331653% 0.153899 23.02606 / 1);
|
|
1449
|
+
--color-intent-danger-solid: oklch(58.635272% 0.19334 23.02606 / 1);
|
|
1450
|
+
--color-intent-danger-solid-hover: oklch(55.794408% 0.183673 23.02606 / 1);
|
|
1451
|
+
--color-intent-danger-solid-pressed: oklch(54.237422% 0.183673 23.02606 / 1);
|
|
1452
|
+
--color-intent-danger-solid-ink: oklch(100% 0 none / 1);
|
|
1453
|
+
--color-intent-danger-edge: oklch(56.750771% 0.166348 24.27652 / 0.235);
|
|
1454
|
+
--color-intent-danger-edge-hover: oklch(60.718746% 0.156724 23.848317 / 0.294);
|
|
1455
|
+
--color-intent-danger-edge-strong: oklch(64.91049% 0.161707 23.22664 / 0.373);
|
|
1456
|
+
--color-intent-danger-focus: oklch(55.925747% 0.139978 23.02606 / 0.42);
|
|
1457
|
+
--color-intent-danger-focus-width: 3px;
|
|
1458
|
+
--color-intent-information-text: oklch(76.009909% 0.139824 248.518651 / 1);
|
|
1459
|
+
--color-intent-information-text-hover: oklch(92.037298% 0.045225 244.632508 / 1);
|
|
1460
|
+
--color-intent-information-soft: oklch(47.363522% 0.137505 246.780027 / 0.125);
|
|
1461
|
+
--color-intent-information-soft-hover: oklch(53.700834% 0.167927 249.654834 / 0.176);
|
|
1462
|
+
--color-intent-information-soft-pressed: oklch(56.741432% 0.165659 250.068002 / 0.235);
|
|
1463
|
+
--color-intent-information-soft-ink: oklch(76.009909% 0.139824 248.518651 / 1);
|
|
1464
|
+
--color-intent-information-soft-ink-muted: oklch(76.009909% 0.139824 248.518651 / 1);
|
|
1465
|
+
--color-intent-information-solid: oklch(56.104929% 0.19304 251.779887 / 1);
|
|
1466
|
+
--color-intent-information-solid-hover: oklch(53.251251% 0.183388 251.779887 / 1);
|
|
1467
|
+
--color-intent-information-solid-pressed: oklch(51.700377% 0.183388 251.779887 / 1);
|
|
1468
|
+
--color-intent-information-solid-ink: oklch(100% 0 none / 1);
|
|
1469
|
+
--color-intent-information-edge: oklch(56.741432% 0.165659 250.068002 / 0.235);
|
|
1470
|
+
--color-intent-information-edge-hover: oklch(60.760916% 0.155806 251.088217 / 0.294);
|
|
1471
|
+
--color-intent-information-edge-strong: oklch(64.930737% 0.16113 251.390213 / 0.373);
|
|
1472
|
+
--color-intent-information-focus: oklch(55.93859% 0.139761 251.779887 / 0.42);
|
|
1473
|
+
--color-intent-information-focus-width: 3px;
|
|
1474
|
+
--color-intent-neutral-text: oklch(92.431093% 0 none / 1);
|
|
1475
|
+
--color-intent-neutral-text-hover: oklch(92.431093% 0 none / 1);
|
|
1476
|
+
--color-intent-neutral-soft: oklch(34.407394% 0.022601 220.579947 / 0.047);
|
|
1477
|
+
--color-intent-neutral-soft-hover: oklch(46.131669% 0.007996 241.953581 / 0.125);
|
|
1478
|
+
--color-intent-neutral-soft-pressed: oklch(50.493504% 0.00231 195.834465 / 0.176);
|
|
1479
|
+
--color-intent-neutral-soft-ink: oklch(86% 0 none / 1);
|
|
1480
|
+
--color-intent-neutral-soft-ink-muted: oklch(86% 0 none / 1);
|
|
1481
|
+
--color-intent-neutral-solid: oklch(92.431093% 0 none / 1);
|
|
1482
|
+
--color-intent-neutral-solid-hover: oklch(84.425293% 0 none / 1);
|
|
1483
|
+
--color-intent-neutral-solid-pressed: oklch(82.430664% 0 none / 1);
|
|
1484
|
+
--color-intent-neutral-solid-ink: oklch(19.79752% 0 none / 1);
|
|
1485
|
+
--color-intent-neutral-edge: oklch(50.493504% 0.00231 195.834465 / 0.176);
|
|
1486
|
+
--color-intent-neutral-edge-hover: oklch(52.292827% 0.002153 195.841073 / 0.235);
|
|
1487
|
+
--color-intent-neutral-edge-strong: oklch(56.823866% 0.000911 195.877546 / 0.294);
|
|
1488
|
+
--color-intent-neutral-focus: oklch(56.062653% 0 none / 0.42);
|
|
1489
|
+
--color-intent-neutral-focus-width: 3px;
|
|
1490
|
+
--color-intent-success-text: oklch(75.524628% 0.105769 157.679534 / 1);
|
|
1491
|
+
--color-intent-success-text-hover: oklch(92.002315% 0.036806 157.679534 / 1);
|
|
1492
|
+
--color-intent-success-soft: oklch(47.549494% 0.099237 158.106747 / 0.125);
|
|
1493
|
+
--color-intent-success-soft-hover: oklch(53.749953% 0.118772 157.610583 / 0.176);
|
|
1494
|
+
--color-intent-success-soft-pressed: oklch(56.887883% 0.115676 157.640944 / 0.235);
|
|
1495
|
+
--color-intent-success-soft-ink: oklch(75.524628% 0.105769 157.679534 / 1);
|
|
1496
|
+
--color-intent-success-soft-ink-muted: oklch(75.524628% 0.105769 157.679534 / 1);
|
|
1497
|
+
--color-intent-success-solid: oklch(54.607263% 0.132875 157.679534 / 1);
|
|
1498
|
+
--color-intent-success-solid-hover: oklch(51.669316% 0.126232 157.679534 / 1);
|
|
1499
|
+
--color-intent-success-solid-pressed: oklch(50.144121% 0.126232 157.679534 / 1);
|
|
1500
|
+
--color-intent-success-solid-ink: oklch(100% 0 none / 1);
|
|
1501
|
+
--color-intent-success-edge: oklch(56.887883% 0.115676 157.640944 / 0.235);
|
|
1502
|
+
--color-intent-success-edge-hover: oklch(60.841675% 0.108338 157.660028 / 0.294);
|
|
1503
|
+
--color-intent-success-edge-strong: oklch(65.007154% 0.111551 157.668655 / 0.373);
|
|
1504
|
+
--color-intent-success-focus: oklch(55.997491% 0.096202 157.679534 / 0.42);
|
|
1505
|
+
--color-intent-success-focus-width: 3px;
|
|
1506
|
+
--color-intent-warning-text: oklch(76.965573% 0.125137 84.129977 / 1);
|
|
1507
|
+
--color-intent-warning-text-hover: oklch(92.432169% 0.043546 84.129977 / 1);
|
|
1508
|
+
--color-intent-warning-soft: oklch(48.817333% 0.115313 85.249085 / 0.125);
|
|
1509
|
+
--color-intent-warning-soft-hover: oklch(55.516221% 0.130951 87.583171 / 0.176);
|
|
1510
|
+
--color-intent-warning-soft-pressed: oklch(57.697505% 0.136121 87.029151 / 0.235);
|
|
1511
|
+
--color-intent-warning-soft-ink: oklch(76.965573% 0.125137 84.129977 / 1);
|
|
1512
|
+
--color-intent-warning-soft-ink-muted: oklch(76.965573% 0.125137 84.129977 / 1);
|
|
1513
|
+
--color-intent-warning-solid: oklch(85.369678% 0.157207 84.129977 / 1);
|
|
1514
|
+
--color-intent-warning-solid-hover: oklch(89.098918% 0.148203 85.476085 / 1);
|
|
1515
|
+
--color-intent-warning-solid-pressed: oklch(89.681411% 0.14697 87.080518 / 1);
|
|
1516
|
+
--color-intent-warning-solid-ink: oklch(35.612648% 0.031441 84.129977 / 1);
|
|
1517
|
+
--color-intent-warning-edge: oklch(57.697505% 0.136121 87.029151 / 0.235);
|
|
1518
|
+
--color-intent-warning-edge-hover: oklch(60.980333% 0.130722 84.431924 / 0.294);
|
|
1519
|
+
--color-intent-warning-edge-strong: oklch(65.085666% 0.133373 84.363137 / 0.373);
|
|
1520
|
+
--color-intent-warning-focus: oklch(56.020502% 0.113818 84.129977 / 0.42);
|
|
1521
|
+
--color-intent-warning-focus-width: 3px;
|
|
1522
|
+
--background-interaction-selection-accent: oklch(77.965918% 0.129595 246.066304 / 0.051048);
|
|
1523
|
+
--background-interaction-selection-accent-hover: oklch(77.965918% 0.129595 246.066304 / 0.075803);
|
|
1524
|
+
--color-interaction-selection-accent-ink: oklch(76.009909% 0.139824 248.518651 / 1);
|
|
1525
|
+
--background-interaction-selection-danger: oklch(80.016885% 0.147187 22.589407 / 0.044945);
|
|
1526
|
+
--background-interaction-selection-danger-hover: oklch(80.016885% 0.147187 22.589407 / 0.06666);
|
|
1527
|
+
--color-interaction-selection-danger-ink: oklch(78.331653% 0.153899 23.02606 / 1);
|
|
1528
|
+
--background-interaction-selection-information: oklch(77.965918% 0.129595 246.066304 / 0.051048);
|
|
1529
|
+
--background-interaction-selection-information-hover: oklch(77.965918% 0.129595 246.066304 / 0.075803);
|
|
1530
|
+
--color-interaction-selection-information-ink: oklch(76.009909% 0.139824 248.518651 / 1);
|
|
1531
|
+
--background-interaction-selection-neutral: oklch(89.093811% 0 none / 0.026409);
|
|
1532
|
+
--background-interaction-selection-neutral-hover: oklch(89.093811% 0 none / 0.043644);
|
|
1533
|
+
--color-interaction-selection-neutral-ink: oklch(86% 0 none / 1);
|
|
1534
|
+
--background-interaction-selection-success: oklch(78.22263% 0.109703 157.679229 / 0.053901);
|
|
1535
|
+
--background-interaction-selection-success-hover: oklch(78.22263% 0.109703 157.679229 / 0.07965);
|
|
1536
|
+
--color-interaction-selection-success-ink: oklch(75.524628% 0.105769 157.679534 / 1);
|
|
1537
|
+
--background-interaction-selection-warning: oklch(79.687573% 0.12976 84.141183 / 0.050078);
|
|
1538
|
+
--background-interaction-selection-warning-hover: oklch(79.687573% 0.12976 84.141183 / 0.073862);
|
|
1539
|
+
--color-interaction-selection-warning-ink: oklch(76.965573% 0.125137 84.129977 / 1);
|
|
1540
|
+
--color-interaction-hover: oklch(34.407394% 0.022601 220.579947 / 0.035);
|
|
1541
|
+
--color-interaction-pressed: oklch(46.131669% 0.007996 241.953581 / 0.055);
|
|
1542
|
+
--color-interaction-selected: oklch(77.965918% 0.129595 246.066304 / 0.051048);
|
|
1543
|
+
--color-interaction-selected-hover: oklch(77.965918% 0.129595 246.066304 / 0.075803);
|
|
1544
|
+
--opacity-interaction-disabled: 0.5;
|
|
1545
|
+
--color-interaction-disabled: oklch(34.407394% 0.022601 220.579947 / 0.047);
|
|
1546
|
+
--color-interaction-disabled-edge: oklch(56.823866% 0.000911 195.877546 / 0.294);
|
|
1547
|
+
--color-interaction-disabled-ink: var(--ui-surface-ink-muted);
|
|
1548
|
+
--color-scrim: oklch(20.962653% 0 none / 0.55);
|
|
1549
|
+
--color-surface-0: oklch(20.462653% 0 none / 1);
|
|
1550
|
+
--color-surface-0-ink: oklch(92.184718% 0 none / 1);
|
|
1551
|
+
--color-surface-0-ink-muted: oklch(76.561054% 0 none / 1);
|
|
1552
|
+
--shadow-elevation-0: 0 0 0 0 transparent;
|
|
1553
|
+
--color-surface-1: oklch(22.962653% 0 none / 1);
|
|
1554
|
+
--color-surface-1-ink: oklch(92.501588% 0 none / 1);
|
|
1555
|
+
--color-surface-1-ink-muted: oklch(76.93548% 0 none / 1);
|
|
1556
|
+
--shadow-elevation-1: inset 0px 0px 0px 1px oklch(100% 0 none / 0.02);
|
|
1557
|
+
--color-surface-2: oklch(25.462653% 0.000386 251.779887 / 1);
|
|
1558
|
+
--color-surface-2-ink: oklch(92.908812% 0.000077 251.779887 / 1);
|
|
1559
|
+
--color-surface-2-ink-muted: oklch(77.415975% 0.000077 251.779887 / 1);
|
|
1560
|
+
--shadow-elevation-2: 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.01), inset 0px 0px 0px 1px oklch(100% 0 none / 0.02);
|
|
1561
|
+
--color-surface-3: oklch(28.262653% 0.000579 251.779887 / 1);
|
|
1562
|
+
--color-surface-3-ink: oklch(93.477871% 0.000116 251.779887 / 1);
|
|
1563
|
+
--color-surface-3-ink-muted: oklch(78.08603% 0.000116 251.779887 / 1);
|
|
1564
|
+
--shadow-elevation-3: 0px 0px 0px 1px oklch(0% 0 none / 0.12), 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), 0px 3px 3px -1.5px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.02), inset 0px 0px 0px 1px oklch(100% 0 none / 0.02);
|
|
1565
|
+
--color-surface-4: oklch(31.262653% 0.000965 251.779887 / 1);
|
|
1566
|
+
--color-surface-4-ink: oklch(94.237603% 0.000193 251.779887 / 1);
|
|
1567
|
+
--color-surface-4-ink-muted: oklch(78.978204% 0.000193 251.779887 / 1);
|
|
1568
|
+
--shadow-elevation-4: 0px 0px 0px 1px oklch(0% 0 none / 0.14), 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), 0px 3px 3px -1.5px oklch(0% 0 none / 0.18), 0px 6px 6px -3px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.02), inset 0px 0px 0px 1px oklch(100% 0 none / 0.04);
|
|
1569
|
+
--color-surface-5: oklch(34.462653% 0.001351 251.779887 / 1);
|
|
1570
|
+
--color-surface-5-ink: oklch(95.30435% 0.00027 251.779887 / 1);
|
|
1571
|
+
--color-surface-5-ink-muted: oklch(80.226419% 0.00027 251.779887 / 1);
|
|
1572
|
+
--shadow-elevation-5: 0px 0px 0px 1px oklch(0% 0 none / 0.16), 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), 0px 3px 3px -1.5px oklch(0% 0 none / 0.18), 0px 6px 6px -3px oklch(0% 0 none / 0.18), 0px 12px 12px -6px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.04), inset 0px 0px 0px 1px oklch(100% 0 none / 0.04);
|
|
1573
|
+
--color-surface-6: oklch(37.862653% 0.001737 251.779887 / 1);
|
|
1574
|
+
--color-surface-6-ink: oklch(96.597068% 0.000347 251.779887 / 1);
|
|
1575
|
+
--color-surface-6-ink-muted: oklch(81.732335% 0.000347 251.779887 / 1);
|
|
1576
|
+
--shadow-elevation-6: 0px 0px 0px 1px oklch(0% 0 none / 0.18), 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), 0px 3px 3px -1.5px oklch(0% 0 none / 0.18), 0px 6px 6px -3px oklch(0% 0 none / 0.18), 0px 12px 12px -6px oklch(0% 0 none / 0.18), 0px 24px 24px -12px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.04), inset 0px 0px 0px 1px oklch(100% 0 none / 0.06);
|
|
1577
|
+
--color-surface-7: oklch(41.462653% 0.002316 251.779887 / 1);
|
|
1578
|
+
--color-surface-7-ink: oklch(98.092835% 0.000463 251.779887 / 1);
|
|
1579
|
+
--color-surface-7-ink-muted: oklch(83.46613% 0.000463 251.779887 / 1);
|
|
1580
|
+
--shadow-elevation-7: 0px 0px 0px 1px oklch(0% 0 none / 0.2), 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), 0px 3px 3px -1.5px oklch(0% 0 none / 0.18), 0px 6px 6px -3px oklch(0% 0 none / 0.18), 0px 12px 12px -6px oklch(0% 0 none / 0.18), 0px 24px 24px -12px oklch(0% 0 none / 0.18), 0px 48px 48px -24px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.06), inset 0px 0px 0px 1px oklch(100% 0 none / 0.06);
|
|
1581
|
+
--color-surface-8: oklch(45.262653% 0.002896 251.779887 / 1);
|
|
1582
|
+
--color-surface-8-ink: oklch(99.80618% 0.000579 251.779887 / 1);
|
|
1583
|
+
--color-surface-8-ink-muted: oklch(85.441382% 0.000579 251.779887 / 1);
|
|
1584
|
+
--shadow-elevation-8: 0px 0px 0px 1px oklch(0% 0 none / 0.22), 0px 1px 1px -0.5px oklch(0% 0 none / 0.18), 0px 3px 3px -1.5px oklch(0% 0 none / 0.18), 0px 6px 6px -3px oklch(0% 0 none / 0.18), 0px 12px 12px -6px oklch(0% 0 none / 0.18), 0px 24px 24px -12px oklch(0% 0 none / 0.18), 0px 48px 48px -24px oklch(0% 0 none / 0.18), 0px 96px 96px -48px oklch(0% 0 none / 0.18), inset 0px 1px 0px 0px oklch(100% 0 none / 0.06), inset 0px 0px 0px 1px oklch(100% 0 none / 0.06);
|
|
1585
|
+
}
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
:root {
|
|
1589
|
+
--ui-surface-level: 0;
|
|
1590
|
+
--ui-surface-color: var(--color-surface-0);
|
|
1591
|
+
--ui-surface-ink: var(--color-surface-0-ink);
|
|
1592
|
+
--ui-surface-ink-muted: var(--color-surface-0-ink-muted);
|
|
1593
|
+
--ui-matched-elevation: var(--shadow-elevation-0);
|
|
1594
|
+
background-color: var(--ui-surface-color);
|
|
1595
|
+
color: var(--ui-surface-ink);
|
|
1596
|
+
--ui-elevation-shadow-layers: var(--shadow-elevation-0);
|
|
1597
|
+
--ui-state-shadow-layers: var(--shadow-elevation-0);
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
:where([data-ui-surface="0"]) {
|
|
1601
|
+
--ui-surface-level: 0;
|
|
1602
|
+
--ui-surface-color: var(--color-surface-0);
|
|
1603
|
+
--ui-surface-ink: var(--color-surface-0-ink);
|
|
1604
|
+
--ui-surface-ink-muted: var(--color-surface-0-ink-muted);
|
|
1605
|
+
--ui-matched-elevation: var(--shadow-elevation-0);
|
|
1606
|
+
background-color: var(--ui-surface-color);
|
|
1607
|
+
color: var(--ui-surface-ink);
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
:where([data-ui-surface="1"]) {
|
|
1611
|
+
--ui-surface-level: 1;
|
|
1612
|
+
--ui-surface-color: var(--color-surface-1);
|
|
1613
|
+
--ui-surface-ink: var(--color-surface-1-ink);
|
|
1614
|
+
--ui-surface-ink-muted: var(--color-surface-1-ink-muted);
|
|
1615
|
+
--ui-matched-elevation: var(--shadow-elevation-1);
|
|
1616
|
+
background-color: var(--ui-surface-color);
|
|
1617
|
+
color: var(--ui-surface-ink);
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
:where([data-ui-surface="2"]) {
|
|
1621
|
+
--ui-surface-level: 2;
|
|
1622
|
+
--ui-surface-color: var(--color-surface-2);
|
|
1623
|
+
--ui-surface-ink: var(--color-surface-2-ink);
|
|
1624
|
+
--ui-surface-ink-muted: var(--color-surface-2-ink-muted);
|
|
1625
|
+
--ui-matched-elevation: var(--shadow-elevation-2);
|
|
1626
|
+
background-color: var(--ui-surface-color);
|
|
1627
|
+
color: var(--ui-surface-ink);
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
:where([data-ui-surface="3"]) {
|
|
1631
|
+
--ui-surface-level: 3;
|
|
1632
|
+
--ui-surface-color: var(--color-surface-3);
|
|
1633
|
+
--ui-surface-ink: var(--color-surface-3-ink);
|
|
1634
|
+
--ui-surface-ink-muted: var(--color-surface-3-ink-muted);
|
|
1635
|
+
--ui-matched-elevation: var(--shadow-elevation-3);
|
|
1636
|
+
background-color: var(--ui-surface-color);
|
|
1637
|
+
color: var(--ui-surface-ink);
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
:where([data-ui-surface="4"]) {
|
|
1641
|
+
--ui-surface-level: 4;
|
|
1642
|
+
--ui-surface-color: var(--color-surface-4);
|
|
1643
|
+
--ui-surface-ink: var(--color-surface-4-ink);
|
|
1644
|
+
--ui-surface-ink-muted: var(--color-surface-4-ink-muted);
|
|
1645
|
+
--ui-matched-elevation: var(--shadow-elevation-4);
|
|
1646
|
+
background-color: var(--ui-surface-color);
|
|
1647
|
+
color: var(--ui-surface-ink);
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
:where([data-ui-surface="5"]) {
|
|
1651
|
+
--ui-surface-level: 5;
|
|
1652
|
+
--ui-surface-color: var(--color-surface-5);
|
|
1653
|
+
--ui-surface-ink: var(--color-surface-5-ink);
|
|
1654
|
+
--ui-surface-ink-muted: var(--color-surface-5-ink-muted);
|
|
1655
|
+
--ui-matched-elevation: var(--shadow-elevation-5);
|
|
1656
|
+
background-color: var(--ui-surface-color);
|
|
1657
|
+
color: var(--ui-surface-ink);
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
:where([data-ui-surface="6"]) {
|
|
1661
|
+
--ui-surface-level: 6;
|
|
1662
|
+
--ui-surface-color: var(--color-surface-6);
|
|
1663
|
+
--ui-surface-ink: var(--color-surface-6-ink);
|
|
1664
|
+
--ui-surface-ink-muted: var(--color-surface-6-ink-muted);
|
|
1665
|
+
--ui-matched-elevation: var(--shadow-elevation-6);
|
|
1666
|
+
background-color: var(--ui-surface-color);
|
|
1667
|
+
color: var(--ui-surface-ink);
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
:where([data-ui-surface="7"]) {
|
|
1671
|
+
--ui-surface-level: 7;
|
|
1672
|
+
--ui-surface-color: var(--color-surface-7);
|
|
1673
|
+
--ui-surface-ink: var(--color-surface-7-ink);
|
|
1674
|
+
--ui-surface-ink-muted: var(--color-surface-7-ink-muted);
|
|
1675
|
+
--ui-matched-elevation: var(--shadow-elevation-7);
|
|
1676
|
+
background-color: var(--ui-surface-color);
|
|
1677
|
+
color: var(--ui-surface-ink);
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
:where([data-ui-surface="8"]) {
|
|
1681
|
+
--ui-surface-level: 8;
|
|
1682
|
+
--ui-surface-color: var(--color-surface-8);
|
|
1683
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
1684
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
1685
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
1686
|
+
background-color: var(--ui-surface-color);
|
|
1687
|
+
color: var(--ui-surface-ink);
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1690
|
+
:where([data-ui-surface="+1"]) {
|
|
1691
|
+
--ui-surface-level: 1;
|
|
1692
|
+
--ui-surface-color: var(--color-surface-1);
|
|
1693
|
+
--ui-surface-ink: var(--color-surface-1-ink);
|
|
1694
|
+
--ui-surface-ink-muted: var(--color-surface-1-ink-muted);
|
|
1695
|
+
--ui-matched-elevation: var(--shadow-elevation-1);
|
|
1696
|
+
background-color: var(--ui-surface-color);
|
|
1697
|
+
color: var(--ui-surface-ink);
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
:where([data-ui-surface="+2"]) {
|
|
1701
|
+
--ui-surface-level: 2;
|
|
1702
|
+
--ui-surface-color: var(--color-surface-2);
|
|
1703
|
+
--ui-surface-ink: var(--color-surface-2-ink);
|
|
1704
|
+
--ui-surface-ink-muted: var(--color-surface-2-ink-muted);
|
|
1705
|
+
--ui-matched-elevation: var(--shadow-elevation-2);
|
|
1706
|
+
background-color: var(--ui-surface-color);
|
|
1707
|
+
color: var(--ui-surface-ink);
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
:where([data-ui-surface="+3"]) {
|
|
1711
|
+
--ui-surface-level: 3;
|
|
1712
|
+
--ui-surface-color: var(--color-surface-3);
|
|
1713
|
+
--ui-surface-ink: var(--color-surface-3-ink);
|
|
1714
|
+
--ui-surface-ink-muted: var(--color-surface-3-ink-muted);
|
|
1715
|
+
--ui-matched-elevation: var(--shadow-elevation-3);
|
|
1716
|
+
background-color: var(--ui-surface-color);
|
|
1717
|
+
color: var(--ui-surface-ink);
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
:where([data-ui-surface="+4"]) {
|
|
1721
|
+
--ui-surface-level: 4;
|
|
1722
|
+
--ui-surface-color: var(--color-surface-4);
|
|
1723
|
+
--ui-surface-ink: var(--color-surface-4-ink);
|
|
1724
|
+
--ui-surface-ink-muted: var(--color-surface-4-ink-muted);
|
|
1725
|
+
--ui-matched-elevation: var(--shadow-elevation-4);
|
|
1726
|
+
background-color: var(--ui-surface-color);
|
|
1727
|
+
color: var(--ui-surface-ink);
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
:where([data-ui-surface="+5"]) {
|
|
1731
|
+
--ui-surface-level: 5;
|
|
1732
|
+
--ui-surface-color: var(--color-surface-5);
|
|
1733
|
+
--ui-surface-ink: var(--color-surface-5-ink);
|
|
1734
|
+
--ui-surface-ink-muted: var(--color-surface-5-ink-muted);
|
|
1735
|
+
--ui-matched-elevation: var(--shadow-elevation-5);
|
|
1736
|
+
background-color: var(--ui-surface-color);
|
|
1737
|
+
color: var(--ui-surface-ink);
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
:where([data-ui-surface="+6"]) {
|
|
1741
|
+
--ui-surface-level: 6;
|
|
1742
|
+
--ui-surface-color: var(--color-surface-6);
|
|
1743
|
+
--ui-surface-ink: var(--color-surface-6-ink);
|
|
1744
|
+
--ui-surface-ink-muted: var(--color-surface-6-ink-muted);
|
|
1745
|
+
--ui-matched-elevation: var(--shadow-elevation-6);
|
|
1746
|
+
background-color: var(--ui-surface-color);
|
|
1747
|
+
color: var(--ui-surface-ink);
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
:where([data-ui-surface="+7"]) {
|
|
1751
|
+
--ui-surface-level: 7;
|
|
1752
|
+
--ui-surface-color: var(--color-surface-7);
|
|
1753
|
+
--ui-surface-ink: var(--color-surface-7-ink);
|
|
1754
|
+
--ui-surface-ink-muted: var(--color-surface-7-ink-muted);
|
|
1755
|
+
--ui-matched-elevation: var(--shadow-elevation-7);
|
|
1756
|
+
background-color: var(--ui-surface-color);
|
|
1757
|
+
color: var(--ui-surface-ink);
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1760
|
+
:where([data-ui-surface="+8"]) {
|
|
1761
|
+
--ui-surface-level: 8;
|
|
1762
|
+
--ui-surface-color: var(--color-surface-8);
|
|
1763
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
1764
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
1765
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
1766
|
+
background-color: var(--ui-surface-color);
|
|
1767
|
+
color: var(--ui-surface-ink);
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
:where([data-ui-elevation]) {
|
|
1771
|
+
--ui-state-shadow-layers: var(--shadow-elevation-0);
|
|
1772
|
+
--ui-active-elevation-shadow-layers: var(--ui-elevation-shadow-layers);
|
|
1773
|
+
box-shadow: var(--ui-state-shadow-layers), var(--ui-active-elevation-shadow-layers);
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
:where([data-ui-elevation="none"]) {
|
|
1777
|
+
--ui-elevation-shadow-layers: var(--shadow-elevation-0);
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
:where([data-ui-elevation="match"]) {
|
|
1781
|
+
--ui-elevation-shadow-layers: var(--ui-matched-elevation);
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
:where([data-ui-elevation="1"]) {
|
|
1785
|
+
--ui-elevation-shadow-layers: var(--shadow-elevation-1);
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
:where([data-ui-elevation="2"]) {
|
|
1789
|
+
--ui-elevation-shadow-layers: var(--shadow-elevation-2);
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
:where([data-ui-elevation="3"]) {
|
|
1793
|
+
--ui-elevation-shadow-layers: var(--shadow-elevation-3);
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
:where([data-ui-elevation="4"]) {
|
|
1797
|
+
--ui-elevation-shadow-layers: var(--shadow-elevation-4);
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1800
|
+
:where([data-ui-elevation="5"]) {
|
|
1801
|
+
--ui-elevation-shadow-layers: var(--shadow-elevation-5);
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
:where([data-ui-elevation="6"]) {
|
|
1805
|
+
--ui-elevation-shadow-layers: var(--shadow-elevation-6);
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
:where([data-ui-elevation="7"]) {
|
|
1809
|
+
--ui-elevation-shadow-layers: var(--shadow-elevation-7);
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
:where([data-ui-elevation="8"]) {
|
|
1813
|
+
--ui-elevation-shadow-layers: var(--shadow-elevation-8);
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
@container style(--ui-surface-level: 0) {
|
|
1817
|
+
:where([data-ui-surface="+1"]) {
|
|
1818
|
+
--ui-surface-level: 1;
|
|
1819
|
+
--ui-surface-color: var(--color-surface-1);
|
|
1820
|
+
--ui-surface-ink: var(--color-surface-1-ink);
|
|
1821
|
+
--ui-surface-ink-muted: var(--color-surface-1-ink-muted);
|
|
1822
|
+
--ui-matched-elevation: var(--shadow-elevation-1);
|
|
1823
|
+
background-color: var(--ui-surface-color);
|
|
1824
|
+
color: var(--ui-surface-ink);
|
|
1825
|
+
}
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
@container style(--ui-surface-level: 0) {
|
|
1829
|
+
:where([data-ui-surface="+2"]) {
|
|
1830
|
+
--ui-surface-level: 2;
|
|
1831
|
+
--ui-surface-color: var(--color-surface-2);
|
|
1832
|
+
--ui-surface-ink: var(--color-surface-2-ink);
|
|
1833
|
+
--ui-surface-ink-muted: var(--color-surface-2-ink-muted);
|
|
1834
|
+
--ui-matched-elevation: var(--shadow-elevation-2);
|
|
1835
|
+
background-color: var(--ui-surface-color);
|
|
1836
|
+
color: var(--ui-surface-ink);
|
|
1837
|
+
}
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
@container style(--ui-surface-level: 0) {
|
|
1841
|
+
:where([data-ui-surface="+3"]) {
|
|
1842
|
+
--ui-surface-level: 3;
|
|
1843
|
+
--ui-surface-color: var(--color-surface-3);
|
|
1844
|
+
--ui-surface-ink: var(--color-surface-3-ink);
|
|
1845
|
+
--ui-surface-ink-muted: var(--color-surface-3-ink-muted);
|
|
1846
|
+
--ui-matched-elevation: var(--shadow-elevation-3);
|
|
1847
|
+
background-color: var(--ui-surface-color);
|
|
1848
|
+
color: var(--ui-surface-ink);
|
|
1849
|
+
}
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
@container style(--ui-surface-level: 0) {
|
|
1853
|
+
:where([data-ui-surface="+4"]) {
|
|
1854
|
+
--ui-surface-level: 4;
|
|
1855
|
+
--ui-surface-color: var(--color-surface-4);
|
|
1856
|
+
--ui-surface-ink: var(--color-surface-4-ink);
|
|
1857
|
+
--ui-surface-ink-muted: var(--color-surface-4-ink-muted);
|
|
1858
|
+
--ui-matched-elevation: var(--shadow-elevation-4);
|
|
1859
|
+
background-color: var(--ui-surface-color);
|
|
1860
|
+
color: var(--ui-surface-ink);
|
|
1861
|
+
}
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
@container style(--ui-surface-level: 0) {
|
|
1865
|
+
:where([data-ui-surface="+5"]) {
|
|
1866
|
+
--ui-surface-level: 5;
|
|
1867
|
+
--ui-surface-color: var(--color-surface-5);
|
|
1868
|
+
--ui-surface-ink: var(--color-surface-5-ink);
|
|
1869
|
+
--ui-surface-ink-muted: var(--color-surface-5-ink-muted);
|
|
1870
|
+
--ui-matched-elevation: var(--shadow-elevation-5);
|
|
1871
|
+
background-color: var(--ui-surface-color);
|
|
1872
|
+
color: var(--ui-surface-ink);
|
|
1873
|
+
}
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
@container style(--ui-surface-level: 0) {
|
|
1877
|
+
:where([data-ui-surface="+6"]) {
|
|
1878
|
+
--ui-surface-level: 6;
|
|
1879
|
+
--ui-surface-color: var(--color-surface-6);
|
|
1880
|
+
--ui-surface-ink: var(--color-surface-6-ink);
|
|
1881
|
+
--ui-surface-ink-muted: var(--color-surface-6-ink-muted);
|
|
1882
|
+
--ui-matched-elevation: var(--shadow-elevation-6);
|
|
1883
|
+
background-color: var(--ui-surface-color);
|
|
1884
|
+
color: var(--ui-surface-ink);
|
|
1885
|
+
}
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
@container style(--ui-surface-level: 0) {
|
|
1889
|
+
:where([data-ui-surface="+7"]) {
|
|
1890
|
+
--ui-surface-level: 7;
|
|
1891
|
+
--ui-surface-color: var(--color-surface-7);
|
|
1892
|
+
--ui-surface-ink: var(--color-surface-7-ink);
|
|
1893
|
+
--ui-surface-ink-muted: var(--color-surface-7-ink-muted);
|
|
1894
|
+
--ui-matched-elevation: var(--shadow-elevation-7);
|
|
1895
|
+
background-color: var(--ui-surface-color);
|
|
1896
|
+
color: var(--ui-surface-ink);
|
|
1897
|
+
}
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
@container style(--ui-surface-level: 0) {
|
|
1901
|
+
:where([data-ui-surface="+8"]) {
|
|
1902
|
+
--ui-surface-level: 8;
|
|
1903
|
+
--ui-surface-color: var(--color-surface-8);
|
|
1904
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
1905
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
1906
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
1907
|
+
background-color: var(--ui-surface-color);
|
|
1908
|
+
color: var(--ui-surface-ink);
|
|
1909
|
+
}
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
@container style(--ui-surface-level: 1) {
|
|
1913
|
+
:where([data-ui-surface="+1"]) {
|
|
1914
|
+
--ui-surface-level: 2;
|
|
1915
|
+
--ui-surface-color: var(--color-surface-2);
|
|
1916
|
+
--ui-surface-ink: var(--color-surface-2-ink);
|
|
1917
|
+
--ui-surface-ink-muted: var(--color-surface-2-ink-muted);
|
|
1918
|
+
--ui-matched-elevation: var(--shadow-elevation-2);
|
|
1919
|
+
background-color: var(--ui-surface-color);
|
|
1920
|
+
color: var(--ui-surface-ink);
|
|
1921
|
+
}
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
@container style(--ui-surface-level: 1) {
|
|
1925
|
+
:where([data-ui-surface="+2"]) {
|
|
1926
|
+
--ui-surface-level: 3;
|
|
1927
|
+
--ui-surface-color: var(--color-surface-3);
|
|
1928
|
+
--ui-surface-ink: var(--color-surface-3-ink);
|
|
1929
|
+
--ui-surface-ink-muted: var(--color-surface-3-ink-muted);
|
|
1930
|
+
--ui-matched-elevation: var(--shadow-elevation-3);
|
|
1931
|
+
background-color: var(--ui-surface-color);
|
|
1932
|
+
color: var(--ui-surface-ink);
|
|
1933
|
+
}
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
@container style(--ui-surface-level: 1) {
|
|
1937
|
+
:where([data-ui-surface="+3"]) {
|
|
1938
|
+
--ui-surface-level: 4;
|
|
1939
|
+
--ui-surface-color: var(--color-surface-4);
|
|
1940
|
+
--ui-surface-ink: var(--color-surface-4-ink);
|
|
1941
|
+
--ui-surface-ink-muted: var(--color-surface-4-ink-muted);
|
|
1942
|
+
--ui-matched-elevation: var(--shadow-elevation-4);
|
|
1943
|
+
background-color: var(--ui-surface-color);
|
|
1944
|
+
color: var(--ui-surface-ink);
|
|
1945
|
+
}
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
@container style(--ui-surface-level: 1) {
|
|
1949
|
+
:where([data-ui-surface="+4"]) {
|
|
1950
|
+
--ui-surface-level: 5;
|
|
1951
|
+
--ui-surface-color: var(--color-surface-5);
|
|
1952
|
+
--ui-surface-ink: var(--color-surface-5-ink);
|
|
1953
|
+
--ui-surface-ink-muted: var(--color-surface-5-ink-muted);
|
|
1954
|
+
--ui-matched-elevation: var(--shadow-elevation-5);
|
|
1955
|
+
background-color: var(--ui-surface-color);
|
|
1956
|
+
color: var(--ui-surface-ink);
|
|
1957
|
+
}
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
@container style(--ui-surface-level: 1) {
|
|
1961
|
+
:where([data-ui-surface="+5"]) {
|
|
1962
|
+
--ui-surface-level: 6;
|
|
1963
|
+
--ui-surface-color: var(--color-surface-6);
|
|
1964
|
+
--ui-surface-ink: var(--color-surface-6-ink);
|
|
1965
|
+
--ui-surface-ink-muted: var(--color-surface-6-ink-muted);
|
|
1966
|
+
--ui-matched-elevation: var(--shadow-elevation-6);
|
|
1967
|
+
background-color: var(--ui-surface-color);
|
|
1968
|
+
color: var(--ui-surface-ink);
|
|
1969
|
+
}
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
@container style(--ui-surface-level: 1) {
|
|
1973
|
+
:where([data-ui-surface="+6"]) {
|
|
1974
|
+
--ui-surface-level: 7;
|
|
1975
|
+
--ui-surface-color: var(--color-surface-7);
|
|
1976
|
+
--ui-surface-ink: var(--color-surface-7-ink);
|
|
1977
|
+
--ui-surface-ink-muted: var(--color-surface-7-ink-muted);
|
|
1978
|
+
--ui-matched-elevation: var(--shadow-elevation-7);
|
|
1979
|
+
background-color: var(--ui-surface-color);
|
|
1980
|
+
color: var(--ui-surface-ink);
|
|
1981
|
+
}
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
@container style(--ui-surface-level: 1) {
|
|
1985
|
+
:where([data-ui-surface="+7"]) {
|
|
1986
|
+
--ui-surface-level: 8;
|
|
1987
|
+
--ui-surface-color: var(--color-surface-8);
|
|
1988
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
1989
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
1990
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
1991
|
+
background-color: var(--ui-surface-color);
|
|
1992
|
+
color: var(--ui-surface-ink);
|
|
1993
|
+
}
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
@container style(--ui-surface-level: 1) {
|
|
1997
|
+
:where([data-ui-surface="+8"]) {
|
|
1998
|
+
--ui-surface-level: 8;
|
|
1999
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2000
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2001
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2002
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2003
|
+
background-color: var(--ui-surface-color);
|
|
2004
|
+
color: var(--ui-surface-ink);
|
|
2005
|
+
}
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
@container style(--ui-surface-level: 2) {
|
|
2009
|
+
:where([data-ui-surface="+1"]) {
|
|
2010
|
+
--ui-surface-level: 3;
|
|
2011
|
+
--ui-surface-color: var(--color-surface-3);
|
|
2012
|
+
--ui-surface-ink: var(--color-surface-3-ink);
|
|
2013
|
+
--ui-surface-ink-muted: var(--color-surface-3-ink-muted);
|
|
2014
|
+
--ui-matched-elevation: var(--shadow-elevation-3);
|
|
2015
|
+
background-color: var(--ui-surface-color);
|
|
2016
|
+
color: var(--ui-surface-ink);
|
|
2017
|
+
}
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
@container style(--ui-surface-level: 2) {
|
|
2021
|
+
:where([data-ui-surface="+2"]) {
|
|
2022
|
+
--ui-surface-level: 4;
|
|
2023
|
+
--ui-surface-color: var(--color-surface-4);
|
|
2024
|
+
--ui-surface-ink: var(--color-surface-4-ink);
|
|
2025
|
+
--ui-surface-ink-muted: var(--color-surface-4-ink-muted);
|
|
2026
|
+
--ui-matched-elevation: var(--shadow-elevation-4);
|
|
2027
|
+
background-color: var(--ui-surface-color);
|
|
2028
|
+
color: var(--ui-surface-ink);
|
|
2029
|
+
}
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
@container style(--ui-surface-level: 2) {
|
|
2033
|
+
:where([data-ui-surface="+3"]) {
|
|
2034
|
+
--ui-surface-level: 5;
|
|
2035
|
+
--ui-surface-color: var(--color-surface-5);
|
|
2036
|
+
--ui-surface-ink: var(--color-surface-5-ink);
|
|
2037
|
+
--ui-surface-ink-muted: var(--color-surface-5-ink-muted);
|
|
2038
|
+
--ui-matched-elevation: var(--shadow-elevation-5);
|
|
2039
|
+
background-color: var(--ui-surface-color);
|
|
2040
|
+
color: var(--ui-surface-ink);
|
|
2041
|
+
}
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
@container style(--ui-surface-level: 2) {
|
|
2045
|
+
:where([data-ui-surface="+4"]) {
|
|
2046
|
+
--ui-surface-level: 6;
|
|
2047
|
+
--ui-surface-color: var(--color-surface-6);
|
|
2048
|
+
--ui-surface-ink: var(--color-surface-6-ink);
|
|
2049
|
+
--ui-surface-ink-muted: var(--color-surface-6-ink-muted);
|
|
2050
|
+
--ui-matched-elevation: var(--shadow-elevation-6);
|
|
2051
|
+
background-color: var(--ui-surface-color);
|
|
2052
|
+
color: var(--ui-surface-ink);
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
@container style(--ui-surface-level: 2) {
|
|
2057
|
+
:where([data-ui-surface="+5"]) {
|
|
2058
|
+
--ui-surface-level: 7;
|
|
2059
|
+
--ui-surface-color: var(--color-surface-7);
|
|
2060
|
+
--ui-surface-ink: var(--color-surface-7-ink);
|
|
2061
|
+
--ui-surface-ink-muted: var(--color-surface-7-ink-muted);
|
|
2062
|
+
--ui-matched-elevation: var(--shadow-elevation-7);
|
|
2063
|
+
background-color: var(--ui-surface-color);
|
|
2064
|
+
color: var(--ui-surface-ink);
|
|
2065
|
+
}
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
@container style(--ui-surface-level: 2) {
|
|
2069
|
+
:where([data-ui-surface="+6"]) {
|
|
2070
|
+
--ui-surface-level: 8;
|
|
2071
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2072
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2073
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2074
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2075
|
+
background-color: var(--ui-surface-color);
|
|
2076
|
+
color: var(--ui-surface-ink);
|
|
2077
|
+
}
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
@container style(--ui-surface-level: 2) {
|
|
2081
|
+
:where([data-ui-surface="+7"]) {
|
|
2082
|
+
--ui-surface-level: 8;
|
|
2083
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2084
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2085
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2086
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2087
|
+
background-color: var(--ui-surface-color);
|
|
2088
|
+
color: var(--ui-surface-ink);
|
|
2089
|
+
}
|
|
2090
|
+
}
|
|
2091
|
+
|
|
2092
|
+
@container style(--ui-surface-level: 2) {
|
|
2093
|
+
:where([data-ui-surface="+8"]) {
|
|
2094
|
+
--ui-surface-level: 8;
|
|
2095
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2096
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2097
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2098
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2099
|
+
background-color: var(--ui-surface-color);
|
|
2100
|
+
color: var(--ui-surface-ink);
|
|
2101
|
+
}
|
|
2102
|
+
}
|
|
2103
|
+
|
|
2104
|
+
@container style(--ui-surface-level: 3) {
|
|
2105
|
+
:where([data-ui-surface="+1"]) {
|
|
2106
|
+
--ui-surface-level: 4;
|
|
2107
|
+
--ui-surface-color: var(--color-surface-4);
|
|
2108
|
+
--ui-surface-ink: var(--color-surface-4-ink);
|
|
2109
|
+
--ui-surface-ink-muted: var(--color-surface-4-ink-muted);
|
|
2110
|
+
--ui-matched-elevation: var(--shadow-elevation-4);
|
|
2111
|
+
background-color: var(--ui-surface-color);
|
|
2112
|
+
color: var(--ui-surface-ink);
|
|
2113
|
+
}
|
|
2114
|
+
}
|
|
2115
|
+
|
|
2116
|
+
@container style(--ui-surface-level: 3) {
|
|
2117
|
+
:where([data-ui-surface="+2"]) {
|
|
2118
|
+
--ui-surface-level: 5;
|
|
2119
|
+
--ui-surface-color: var(--color-surface-5);
|
|
2120
|
+
--ui-surface-ink: var(--color-surface-5-ink);
|
|
2121
|
+
--ui-surface-ink-muted: var(--color-surface-5-ink-muted);
|
|
2122
|
+
--ui-matched-elevation: var(--shadow-elevation-5);
|
|
2123
|
+
background-color: var(--ui-surface-color);
|
|
2124
|
+
color: var(--ui-surface-ink);
|
|
2125
|
+
}
|
|
2126
|
+
}
|
|
2127
|
+
|
|
2128
|
+
@container style(--ui-surface-level: 3) {
|
|
2129
|
+
:where([data-ui-surface="+3"]) {
|
|
2130
|
+
--ui-surface-level: 6;
|
|
2131
|
+
--ui-surface-color: var(--color-surface-6);
|
|
2132
|
+
--ui-surface-ink: var(--color-surface-6-ink);
|
|
2133
|
+
--ui-surface-ink-muted: var(--color-surface-6-ink-muted);
|
|
2134
|
+
--ui-matched-elevation: var(--shadow-elevation-6);
|
|
2135
|
+
background-color: var(--ui-surface-color);
|
|
2136
|
+
color: var(--ui-surface-ink);
|
|
2137
|
+
}
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2140
|
+
@container style(--ui-surface-level: 3) {
|
|
2141
|
+
:where([data-ui-surface="+4"]) {
|
|
2142
|
+
--ui-surface-level: 7;
|
|
2143
|
+
--ui-surface-color: var(--color-surface-7);
|
|
2144
|
+
--ui-surface-ink: var(--color-surface-7-ink);
|
|
2145
|
+
--ui-surface-ink-muted: var(--color-surface-7-ink-muted);
|
|
2146
|
+
--ui-matched-elevation: var(--shadow-elevation-7);
|
|
2147
|
+
background-color: var(--ui-surface-color);
|
|
2148
|
+
color: var(--ui-surface-ink);
|
|
2149
|
+
}
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
@container style(--ui-surface-level: 3) {
|
|
2153
|
+
:where([data-ui-surface="+5"]) {
|
|
2154
|
+
--ui-surface-level: 8;
|
|
2155
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2156
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2157
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2158
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2159
|
+
background-color: var(--ui-surface-color);
|
|
2160
|
+
color: var(--ui-surface-ink);
|
|
2161
|
+
}
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
@container style(--ui-surface-level: 3) {
|
|
2165
|
+
:where([data-ui-surface="+6"]) {
|
|
2166
|
+
--ui-surface-level: 8;
|
|
2167
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2168
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2169
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2170
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2171
|
+
background-color: var(--ui-surface-color);
|
|
2172
|
+
color: var(--ui-surface-ink);
|
|
2173
|
+
}
|
|
2174
|
+
}
|
|
2175
|
+
|
|
2176
|
+
@container style(--ui-surface-level: 3) {
|
|
2177
|
+
:where([data-ui-surface="+7"]) {
|
|
2178
|
+
--ui-surface-level: 8;
|
|
2179
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2180
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2181
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2182
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2183
|
+
background-color: var(--ui-surface-color);
|
|
2184
|
+
color: var(--ui-surface-ink);
|
|
2185
|
+
}
|
|
2186
|
+
}
|
|
2187
|
+
|
|
2188
|
+
@container style(--ui-surface-level: 3) {
|
|
2189
|
+
:where([data-ui-surface="+8"]) {
|
|
2190
|
+
--ui-surface-level: 8;
|
|
2191
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2192
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2193
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2194
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2195
|
+
background-color: var(--ui-surface-color);
|
|
2196
|
+
color: var(--ui-surface-ink);
|
|
2197
|
+
}
|
|
2198
|
+
}
|
|
2199
|
+
|
|
2200
|
+
@container style(--ui-surface-level: 4) {
|
|
2201
|
+
:where([data-ui-surface="+1"]) {
|
|
2202
|
+
--ui-surface-level: 5;
|
|
2203
|
+
--ui-surface-color: var(--color-surface-5);
|
|
2204
|
+
--ui-surface-ink: var(--color-surface-5-ink);
|
|
2205
|
+
--ui-surface-ink-muted: var(--color-surface-5-ink-muted);
|
|
2206
|
+
--ui-matched-elevation: var(--shadow-elevation-5);
|
|
2207
|
+
background-color: var(--ui-surface-color);
|
|
2208
|
+
color: var(--ui-surface-ink);
|
|
2209
|
+
}
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
@container style(--ui-surface-level: 4) {
|
|
2213
|
+
:where([data-ui-surface="+2"]) {
|
|
2214
|
+
--ui-surface-level: 6;
|
|
2215
|
+
--ui-surface-color: var(--color-surface-6);
|
|
2216
|
+
--ui-surface-ink: var(--color-surface-6-ink);
|
|
2217
|
+
--ui-surface-ink-muted: var(--color-surface-6-ink-muted);
|
|
2218
|
+
--ui-matched-elevation: var(--shadow-elevation-6);
|
|
2219
|
+
background-color: var(--ui-surface-color);
|
|
2220
|
+
color: var(--ui-surface-ink);
|
|
2221
|
+
}
|
|
2222
|
+
}
|
|
2223
|
+
|
|
2224
|
+
@container style(--ui-surface-level: 4) {
|
|
2225
|
+
:where([data-ui-surface="+3"]) {
|
|
2226
|
+
--ui-surface-level: 7;
|
|
2227
|
+
--ui-surface-color: var(--color-surface-7);
|
|
2228
|
+
--ui-surface-ink: var(--color-surface-7-ink);
|
|
2229
|
+
--ui-surface-ink-muted: var(--color-surface-7-ink-muted);
|
|
2230
|
+
--ui-matched-elevation: var(--shadow-elevation-7);
|
|
2231
|
+
background-color: var(--ui-surface-color);
|
|
2232
|
+
color: var(--ui-surface-ink);
|
|
2233
|
+
}
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
@container style(--ui-surface-level: 4) {
|
|
2237
|
+
:where([data-ui-surface="+4"]) {
|
|
2238
|
+
--ui-surface-level: 8;
|
|
2239
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2240
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2241
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2242
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2243
|
+
background-color: var(--ui-surface-color);
|
|
2244
|
+
color: var(--ui-surface-ink);
|
|
2245
|
+
}
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
@container style(--ui-surface-level: 4) {
|
|
2249
|
+
:where([data-ui-surface="+5"]) {
|
|
2250
|
+
--ui-surface-level: 8;
|
|
2251
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2252
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2253
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2254
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2255
|
+
background-color: var(--ui-surface-color);
|
|
2256
|
+
color: var(--ui-surface-ink);
|
|
2257
|
+
}
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2260
|
+
@container style(--ui-surface-level: 4) {
|
|
2261
|
+
:where([data-ui-surface="+6"]) {
|
|
2262
|
+
--ui-surface-level: 8;
|
|
2263
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2264
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2265
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2266
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2267
|
+
background-color: var(--ui-surface-color);
|
|
2268
|
+
color: var(--ui-surface-ink);
|
|
2269
|
+
}
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
@container style(--ui-surface-level: 4) {
|
|
2273
|
+
:where([data-ui-surface="+7"]) {
|
|
2274
|
+
--ui-surface-level: 8;
|
|
2275
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2276
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2277
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2278
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2279
|
+
background-color: var(--ui-surface-color);
|
|
2280
|
+
color: var(--ui-surface-ink);
|
|
2281
|
+
}
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2284
|
+
@container style(--ui-surface-level: 4) {
|
|
2285
|
+
:where([data-ui-surface="+8"]) {
|
|
2286
|
+
--ui-surface-level: 8;
|
|
2287
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2288
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2289
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2290
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2291
|
+
background-color: var(--ui-surface-color);
|
|
2292
|
+
color: var(--ui-surface-ink);
|
|
2293
|
+
}
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
@container style(--ui-surface-level: 5) {
|
|
2297
|
+
:where([data-ui-surface="+1"]) {
|
|
2298
|
+
--ui-surface-level: 6;
|
|
2299
|
+
--ui-surface-color: var(--color-surface-6);
|
|
2300
|
+
--ui-surface-ink: var(--color-surface-6-ink);
|
|
2301
|
+
--ui-surface-ink-muted: var(--color-surface-6-ink-muted);
|
|
2302
|
+
--ui-matched-elevation: var(--shadow-elevation-6);
|
|
2303
|
+
background-color: var(--ui-surface-color);
|
|
2304
|
+
color: var(--ui-surface-ink);
|
|
2305
|
+
}
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2308
|
+
@container style(--ui-surface-level: 5) {
|
|
2309
|
+
:where([data-ui-surface="+2"]) {
|
|
2310
|
+
--ui-surface-level: 7;
|
|
2311
|
+
--ui-surface-color: var(--color-surface-7);
|
|
2312
|
+
--ui-surface-ink: var(--color-surface-7-ink);
|
|
2313
|
+
--ui-surface-ink-muted: var(--color-surface-7-ink-muted);
|
|
2314
|
+
--ui-matched-elevation: var(--shadow-elevation-7);
|
|
2315
|
+
background-color: var(--ui-surface-color);
|
|
2316
|
+
color: var(--ui-surface-ink);
|
|
2317
|
+
}
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
@container style(--ui-surface-level: 5) {
|
|
2321
|
+
:where([data-ui-surface="+3"]) {
|
|
2322
|
+
--ui-surface-level: 8;
|
|
2323
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2324
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2325
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2326
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2327
|
+
background-color: var(--ui-surface-color);
|
|
2328
|
+
color: var(--ui-surface-ink);
|
|
2329
|
+
}
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2332
|
+
@container style(--ui-surface-level: 5) {
|
|
2333
|
+
:where([data-ui-surface="+4"]) {
|
|
2334
|
+
--ui-surface-level: 8;
|
|
2335
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2336
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2337
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2338
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2339
|
+
background-color: var(--ui-surface-color);
|
|
2340
|
+
color: var(--ui-surface-ink);
|
|
2341
|
+
}
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2344
|
+
@container style(--ui-surface-level: 5) {
|
|
2345
|
+
:where([data-ui-surface="+5"]) {
|
|
2346
|
+
--ui-surface-level: 8;
|
|
2347
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2348
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2349
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2350
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2351
|
+
background-color: var(--ui-surface-color);
|
|
2352
|
+
color: var(--ui-surface-ink);
|
|
2353
|
+
}
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
@container style(--ui-surface-level: 5) {
|
|
2357
|
+
:where([data-ui-surface="+6"]) {
|
|
2358
|
+
--ui-surface-level: 8;
|
|
2359
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2360
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2361
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2362
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2363
|
+
background-color: var(--ui-surface-color);
|
|
2364
|
+
color: var(--ui-surface-ink);
|
|
2365
|
+
}
|
|
2366
|
+
}
|
|
2367
|
+
|
|
2368
|
+
@container style(--ui-surface-level: 5) {
|
|
2369
|
+
:where([data-ui-surface="+7"]) {
|
|
2370
|
+
--ui-surface-level: 8;
|
|
2371
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2372
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2373
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2374
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2375
|
+
background-color: var(--ui-surface-color);
|
|
2376
|
+
color: var(--ui-surface-ink);
|
|
2377
|
+
}
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2380
|
+
@container style(--ui-surface-level: 5) {
|
|
2381
|
+
:where([data-ui-surface="+8"]) {
|
|
2382
|
+
--ui-surface-level: 8;
|
|
2383
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2384
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2385
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2386
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2387
|
+
background-color: var(--ui-surface-color);
|
|
2388
|
+
color: var(--ui-surface-ink);
|
|
2389
|
+
}
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
@container style(--ui-surface-level: 6) {
|
|
2393
|
+
:where([data-ui-surface="+1"]) {
|
|
2394
|
+
--ui-surface-level: 7;
|
|
2395
|
+
--ui-surface-color: var(--color-surface-7);
|
|
2396
|
+
--ui-surface-ink: var(--color-surface-7-ink);
|
|
2397
|
+
--ui-surface-ink-muted: var(--color-surface-7-ink-muted);
|
|
2398
|
+
--ui-matched-elevation: var(--shadow-elevation-7);
|
|
2399
|
+
background-color: var(--ui-surface-color);
|
|
2400
|
+
color: var(--ui-surface-ink);
|
|
2401
|
+
}
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2404
|
+
@container style(--ui-surface-level: 6) {
|
|
2405
|
+
:where([data-ui-surface="+2"]) {
|
|
2406
|
+
--ui-surface-level: 8;
|
|
2407
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2408
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2409
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2410
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2411
|
+
background-color: var(--ui-surface-color);
|
|
2412
|
+
color: var(--ui-surface-ink);
|
|
2413
|
+
}
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
@container style(--ui-surface-level: 6) {
|
|
2417
|
+
:where([data-ui-surface="+3"]) {
|
|
2418
|
+
--ui-surface-level: 8;
|
|
2419
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2420
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2421
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2422
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2423
|
+
background-color: var(--ui-surface-color);
|
|
2424
|
+
color: var(--ui-surface-ink);
|
|
2425
|
+
}
|
|
2426
|
+
}
|
|
2427
|
+
|
|
2428
|
+
@container style(--ui-surface-level: 6) {
|
|
2429
|
+
:where([data-ui-surface="+4"]) {
|
|
2430
|
+
--ui-surface-level: 8;
|
|
2431
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2432
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2433
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2434
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2435
|
+
background-color: var(--ui-surface-color);
|
|
2436
|
+
color: var(--ui-surface-ink);
|
|
2437
|
+
}
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
@container style(--ui-surface-level: 6) {
|
|
2441
|
+
:where([data-ui-surface="+5"]) {
|
|
2442
|
+
--ui-surface-level: 8;
|
|
2443
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2444
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2445
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2446
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2447
|
+
background-color: var(--ui-surface-color);
|
|
2448
|
+
color: var(--ui-surface-ink);
|
|
2449
|
+
}
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
@container style(--ui-surface-level: 6) {
|
|
2453
|
+
:where([data-ui-surface="+6"]) {
|
|
2454
|
+
--ui-surface-level: 8;
|
|
2455
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2456
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2457
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2458
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2459
|
+
background-color: var(--ui-surface-color);
|
|
2460
|
+
color: var(--ui-surface-ink);
|
|
2461
|
+
}
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
@container style(--ui-surface-level: 6) {
|
|
2465
|
+
:where([data-ui-surface="+7"]) {
|
|
2466
|
+
--ui-surface-level: 8;
|
|
2467
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2468
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2469
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2470
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2471
|
+
background-color: var(--ui-surface-color);
|
|
2472
|
+
color: var(--ui-surface-ink);
|
|
2473
|
+
}
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
@container style(--ui-surface-level: 6) {
|
|
2477
|
+
:where([data-ui-surface="+8"]) {
|
|
2478
|
+
--ui-surface-level: 8;
|
|
2479
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2480
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2481
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2482
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2483
|
+
background-color: var(--ui-surface-color);
|
|
2484
|
+
color: var(--ui-surface-ink);
|
|
2485
|
+
}
|
|
2486
|
+
}
|
|
2487
|
+
|
|
2488
|
+
@container style(--ui-surface-level: 7) {
|
|
2489
|
+
:where([data-ui-surface="+1"]) {
|
|
2490
|
+
--ui-surface-level: 8;
|
|
2491
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2492
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2493
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2494
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2495
|
+
background-color: var(--ui-surface-color);
|
|
2496
|
+
color: var(--ui-surface-ink);
|
|
2497
|
+
}
|
|
2498
|
+
}
|
|
2499
|
+
|
|
2500
|
+
@container style(--ui-surface-level: 7) {
|
|
2501
|
+
:where([data-ui-surface="+2"]) {
|
|
2502
|
+
--ui-surface-level: 8;
|
|
2503
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2504
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2505
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2506
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2507
|
+
background-color: var(--ui-surface-color);
|
|
2508
|
+
color: var(--ui-surface-ink);
|
|
2509
|
+
}
|
|
2510
|
+
}
|
|
2511
|
+
|
|
2512
|
+
@container style(--ui-surface-level: 7) {
|
|
2513
|
+
:where([data-ui-surface="+3"]) {
|
|
2514
|
+
--ui-surface-level: 8;
|
|
2515
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2516
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2517
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2518
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2519
|
+
background-color: var(--ui-surface-color);
|
|
2520
|
+
color: var(--ui-surface-ink);
|
|
2521
|
+
}
|
|
2522
|
+
}
|
|
2523
|
+
|
|
2524
|
+
@container style(--ui-surface-level: 7) {
|
|
2525
|
+
:where([data-ui-surface="+4"]) {
|
|
2526
|
+
--ui-surface-level: 8;
|
|
2527
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2528
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2529
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2530
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2531
|
+
background-color: var(--ui-surface-color);
|
|
2532
|
+
color: var(--ui-surface-ink);
|
|
2533
|
+
}
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
@container style(--ui-surface-level: 7) {
|
|
2537
|
+
:where([data-ui-surface="+5"]) {
|
|
2538
|
+
--ui-surface-level: 8;
|
|
2539
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2540
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2541
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2542
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2543
|
+
background-color: var(--ui-surface-color);
|
|
2544
|
+
color: var(--ui-surface-ink);
|
|
2545
|
+
}
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
@container style(--ui-surface-level: 7) {
|
|
2549
|
+
:where([data-ui-surface="+6"]) {
|
|
2550
|
+
--ui-surface-level: 8;
|
|
2551
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2552
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2553
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2554
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2555
|
+
background-color: var(--ui-surface-color);
|
|
2556
|
+
color: var(--ui-surface-ink);
|
|
2557
|
+
}
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2560
|
+
@container style(--ui-surface-level: 7) {
|
|
2561
|
+
:where([data-ui-surface="+7"]) {
|
|
2562
|
+
--ui-surface-level: 8;
|
|
2563
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2564
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2565
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2566
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2567
|
+
background-color: var(--ui-surface-color);
|
|
2568
|
+
color: var(--ui-surface-ink);
|
|
2569
|
+
}
|
|
2570
|
+
}
|
|
2571
|
+
|
|
2572
|
+
@container style(--ui-surface-level: 7) {
|
|
2573
|
+
:where([data-ui-surface="+8"]) {
|
|
2574
|
+
--ui-surface-level: 8;
|
|
2575
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2576
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2577
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2578
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2579
|
+
background-color: var(--ui-surface-color);
|
|
2580
|
+
color: var(--ui-surface-ink);
|
|
2581
|
+
}
|
|
2582
|
+
}
|
|
2583
|
+
|
|
2584
|
+
@container style(--ui-surface-level: 8) {
|
|
2585
|
+
:where([data-ui-surface="+1"]) {
|
|
2586
|
+
--ui-surface-level: 8;
|
|
2587
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2588
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2589
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2590
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2591
|
+
background-color: var(--ui-surface-color);
|
|
2592
|
+
color: var(--ui-surface-ink);
|
|
2593
|
+
}
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
@container style(--ui-surface-level: 8) {
|
|
2597
|
+
:where([data-ui-surface="+2"]) {
|
|
2598
|
+
--ui-surface-level: 8;
|
|
2599
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2600
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2601
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2602
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2603
|
+
background-color: var(--ui-surface-color);
|
|
2604
|
+
color: var(--ui-surface-ink);
|
|
2605
|
+
}
|
|
2606
|
+
}
|
|
2607
|
+
|
|
2608
|
+
@container style(--ui-surface-level: 8) {
|
|
2609
|
+
:where([data-ui-surface="+3"]) {
|
|
2610
|
+
--ui-surface-level: 8;
|
|
2611
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2612
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2613
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2614
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2615
|
+
background-color: var(--ui-surface-color);
|
|
2616
|
+
color: var(--ui-surface-ink);
|
|
2617
|
+
}
|
|
2618
|
+
}
|
|
2619
|
+
|
|
2620
|
+
@container style(--ui-surface-level: 8) {
|
|
2621
|
+
:where([data-ui-surface="+4"]) {
|
|
2622
|
+
--ui-surface-level: 8;
|
|
2623
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2624
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2625
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2626
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2627
|
+
background-color: var(--ui-surface-color);
|
|
2628
|
+
color: var(--ui-surface-ink);
|
|
2629
|
+
}
|
|
2630
|
+
}
|
|
2631
|
+
|
|
2632
|
+
@container style(--ui-surface-level: 8) {
|
|
2633
|
+
:where([data-ui-surface="+5"]) {
|
|
2634
|
+
--ui-surface-level: 8;
|
|
2635
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2636
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2637
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2638
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2639
|
+
background-color: var(--ui-surface-color);
|
|
2640
|
+
color: var(--ui-surface-ink);
|
|
2641
|
+
}
|
|
2642
|
+
}
|
|
2643
|
+
|
|
2644
|
+
@container style(--ui-surface-level: 8) {
|
|
2645
|
+
:where([data-ui-surface="+6"]) {
|
|
2646
|
+
--ui-surface-level: 8;
|
|
2647
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2648
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2649
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2650
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2651
|
+
background-color: var(--ui-surface-color);
|
|
2652
|
+
color: var(--ui-surface-ink);
|
|
2653
|
+
}
|
|
2654
|
+
}
|
|
2655
|
+
|
|
2656
|
+
@container style(--ui-surface-level: 8) {
|
|
2657
|
+
:where([data-ui-surface="+7"]) {
|
|
2658
|
+
--ui-surface-level: 8;
|
|
2659
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2660
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2661
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2662
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2663
|
+
background-color: var(--ui-surface-color);
|
|
2664
|
+
color: var(--ui-surface-ink);
|
|
2665
|
+
}
|
|
2666
|
+
}
|
|
2667
|
+
|
|
2668
|
+
@container style(--ui-surface-level: 8) {
|
|
2669
|
+
:where([data-ui-surface="+8"]) {
|
|
2670
|
+
--ui-surface-level: 8;
|
|
2671
|
+
--ui-surface-color: var(--color-surface-8);
|
|
2672
|
+
--ui-surface-ink: var(--color-surface-8-ink);
|
|
2673
|
+
--ui-surface-ink-muted: var(--color-surface-8-ink-muted);
|
|
2674
|
+
--ui-matched-elevation: var(--shadow-elevation-8);
|
|
2675
|
+
background-color: var(--ui-surface-color);
|
|
2676
|
+
color: var(--ui-surface-ink);
|
|
2677
|
+
}
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2680
|
+
:where([data-ui-radius-owner="control"]) {
|
|
2681
|
+
--ui-element-radius: var(--radius-control);
|
|
2682
|
+
}
|
|
2683
|
+
|
|
2684
|
+
:where([data-ui-radius-owner="control-xs"]) {
|
|
2685
|
+
--ui-element-radius: var(--radius-control-xs);
|
|
2686
|
+
}
|
|
2687
|
+
|
|
2688
|
+
:where([data-ui-radius-owner="control-sm"]) {
|
|
2689
|
+
--ui-element-radius: var(--radius-control-sm);
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
:where([data-ui-radius-owner="control-md"]) {
|
|
2693
|
+
--ui-element-radius: var(--radius-control-md);
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
:where([data-ui-radius-owner="control-lg"]) {
|
|
2697
|
+
--ui-element-radius: var(--radius-control-lg);
|
|
2698
|
+
}
|
|
2699
|
+
|
|
2700
|
+
:where([data-ui-radius-owner="surface"]) {
|
|
2701
|
+
--ui-element-radius: var(--radius-surface);
|
|
2702
|
+
}
|
|
2703
|
+
|
|
2704
|
+
:where([data-ui-radius-owner="surface-xs"]) {
|
|
2705
|
+
--ui-element-radius: var(--radius-surface-xs);
|
|
2706
|
+
}
|
|
2707
|
+
|
|
2708
|
+
:where([data-ui-radius-owner="surface-sm"]) {
|
|
2709
|
+
--ui-element-radius: var(--radius-surface-sm);
|
|
2710
|
+
}
|
|
2711
|
+
|
|
2712
|
+
:where([data-ui-radius-owner="surface-md"]) {
|
|
2713
|
+
--ui-element-radius: var(--radius-surface-md);
|
|
2714
|
+
}
|
|
2715
|
+
|
|
2716
|
+
:where([data-ui-radius-owner="surface-lg"]) {
|
|
2717
|
+
--ui-element-radius: var(--radius-surface-lg);
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2720
|
+
:where([data-ui-radius-owner="overlay"]) {
|
|
2721
|
+
--ui-element-radius: var(--radius-overlay);
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2724
|
+
:where([data-ui-radius-owner="overlay-xs"]) {
|
|
2725
|
+
--ui-element-radius: var(--radius-overlay-xs);
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
:where([data-ui-radius-owner="overlay-sm"]) {
|
|
2729
|
+
--ui-element-radius: var(--radius-overlay-sm);
|
|
2730
|
+
}
|
|
2731
|
+
|
|
2732
|
+
:where([data-ui-radius-owner="overlay-md"]) {
|
|
2733
|
+
--ui-element-radius: var(--radius-overlay-md);
|
|
2734
|
+
}
|
|
2735
|
+
|
|
2736
|
+
:where([data-ui-radius-owner="overlay-lg"]) {
|
|
2737
|
+
--ui-element-radius: var(--radius-overlay-lg);
|
|
2738
|
+
}
|
|
2739
|
+
|
|
2740
|
+
:where([data-ui-radius-owner="surface-none"]) {
|
|
2741
|
+
--ui-element-radius: var(--radius-none);
|
|
2742
|
+
}
|
|
2743
|
+
|
|
2744
|
+
:where([data-ui-radius-owner="surface-full"]) {
|
|
2745
|
+
--ui-element-radius: var(--radius-full);
|
|
2746
|
+
}
|
|
2747
|
+
|
|
2748
|
+
:where([data-ui-radius-owner]) {
|
|
2749
|
+
--ui-owned-radius-start-start: var(--ui-element-radius);
|
|
2750
|
+
--ui-owned-radius-start-end: var(--ui-element-radius);
|
|
2751
|
+
--ui-owned-radius-end-start: var(--ui-element-radius);
|
|
2752
|
+
--ui-owned-radius-end-end: var(--ui-element-radius);
|
|
2753
|
+
border-radius: var(--ui-element-radius);
|
|
2754
|
+
}
|
|
2755
|
+
|
|
2756
|
+
:where([data-ui-concentric]) {
|
|
2757
|
+
border-start-start-radius: max(0px, calc(var(--ui-owned-radius-start-start) - var(--ui-concentric-inset-start-start, var(--ui-concentric-inset, 0px))));
|
|
2758
|
+
border-start-end-radius: max(0px, calc(var(--ui-owned-radius-start-end) - var(--ui-concentric-inset-start-end, var(--ui-concentric-inset, 0px))));
|
|
2759
|
+
border-end-start-radius: max(0px, calc(var(--ui-owned-radius-end-start) - var(--ui-concentric-inset-end-start, var(--ui-concentric-inset, 0px))));
|
|
2760
|
+
border-end-end-radius: max(0px, calc(var(--ui-owned-radius-end-end) - var(--ui-concentric-inset-end-end, var(--ui-concentric-inset, 0px))));
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2763
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="1"], [data-ui-box][data-layout="grid"][data-columns="1"]) {
|
|
2764
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
2765
|
+
}
|
|
2766
|
+
|
|
2767
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="2"], [data-ui-box][data-layout="grid"][data-columns="2"]) {
|
|
2768
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
2769
|
+
}
|
|
2770
|
+
|
|
2771
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="3"], [data-ui-box][data-layout="grid"][data-columns="3"]) {
|
|
2772
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
2773
|
+
}
|
|
2774
|
+
|
|
2775
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="4"], [data-ui-box][data-layout="grid"][data-columns="4"]) {
|
|
2776
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
2777
|
+
}
|
|
2778
|
+
|
|
2779
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="5"], [data-ui-box][data-layout="grid"][data-columns="5"]) {
|
|
2780
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
2781
|
+
}
|
|
2782
|
+
|
|
2783
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="6"], [data-ui-box][data-layout="grid"][data-columns="6"]) {
|
|
2784
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
2785
|
+
}
|
|
2786
|
+
|
|
2787
|
+
@media (min-width: 640px) {
|
|
2788
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="2"], [data-ui-box][data-layout="grid"][data-columns="2"]) {
|
|
2789
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2790
|
+
}
|
|
2791
|
+
|
|
2792
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="3"], [data-ui-box][data-layout="grid"][data-columns="3"]) {
|
|
2793
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2794
|
+
}
|
|
2795
|
+
|
|
2796
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="4"], [data-ui-box][data-layout="grid"][data-columns="4"]) {
|
|
2797
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2798
|
+
}
|
|
2799
|
+
|
|
2800
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="5"], [data-ui-box][data-layout="grid"][data-columns="5"]) {
|
|
2801
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2804
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="6"], [data-ui-box][data-layout="grid"][data-columns="6"]) {
|
|
2805
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2806
|
+
}
|
|
2807
|
+
}
|
|
2808
|
+
|
|
2809
|
+
@media (min-width: 1024px) {
|
|
2810
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="3"], [data-ui-box][data-layout="grid"][data-columns="3"]) {
|
|
2811
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="4"], [data-ui-box][data-layout="grid"][data-columns="4"]) {
|
|
2815
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2816
|
+
}
|
|
2817
|
+
|
|
2818
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="5"], [data-ui-box][data-layout="grid"][data-columns="5"]) {
|
|
2819
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2820
|
+
}
|
|
2821
|
+
|
|
2822
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="6"], [data-ui-box][data-layout="grid"][data-columns="6"]) {
|
|
2823
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2824
|
+
}
|
|
2825
|
+
}
|
|
2826
|
+
|
|
2827
|
+
@media (min-width: 1280px) {
|
|
2828
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="5"], [data-ui-box][data-layout="grid"][data-columns="5"]) {
|
|
2829
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
2830
|
+
}
|
|
2831
|
+
|
|
2832
|
+
:where(:root, .light, .dark) :where([data-ui-grid][data-columns="6"], [data-ui-box][data-layout="grid"][data-columns="6"]) {
|
|
2833
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
2834
|
+
}
|
|
2835
|
+
}
|
|
2836
|
+
|
|
2837
|
+
:where(:root, .light, .dark) [data-ui-app] {
|
|
2838
|
+
--ui-shell-sidebar-breakpoint: 1024px;
|
|
2839
|
+
grid-template-areas: "header" "main" "footer";
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2842
|
+
:where(:root, .light, .dark) [data-ui-app]:has(> [data-ui-sidebar][data-responsive-mode="mobile"]) {
|
|
2843
|
+
grid-template-areas: "header" "main" "footer";
|
|
2844
|
+
grid-template-columns: minmax(0, 1fr);
|
|
2845
|
+
grid-template-rows: auto minmax(0, 1fr) auto;
|
|
2846
|
+
}
|
|
2847
|
+
|
|
2848
|
+
:where(:root, .light, .dark) [data-ui-app]:has(> [data-ui-sidebar][data-placement="top"][data-responsive-mode="desktop"]) {
|
|
2849
|
+
grid-template-areas: "sidebar sidebar sidebar" "header header aside" "main main aside" "footer footer aside";
|
|
2850
|
+
grid-template-columns: minmax(0, 1fr) 0 min-content;
|
|
2851
|
+
grid-template-rows: var(--ui-app-sidebar-height, auto) auto minmax(0, 1fr) auto;
|
|
2852
|
+
}
|
|
2853
|
+
|
|
2854
|
+
:where(:root, .light, .dark) [data-ui-app][data-sidebar="left"]:has(> [data-ui-sidebar][data-placement="side"][data-responsive-mode="desktop"]),
|
|
2855
|
+
:where(:root, .light, .dark) [data-ui-app][data-sidebar="both"]:has(> [data-ui-sidebar][data-placement="side"][data-responsive-mode="desktop"]) {
|
|
2856
|
+
grid-template-areas: "sidebar header aside" "sidebar main aside" "sidebar footer aside";
|
|
2857
|
+
grid-template-columns: var(--ui-app-sidebar-width, var(--spacing-sidebar-width)) minmax(0, 1fr) min-content;
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2860
|
+
:where(:root, .light, .dark) [data-ui-app][data-sidebar-state="stashed"][data-sidebar="left"]:has(> [data-ui-sidebar][data-placement="side"][data-responsive-mode="desktop"]),
|
|
2861
|
+
:where(:root, .light, .dark) [data-ui-app][data-sidebar-state="stashed"][data-sidebar="both"]:has(> [data-ui-sidebar][data-placement="side"][data-responsive-mode="desktop"]) {
|
|
2862
|
+
grid-template-columns: 0 minmax(0, 1fr) min-content;
|
|
2863
|
+
}
|
|
2864
|
+
|
|
2865
|
+
:where(:root, .light, .dark) [data-ui-app][data-sidebar="right"]:has(> [data-ui-sidebar][data-placement="side"][data-responsive-mode="desktop"]) {
|
|
2866
|
+
grid-template-areas: "header sidebar aside" "main sidebar aside" "footer sidebar aside";
|
|
2867
|
+
grid-template-columns: minmax(0, 1fr) var(--ui-app-sidebar-width, var(--spacing-sidebar-width)) min-content;
|
|
2868
|
+
}
|
|
2869
|
+
|
|
2870
|
+
:where(:root, .light, .dark) [data-ui-app][data-sidebar-state="stashed"][data-sidebar="right"]:has(> [data-ui-sidebar][data-placement="side"][data-responsive-mode="desktop"]) {
|
|
2871
|
+
grid-template-columns: minmax(0, 1fr) 0 min-content;
|
|
2872
|
+
}
|
|
2873
|
+
|
|
2874
|
+
@media (min-width: 1024px) {
|
|
2875
|
+
:where(:root, .light, .dark) [data-ui-app]:has(> [data-ui-sidebar]:not([data-responsive-mode])[data-placement="top"]) {
|
|
2876
|
+
grid-template-areas: "sidebar sidebar sidebar" "header header aside" "main main aside" "footer footer aside";
|
|
2877
|
+
grid-template-columns: minmax(0, 1fr) 0 min-content;
|
|
2878
|
+
grid-template-rows: var(--ui-app-sidebar-height, auto) auto minmax(0, 1fr) auto;
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
:where(:root, .light, .dark) [data-ui-app][data-sidebar="left"]:has(> [data-ui-sidebar]:not([data-responsive-mode])[data-desktop-state="expanded"]),
|
|
2882
|
+
:where(:root, .light, .dark) [data-ui-app][data-sidebar="both"]:has(> [data-ui-sidebar]:not([data-responsive-mode])[data-desktop-state="expanded"]) {
|
|
2883
|
+
grid-template-areas: "sidebar header aside" "sidebar main aside" "sidebar footer aside";
|
|
2884
|
+
grid-template-columns: var(--ui-app-sidebar-width, var(--spacing-sidebar-width)) minmax(0, 1fr) min-content;
|
|
2885
|
+
}
|
|
2886
|
+
|
|
2887
|
+
:where(:root, .light, .dark) [data-ui-app][data-sidebar="left"]:has(> [data-ui-sidebar]:not([data-responsive-mode])[data-desktop-state="stashed"]),
|
|
2888
|
+
:where(:root, .light, .dark) [data-ui-app][data-sidebar="both"]:has(> [data-ui-sidebar]:not([data-responsive-mode])[data-desktop-state="stashed"]) {
|
|
2889
|
+
grid-template-areas: "sidebar header aside" "sidebar main aside" "sidebar footer aside";
|
|
2890
|
+
grid-template-columns: 0 minmax(0, 1fr) min-content;
|
|
2891
|
+
}
|
|
2892
|
+
|
|
2893
|
+
:where(:root, .light, .dark) [data-ui-app][data-sidebar="right"]:has(> [data-ui-sidebar]:not([data-responsive-mode])[data-desktop-state="expanded"]) {
|
|
2894
|
+
grid-template-areas: "header sidebar aside" "main sidebar aside" "footer sidebar aside";
|
|
2895
|
+
grid-template-columns: minmax(0, 1fr) var(--ui-app-sidebar-width, var(--spacing-sidebar-width)) min-content;
|
|
2896
|
+
}
|
|
2897
|
+
|
|
2898
|
+
:where(:root, .light, .dark) [data-ui-app][data-sidebar="right"]:has(> [data-ui-sidebar]:not([data-responsive-mode])[data-desktop-state="stashed"]) {
|
|
2899
|
+
grid-template-areas: "header sidebar aside" "main sidebar aside" "footer sidebar aside";
|
|
2900
|
+
grid-template-columns: minmax(0, 1fr) 0 min-content;
|
|
2901
|
+
}
|
|
2902
|
+
|
|
2903
|
+
:where(:root, .light, .dark) [data-ui-app] > [data-ui-sidebar]:not([data-responsive-mode])[data-placement="side"][data-desktop-state="expanded"] {
|
|
2904
|
+
position: sticky;
|
|
2905
|
+
inset-block: 0;
|
|
2906
|
+
inset-inline: auto;
|
|
2907
|
+
z-index: auto;
|
|
2908
|
+
width: var(--ui-sidebar-width, var(--spacing-sidebar-width));
|
|
2909
|
+
height: 100vh;
|
|
2910
|
+
border-radius: 0;
|
|
2911
|
+
translate: 0;
|
|
2912
|
+
--ui-active-elevation-shadow-layers: var(--ui-sidebar-resting-elevation);
|
|
2913
|
+
}
|
|
2914
|
+
|
|
2915
|
+
:where(:root, .light, .dark) [data-ui-app] > [data-ui-sidebar]:not([data-responsive-mode])[data-placement="side"][data-desktop-state="expanded"][data-sticky="false" i] {
|
|
2916
|
+
position: relative;
|
|
2917
|
+
height: auto;
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
:where(:root, .light, .dark) [data-ui-app] > [data-ui-sidebar]:not([data-responsive-mode])[data-placement="side"][data-desktop-state="stashed"] {
|
|
2921
|
+
display: none;
|
|
2922
|
+
}
|
|
2923
|
+
|
|
2924
|
+
:where(:root, .light, .dark) [data-ui-app] > [data-ui-sidebar]:not([data-responsive-mode])[data-placement="top"] {
|
|
2925
|
+
position: relative;
|
|
2926
|
+
inset: auto;
|
|
2927
|
+
z-index: auto;
|
|
2928
|
+
width: 100%;
|
|
2929
|
+
max-width: none;
|
|
2930
|
+
height: var(--ui-sidebar-height, auto);
|
|
2931
|
+
border-radius: 0;
|
|
2932
|
+
translate: 0;
|
|
2933
|
+
flex-direction: row;
|
|
2934
|
+
overflow: visible;
|
|
2935
|
+
--ui-active-elevation-shadow-layers: var(--ui-sidebar-resting-elevation);
|
|
2936
|
+
}
|
|
2937
|
+
|
|
2938
|
+
:where(:root, .light, .dark) [data-ui-app] > [data-ui-sidebar]:not([data-responsive-mode])[data-placement="top"] [data-ui-sidebar-content] {
|
|
2939
|
+
overflow: visible;
|
|
2940
|
+
flex: 1 1 0%;
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
:where(:root, .light, .dark) [data-ui-app] > [data-ui-sidebar]:not([data-responsive-mode])[data-placement="top"] [data-ui-sidebar-content] > [data-ui-scroll-area] {
|
|
2944
|
+
overflow: visible;
|
|
2945
|
+
}
|
|
2946
|
+
|
|
2947
|
+
:where(:root, .light, .dark) [data-ui-app] > [data-ui-sidebar]:not([data-responsive-mode])[data-placement="top"] [data-ui-sidebar-content-inner] {
|
|
2948
|
+
display: flex;
|
|
2949
|
+
align-items: center;
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2952
|
+
:where(:root, .light, .dark) [data-ui-app] > [data-ui-sidebar]:not([data-responsive-mode])[data-placement="top"] [data-ui-sidebar-nav],
|
|
2953
|
+
:where(:root, .light, .dark) [data-ui-app] > [data-ui-sidebar]:not([data-responsive-mode])[data-placement="top"] [data-ui-sidebar-footer] {
|
|
2954
|
+
display: flex;
|
|
2955
|
+
align-items: center;
|
|
2956
|
+
}
|
|
2957
|
+
|
|
2958
|
+
:where(:root, .light, .dark) [data-ui-app] > [data-ui-sidebar]:not([data-responsive-mode])[data-placement="top"] [data-ui-sidebar-item] {
|
|
2959
|
+
width: auto;
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
:where(:root, .light, .dark) [data-ui-app][data-sidebar="none"] {
|
|
2963
|
+
grid-template-areas: "header" "main" "footer";
|
|
2964
|
+
grid-template-columns: minmax(0, 1fr);
|
|
2965
|
+
}
|
|
2966
|
+
}
|