@motion-proto/live-tokens 0.7.1 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/skills/live-tokens-add-component/SKILL.md +488 -0
- package/README.md +34 -0
- package/dist-plugin/index.cjs +707 -90
- package/dist-plugin/index.d.cts +1 -0
- package/dist-plugin/index.d.ts +1 -0
- package/dist-plugin/index.js +707 -90
- package/package.json +6 -2
- package/src/app/site.css +1 -1
- package/src/editor/component-editor/CollapsibleSectionEditor.svelte +34 -27
- package/src/editor/component-editor/DialogEditor.svelte +4 -4
- package/src/editor/component-editor/NotificationEditor.svelte +3 -1
- package/src/editor/component-editor/SectionDividerEditor.svelte +439 -112
- package/src/editor/component-editor/StandardButtonsEditor.svelte +13 -1
- package/src/editor/component-editor/editors.d.ts +10 -0
- package/src/editor/component-editor/index.ts +16 -1
- package/src/editor/component-editor/registry.ts +103 -26
- package/src/editor/component-editor/scaffolding/AngleDial.svelte +52 -13
- package/src/editor/component-editor/scaffolding/ComponentFileManager.svelte +10 -11
- package/src/editor/component-editor/scaffolding/ComponentsTab.svelte +2 -2
- package/src/editor/component-editor/scaffolding/LinkedBlock.svelte +0 -1
- package/src/editor/component-editor/scaffolding/RadialShapePad.svelte +483 -0
- package/src/editor/component-editor/scaffolding/ShadowBackdrop.svelte +15 -2
- package/src/editor/component-editor/scaffolding/StateBlock.svelte +103 -15
- package/src/editor/component-editor/scaffolding/TokenLayout.svelte +9 -6
- package/src/editor/component-editor/scaffolding/TypeEditor.svelte +13 -1
- package/src/editor/component-editor/scaffolding/VariantGroup.svelte +239 -25
- package/src/editor/component-editor/scaffolding/buildTypeGroupTokens.ts +1 -0
- package/src/editor/component-editor/scaffolding/componentSources.ts +3 -3
- package/src/editor/component-editor/scaffolding/defaultSections.ts +15 -10
- package/src/editor/component-editor/scaffolding/types.ts +11 -0
- package/src/editor/core/components/componentConfigKeys.ts +22 -3
- package/src/editor/core/components/componentConfigService.ts +2 -2
- package/src/editor/core/components/componentPersist.ts +7 -5
- package/src/editor/core/manifests/manifestService.ts +58 -3
- package/src/editor/core/palettes/familySwap.ts +99 -0
- package/src/editor/core/palettes/paletteDerivation.ts +69 -0
- package/src/editor/core/palettes/tokenRegistry.ts +4 -1
- package/src/editor/core/store/editorStore.ts +206 -12
- package/src/editor/core/store/editorTypes.ts +55 -12
- package/src/editor/core/store/gradientSource.ts +192 -0
- package/src/editor/core/themes/migrations/2026-05-19-collapsiblesection-drop-frame-surface.ts +28 -0
- package/src/editor/core/themes/migrations/2026-05-19-sectiondivider-rich-gradient.ts +35 -0
- package/src/editor/core/themes/migrations/2026-05-20-sectiondivider-slim-variants.ts +82 -0
- package/src/editor/core/themes/migrations/2026-05-21-sectiondivider-spacing-to-padding.ts +24 -0
- package/src/editor/core/themes/migrations/2026-05-22-sectiondivider-intrinsics-to-css.ts +81 -0
- package/src/editor/core/themes/migrations/index.ts +10 -0
- package/src/editor/core/themes/slices/components.ts +27 -4
- package/src/editor/core/themes/slices/gradients.ts +88 -13
- package/src/editor/core/themes/themeInit.ts +2 -2
- package/src/editor/core/themes/themeTypes.ts +56 -1
- package/src/editor/index.ts +10 -1
- package/src/editor/overlay/ColumnsOverlay.svelte +0 -1
- package/src/editor/overlay/LiveEditorOverlay.svelte +1 -4
- package/src/editor/pages/ComponentEditorPage.svelte +53 -3
- package/src/editor/pages/EditorShell.svelte +53 -3
- package/src/editor/styles/ui-editor.css +1 -0
- package/src/editor/styles/ui-form-controls.css +19 -20
- package/src/editor/ui/BezierCurveEditor.svelte +114 -63
- package/src/editor/ui/EditorViewSwitcher.svelte +0 -1
- package/src/editor/ui/FileLoadList.svelte +22 -5
- package/src/editor/ui/FontStackEditor.svelte +214 -76
- package/src/editor/ui/GradientEditor.svelte +435 -215
- package/src/editor/ui/GradientStopPicker.svelte +11 -3
- package/src/editor/ui/ManifestFileManager.svelte +71 -4
- package/src/editor/ui/PaletteEditor.svelte +52 -79
- package/src/editor/ui/ProjectFontsSection.svelte +328 -293
- package/src/editor/ui/ThemeFileManager.svelte +0 -4
- package/src/editor/ui/UIFontFamilySelector.svelte +0 -1
- package/src/editor/ui/UIFontSizeSelector.svelte +3 -0
- package/src/editor/ui/UIInfoPopover.svelte +0 -1
- package/src/editor/ui/UILetterSpacingSelector.svelte +65 -0
- package/src/editor/ui/UIPaletteSelector.svelte +31 -4
- package/src/editor/ui/UIPillButton.svelte +33 -3
- package/src/editor/ui/UISegmentedControl.svelte +114 -0
- package/src/editor/ui/UITokenSelector.svelte +4 -1
- package/src/editor/ui/VariablesTab.svelte +41 -35
- package/src/editor/ui/palette/OverridesPanel.svelte +14 -37
- package/src/editor/ui/palette/PaletteBase.svelte +3 -3
- package/src/editor/ui/sections/ColumnsSection.svelte +1 -2
- package/src/editor/ui/sections/GradientsSection.svelte +1 -1
- package/src/editor/ui/sections/OverlaysSection.svelte +1 -1
- package/src/editor/ui/sections/ShadowsSection.svelte +1 -1
- package/src/system/components/Button.svelte +2 -2
- package/src/system/components/Card.svelte +29 -1
- package/src/system/components/CollapsibleSection.svelte +25 -2
- package/src/system/components/Dialog.svelte +24 -4
- package/src/system/components/FloatingTokenTags.css +43 -24
- package/src/system/components/FloatingTokenTags.svelte +88 -137
- package/src/system/components/Notification.svelte +8 -1
- package/src/system/components/SectionDivider.svelte +532 -381
- package/src/system/styles/CONVENTIONS.md +1 -1
- package/src/system/styles/fonts.css +3 -16
- package/src/system/styles/tokens.css +356 -1199
- package/src/system/styles/tokens.generated.css +544 -0
- package/src/editor/component-editor/scaffolding/DividerEditor.svelte +0 -94
- package/src/editor/component-editor/scaffolding/GradientCard.svelte +0 -296
|
@@ -1,263 +1,248 @@
|
|
|
1
|
-
/* RuneGoblin
|
|
2
|
-
/*
|
|
3
|
-
/* Note: Font declarations moved to fonts.css which is copied directly without processing */
|
|
4
|
-
/* Convention: no component-scoped tokens in this file; those belong in component-configs/*. */
|
|
1
|
+
/* RuneGoblin design tokens. Component tokens live in component-configs/*. */
|
|
2
|
+
/* @font-face rules live in fonts.css (copied verbatim). */
|
|
5
3
|
|
|
6
|
-
/*
|
|
7
|
-
/* Using :where() for 0 specificity - component styles can override naturally */
|
|
4
|
+
/* Module font fallback. :where() = 0 specificity so components override. */
|
|
8
5
|
:where(*:not([class*="fa-"])) {
|
|
9
6
|
font-family: var(--font-sans);
|
|
10
7
|
}
|
|
11
8
|
|
|
12
9
|
:root {
|
|
13
|
-
/*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
--color-neutral-
|
|
21
|
-
--color-neutral-
|
|
22
|
-
--color-neutral-
|
|
23
|
-
--color-neutral-
|
|
24
|
-
--color-neutral-
|
|
25
|
-
--color-neutral-
|
|
26
|
-
--color-neutral-700: #48413d;
|
|
27
|
-
--color-neutral-800: #302925;
|
|
28
|
-
--color-neutral-850: #1a1410;
|
|
29
|
-
--color-neutral-900: #070302;
|
|
10
|
+
/* COLOR RAMPS — palette swatches 100–950. Editor overrides at runtime. */
|
|
11
|
+
|
|
12
|
+
/* Neutral */
|
|
13
|
+
--color-neutral-100: #dde6ec;
|
|
14
|
+
--color-neutral-200: #c4cdd3;
|
|
15
|
+
--color-neutral-300: #a8b1b7;
|
|
16
|
+
--color-neutral-400: #8b949a;
|
|
17
|
+
--color-neutral-500: #70787e;
|
|
18
|
+
--color-neutral-600: #555e63;
|
|
19
|
+
--color-neutral-700: #3c4449;
|
|
20
|
+
--color-neutral-800: #252c31;
|
|
21
|
+
--color-neutral-850: #0f161a;
|
|
22
|
+
--color-neutral-900: #020407;
|
|
30
23
|
--color-neutral-950: #000000;
|
|
31
24
|
|
|
32
|
-
/* Alternate
|
|
33
|
-
--color-alternate-100: #
|
|
34
|
-
--color-alternate-200: #
|
|
35
|
-
--color-alternate-300: #
|
|
36
|
-
--color-alternate-400: #
|
|
37
|
-
--color-alternate-500: #
|
|
38
|
-
--color-alternate-600: #
|
|
39
|
-
--color-alternate-700: #
|
|
40
|
-
--color-alternate-800: #
|
|
41
|
-
--color-alternate-850: #
|
|
42
|
-
--color-alternate-900: #
|
|
43
|
-
--color-alternate-950: #
|
|
44
|
-
|
|
45
|
-
/*
|
|
46
|
-
--color-canvas-100: #
|
|
47
|
-
--color-canvas-200: #
|
|
48
|
-
--color-canvas-300: #
|
|
49
|
-
--color-canvas-400: #
|
|
50
|
-
--color-canvas-500: #
|
|
51
|
-
--color-canvas-600: #
|
|
52
|
-
--color-canvas-700: #
|
|
53
|
-
--color-canvas-800: #
|
|
54
|
-
--color-canvas-850: #
|
|
55
|
-
--color-canvas-900: #
|
|
56
|
-
--color-canvas-950: #
|
|
25
|
+
/* Alternate */
|
|
26
|
+
--color-alternate-100: #e9e3e0;
|
|
27
|
+
--color-alternate-200: #d2ccc8;
|
|
28
|
+
--color-alternate-300: #b7b1ad;
|
|
29
|
+
--color-alternate-400: #9b9693;
|
|
30
|
+
--color-alternate-500: #817b78;
|
|
31
|
+
--color-alternate-600: #67625f;
|
|
32
|
+
--color-alternate-700: #4f4a47;
|
|
33
|
+
--color-alternate-800: #373330;
|
|
34
|
+
--color-alternate-850: #221d1b;
|
|
35
|
+
--color-alternate-900: #0e0b08;
|
|
36
|
+
--color-alternate-950: #030101;
|
|
37
|
+
|
|
38
|
+
/* Canvas */
|
|
39
|
+
--color-canvas-100: #cecfe5;
|
|
40
|
+
--color-canvas-200: #abacc2;
|
|
41
|
+
--color-canvas-300: #8d8da4;
|
|
42
|
+
--color-canvas-400: #727289;
|
|
43
|
+
--color-canvas-500: #5a5a72;
|
|
44
|
+
--color-canvas-600: #45455c;
|
|
45
|
+
--color-canvas-700: #33324a;
|
|
46
|
+
--color-canvas-800: #232239;
|
|
47
|
+
--color-canvas-850: #15142b;
|
|
48
|
+
--color-canvas-900: #0b081f;
|
|
49
|
+
--color-canvas-950: #040215;
|
|
57
50
|
|
|
58
51
|
/* Brand */
|
|
59
|
-
--color-brand-100: #
|
|
60
|
-
--color-brand-200: #
|
|
61
|
-
--color-brand-300: #
|
|
62
|
-
--color-brand-400: #
|
|
63
|
-
--color-brand-500: #
|
|
64
|
-
--color-brand-600: #
|
|
65
|
-
--color-brand-700: #
|
|
66
|
-
--color-brand-800: #
|
|
67
|
-
--color-brand-850: #
|
|
68
|
-
--color-brand-900: #
|
|
69
|
-
--color-brand-950: #
|
|
52
|
+
--color-brand-100: #ffbad3;
|
|
53
|
+
--color-brand-200: #ff7bb3;
|
|
54
|
+
--color-brand-300: #ec4495;
|
|
55
|
+
--color-brand-400: #cf0b7a;
|
|
56
|
+
--color-brand-500: #a80062;
|
|
57
|
+
--color-brand-600: #84004b;
|
|
58
|
+
--color-brand-700: #640038;
|
|
59
|
+
--color-brand-800: #490027;
|
|
60
|
+
--color-brand-850: #320019;
|
|
61
|
+
--color-brand-900: #1f000d;
|
|
62
|
+
--color-brand-950: #100005;
|
|
70
63
|
|
|
71
64
|
/* Accent */
|
|
72
|
-
--color-accent-100: #
|
|
73
|
-
--color-accent-200: #
|
|
74
|
-
--color-accent-300: #
|
|
75
|
-
--color-accent-400: #
|
|
76
|
-
--color-accent-500: #
|
|
77
|
-
--color-accent-600: #
|
|
78
|
-
--color-accent-700: #
|
|
79
|
-
--color-accent-800: #
|
|
80
|
-
--color-accent-850: #
|
|
81
|
-
--color-accent-900: #
|
|
82
|
-
--color-accent-950: #
|
|
65
|
+
--color-accent-100: #98e1dd;
|
|
66
|
+
--color-accent-200: #70beba;
|
|
67
|
+
--color-accent-300: #4ba09c;
|
|
68
|
+
--color-accent-400: #248582;
|
|
69
|
+
--color-accent-500: #006b69;
|
|
70
|
+
--color-accent-600: #005351;
|
|
71
|
+
--color-accent-700: #003e3d;
|
|
72
|
+
--color-accent-800: #002c2b;
|
|
73
|
+
--color-accent-850: #001d1c;
|
|
74
|
+
--color-accent-900: #00100f;
|
|
75
|
+
--color-accent-950: #000606;
|
|
83
76
|
|
|
84
77
|
/* Special */
|
|
85
|
-
--color-special-100: #
|
|
86
|
-
--color-special-200: #
|
|
87
|
-
--color-special-300: #
|
|
88
|
-
--color-special-400: #
|
|
89
|
-
--color-special-500: #
|
|
90
|
-
--color-special-600: #
|
|
91
|
-
--color-special-700: #
|
|
92
|
-
--color-special-800: #
|
|
93
|
-
--color-special-850: #
|
|
94
|
-
--color-special-900: #
|
|
95
|
-
--color-special-950: #
|
|
78
|
+
--color-special-100: #d2c8ff;
|
|
79
|
+
--color-special-200: #b19cff;
|
|
80
|
+
--color-special-300: #9673f5;
|
|
81
|
+
--color-special-400: #7d54db;
|
|
82
|
+
--color-special-500: #6634c4;
|
|
83
|
+
--color-special-600: #5407af;
|
|
84
|
+
--color-special-700: #3f0088;
|
|
85
|
+
--color-special-800: #2d0064;
|
|
86
|
+
--color-special-850: #1d0046;
|
|
87
|
+
--color-special-900: #10002d;
|
|
88
|
+
--color-special-950: #060019;
|
|
96
89
|
|
|
97
90
|
/* Success */
|
|
98
|
-
--color-success-100: #
|
|
99
|
-
--color-success-200: #
|
|
100
|
-
--color-success-300: #
|
|
101
|
-
--color-success-400: #
|
|
102
|
-
--color-success-500: #
|
|
103
|
-
--color-success-600: #
|
|
104
|
-
--color-success-700: #
|
|
105
|
-
--color-success-800: #
|
|
106
|
-
--color-success-850: #
|
|
107
|
-
--color-success-900: #
|
|
108
|
-
--color-success-950: #
|
|
91
|
+
--color-success-100: #92e9a3;
|
|
92
|
+
--color-success-200: #69c67e;
|
|
93
|
+
--color-success-300: #42a75d;
|
|
94
|
+
--color-success-400: #0e8c3f;
|
|
95
|
+
--color-success-500: #007030;
|
|
96
|
+
--color-success-600: #005723;
|
|
97
|
+
--color-success-700: #004119;
|
|
98
|
+
--color-success-800: #002f0f;
|
|
99
|
+
--color-success-850: #001e08;
|
|
100
|
+
--color-success-900: #001103;
|
|
101
|
+
--color-success-950: #000701;
|
|
109
102
|
|
|
110
103
|
/* Warning */
|
|
111
|
-
--color-warning-100: #
|
|
112
|
-
--color-warning-200: #
|
|
113
|
-
--color-warning-300: #
|
|
114
|
-
--color-warning-400: #
|
|
115
|
-
--color-warning-500: #
|
|
116
|
-
--color-warning-600: #
|
|
117
|
-
--color-warning-700: #
|
|
118
|
-
--color-warning-800: #
|
|
119
|
-
--color-warning-850: #
|
|
120
|
-
--color-warning-900: #
|
|
121
|
-
--color-warning-950: #
|
|
104
|
+
--color-warning-100: #ffc57d;
|
|
105
|
+
--color-warning-200: #e29f44;
|
|
106
|
+
--color-warning-300: #c47f03;
|
|
107
|
+
--color-warning-400: #a06600;
|
|
108
|
+
--color-warning-500: #805100;
|
|
109
|
+
--color-warning-600: #643e00;
|
|
110
|
+
--color-warning-700: #4c2e00;
|
|
111
|
+
--color-warning-800: #362000;
|
|
112
|
+
--color-warning-850: #241300;
|
|
113
|
+
--color-warning-900: #150900;
|
|
114
|
+
--color-warning-950: #090300;
|
|
122
115
|
|
|
123
116
|
/* Info */
|
|
124
|
-
--color-info-100: #
|
|
125
|
-
--color-info-200: #
|
|
126
|
-
--color-info-300: #
|
|
127
|
-
--color-info-400: #
|
|
128
|
-
--color-info-500: #
|
|
129
|
-
--color-info-600: #
|
|
130
|
-
--color-info-700: #
|
|
131
|
-
--color-info-800: #
|
|
132
|
-
--color-info-850: #
|
|
133
|
-
--color-info-900: #
|
|
134
|
-
--color-info-950: #
|
|
117
|
+
--color-info-100: #b4d4ff;
|
|
118
|
+
--color-info-200: #76b0ff;
|
|
119
|
+
--color-info-300: #398efa;
|
|
120
|
+
--color-info-400: #0571e0;
|
|
121
|
+
--color-info-500: #0059b6;
|
|
122
|
+
--color-info-600: #00458f;
|
|
123
|
+
--color-info-700: #00336d;
|
|
124
|
+
--color-info-800: #002350;
|
|
125
|
+
--color-info-850: #001637;
|
|
126
|
+
--color-info-900: #000b23;
|
|
127
|
+
--color-info-950: #000413;
|
|
135
128
|
|
|
136
129
|
/* Danger */
|
|
137
|
-
--color-danger-100: #
|
|
138
|
-
--color-danger-200: #
|
|
139
|
-
--color-danger-300: #
|
|
140
|
-
--color-danger-400: #
|
|
141
|
-
--color-danger-500: #
|
|
142
|
-
--color-danger-600: #
|
|
143
|
-
--color-danger-700: #
|
|
144
|
-
--color-danger-800: #
|
|
145
|
-
--color-danger-850: #
|
|
146
|
-
--color-danger-900: #
|
|
147
|
-
--color-danger-950: #
|
|
148
|
-
|
|
149
|
-
/*
|
|
150
|
-
keyword "transparent" as a no-fill slot rather than a palette swatch). */
|
|
130
|
+
--color-danger-100: #ffbeb8;
|
|
131
|
+
--color-danger-200: #ff847d;
|
|
132
|
+
--color-danger-300: #ec5552;
|
|
133
|
+
--color-danger-400: #d02d33;
|
|
134
|
+
--color-danger-500: #b0001c;
|
|
135
|
+
--color-danger-600: #8a0013;
|
|
136
|
+
--color-danger-700: #6a000c;
|
|
137
|
+
--color-danger-800: #4d0006;
|
|
138
|
+
--color-danger-850: #350003;
|
|
139
|
+
--color-danger-900: #210001;
|
|
140
|
+
--color-danger-950: #110000;
|
|
141
|
+
|
|
142
|
+
/* CSS keyword `transparent` for no-fill slots. */
|
|
151
143
|
--color-transparent: transparent;
|
|
152
144
|
|
|
153
|
-
/*
|
|
154
|
-
(e.g. `--button-shimmer` aliases to one of these). */
|
|
145
|
+
/* Boolean visibility slot targets (e.g. --button-shimmer). */
|
|
155
146
|
--shimmer-on: block;
|
|
156
147
|
--shimmer-off: none;
|
|
157
148
|
|
|
158
|
-
/*
|
|
159
|
-
|
|
160
|
-
Editor writes these via the Palette "empty selector".
|
|
161
|
-
═══════════════════════════════════════════════════════ */
|
|
162
|
-
|
|
163
|
-
--page-bg: #10302d;
|
|
149
|
+
/* PAGE BACKGROUND — canvas behind all UI. */
|
|
150
|
+
--page-bg: #15142b;
|
|
164
151
|
--page-bg-attachment: scroll;
|
|
165
152
|
|
|
166
|
-
/*
|
|
167
|
-
SURFACES — 7-point scales (lowest → highest)
|
|
168
|
-
═══════════════════════════════════════════════════════ */
|
|
153
|
+
/* SURFACES — 7-point scales, lowest → highest. */
|
|
169
154
|
|
|
170
|
-
/* Neutral
|
|
171
|
-
--surface-neutral-lowest: #
|
|
172
|
-
--surface-neutral-lower: #
|
|
173
|
-
--surface-neutral-low: #
|
|
174
|
-
--surface-neutral: #
|
|
175
|
-
--surface-neutral-high: #
|
|
176
|
-
--surface-neutral-higher: #
|
|
177
|
-
--surface-neutral-highest: #
|
|
155
|
+
/* Neutral */
|
|
156
|
+
--surface-neutral-lowest: #040c13;
|
|
157
|
+
--surface-neutral-lower: #162027;
|
|
158
|
+
--surface-neutral-low: #2c353c;
|
|
159
|
+
--surface-neutral: #434c52;
|
|
160
|
+
--surface-neutral-high: #5c6369;
|
|
161
|
+
--surface-neutral-higher: #767c81;
|
|
162
|
+
--surface-neutral-highest: #91969a;
|
|
178
163
|
|
|
179
164
|
/* Alternate surfaces */
|
|
180
|
-
--surface-alternate-lowest: #
|
|
181
|
-
--surface-alternate-lower: #
|
|
182
|
-
--surface-alternate-low: #
|
|
183
|
-
--surface-alternate: #
|
|
184
|
-
--surface-alternate-high: #
|
|
185
|
-
--surface-alternate-higher: #
|
|
186
|
-
--surface-alternate-highest: #
|
|
187
|
-
|
|
188
|
-
/*
|
|
189
|
-
--surface-canvas-lowest: #
|
|
190
|
-
--surface-canvas-lower: #
|
|
191
|
-
--surface-canvas-low: #
|
|
192
|
-
--surface-canvas: #
|
|
193
|
-
--surface-canvas-high: #
|
|
194
|
-
--surface-canvas-higher: #
|
|
195
|
-
--surface-canvas-highest: #
|
|
165
|
+
--surface-alternate-lowest: #100907;
|
|
166
|
+
--surface-alternate-lower: #231d19;
|
|
167
|
+
--surface-alternate-low: #39322f;
|
|
168
|
+
--surface-alternate: #4f4946;
|
|
169
|
+
--surface-alternate-high: #66615e;
|
|
170
|
+
--surface-alternate-higher: #7f7a78;
|
|
171
|
+
--surface-alternate-highest: #989492;
|
|
172
|
+
|
|
173
|
+
/* Canvas */
|
|
174
|
+
--surface-canvas-lowest: #0a0523;
|
|
175
|
+
--surface-canvas-lower: #1c1a37;
|
|
176
|
+
--surface-canvas-low: #31304c;
|
|
177
|
+
--surface-canvas: #474761;
|
|
178
|
+
--surface-canvas-high: #5f6077;
|
|
179
|
+
--surface-canvas-higher: #79798e;
|
|
180
|
+
--surface-canvas-highest: #9393a5;
|
|
196
181
|
|
|
197
182
|
/* Brand */
|
|
198
|
-
--surface-brand-lowest: #
|
|
199
|
-
--surface-brand-lower: #
|
|
200
|
-
--surface-brand-low: #
|
|
201
|
-
--surface-brand: #
|
|
202
|
-
--surface-brand-high: #
|
|
203
|
-
--surface-brand-higher: #
|
|
204
|
-
--surface-brand-highest: #
|
|
183
|
+
--surface-brand-lowest: #1d000c;
|
|
184
|
+
--surface-brand-lower: #3e0020;
|
|
185
|
+
--surface-brand-low: #620037;
|
|
186
|
+
--surface-brand: #89004e;
|
|
187
|
+
--surface-brand-high: #b10067;
|
|
188
|
+
--surface-brand-higher: #cf3480;
|
|
189
|
+
--surface-brand-highest: #e0649a;
|
|
205
190
|
|
|
206
191
|
/* Accent */
|
|
207
|
-
--surface-accent-lowest: #
|
|
208
|
-
--surface-accent-lower: #
|
|
209
|
-
--surface-accent-low: #
|
|
210
|
-
--surface-accent: #
|
|
211
|
-
--surface-accent-high: #
|
|
212
|
-
--surface-accent-higher: #
|
|
213
|
-
--surface-accent-highest: #
|
|
192
|
+
--surface-accent-lowest: #000f0e;
|
|
193
|
+
--surface-accent-lower: #002423;
|
|
194
|
+
--surface-accent-low: #003c3b;
|
|
195
|
+
--surface-accent: #005654;
|
|
196
|
+
--surface-accent-high: #00716f;
|
|
197
|
+
--surface-accent-higher: #3b8a87;
|
|
198
|
+
--surface-accent-highest: #66a29f;
|
|
214
199
|
|
|
215
200
|
/* Special */
|
|
216
201
|
--surface-special-lowest: #0f002b;
|
|
217
|
-
--surface-special-lower: #
|
|
218
|
-
--surface-special-low: #
|
|
219
|
-
--surface-special: #
|
|
220
|
-
--surface-special-high: #
|
|
221
|
-
--surface-special-higher: #
|
|
222
|
-
--surface-special-highest: #
|
|
202
|
+
--surface-special-lower: #250055;
|
|
203
|
+
--surface-special-low: #3d0084;
|
|
204
|
+
--surface-special: #5700b7;
|
|
205
|
+
--surface-special-high: #6c3bcb;
|
|
206
|
+
--surface-special-higher: #8161d8;
|
|
207
|
+
--surface-special-highest: #9983e4;
|
|
223
208
|
|
|
224
209
|
/* Success */
|
|
225
210
|
--surface-success-lowest: #001003;
|
|
226
|
-
--surface-success-lower: #
|
|
227
|
-
--surface-success-low: #
|
|
228
|
-
--surface-success: #
|
|
229
|
-
--surface-success-high: #
|
|
230
|
-
--surface-success-higher: #
|
|
231
|
-
--surface-success-highest: #
|
|
211
|
+
--surface-success-lower: #00270b;
|
|
212
|
+
--surface-success-low: #004018;
|
|
213
|
+
--surface-success: #005a25;
|
|
214
|
+
--surface-success-high: #007733;
|
|
215
|
+
--surface-success-higher: #32914d;
|
|
216
|
+
--surface-success-highest: #61a870;
|
|
232
217
|
|
|
233
218
|
/* Warning */
|
|
234
|
-
--surface-warning-lowest: #
|
|
235
|
-
--surface-warning-lower: #
|
|
236
|
-
--surface-warning-low: #
|
|
237
|
-
--surface-warning: #
|
|
238
|
-
--surface-warning-high: #
|
|
239
|
-
--surface-warning-higher: #
|
|
240
|
-
--surface-warning-highest: #
|
|
219
|
+
--surface-warning-lowest: #140800;
|
|
220
|
+
--surface-warning-lower: #2d1a00;
|
|
221
|
+
--surface-warning-low: #4a2c00;
|
|
222
|
+
--surface-warning: #684100;
|
|
223
|
+
--surface-warning-high: #885600;
|
|
224
|
+
--surface-warning-higher: #a96c00;
|
|
225
|
+
--surface-warning-highest: #be8a46;
|
|
241
226
|
|
|
242
227
|
/* Info */
|
|
243
|
-
--surface-info-lowest: #
|
|
244
|
-
--surface-info-lower: #
|
|
245
|
-
--surface-info-low: #
|
|
246
|
-
--surface-info: #
|
|
247
|
-
--surface-info-high: #
|
|
248
|
-
--surface-info-higher: #
|
|
249
|
-
--surface-info-highest: #
|
|
228
|
+
--surface-info-lowest: #000a21;
|
|
229
|
+
--surface-info-lower: #001d44;
|
|
230
|
+
--surface-info-low: #00316b;
|
|
231
|
+
--surface-info: #004894;
|
|
232
|
+
--surface-info-high: #36639f;
|
|
233
|
+
--surface-info-higher: #5d7da8;
|
|
234
|
+
--surface-info-highest: #8497b1;
|
|
250
235
|
|
|
251
236
|
/* Danger */
|
|
252
|
-
--surface-danger-lowest: #
|
|
253
|
-
--surface-danger-lower: #
|
|
254
|
-
--surface-danger-low: #
|
|
255
|
-
--surface-danger: #
|
|
256
|
-
--surface-danger-high: #
|
|
257
|
-
--surface-danger-higher: #
|
|
258
|
-
--surface-danger-highest: #
|
|
259
|
-
|
|
260
|
-
/*
|
|
237
|
+
--surface-danger-lowest: #1f0001;
|
|
238
|
+
--surface-danger-lower: #410004;
|
|
239
|
+
--surface-danger-low: #67000b;
|
|
240
|
+
--surface-danger: #8f0014;
|
|
241
|
+
--surface-danger-high: #ba001e;
|
|
242
|
+
--surface-danger-higher: #cf4443;
|
|
243
|
+
--surface-danger-highest: #df6e68;
|
|
244
|
+
|
|
245
|
+
/* Overlays — 7-point semi-transparent scale. */
|
|
261
246
|
--overlay-lowest: rgba(20, 3, 0, 0.12);
|
|
262
247
|
--overlay-lower: rgba(20, 3, 0, 0.25);
|
|
263
248
|
--overlay-low: rgba(20, 3, 0, 0.38);
|
|
@@ -266,147 +251,143 @@
|
|
|
266
251
|
--overlay-higher: rgba(20, 3, 0, 0.77);
|
|
267
252
|
--overlay-highest: rgba(20, 3, 0, 0.9);
|
|
268
253
|
|
|
269
|
-
/*
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
--border-neutral
|
|
275
|
-
--border-neutral-
|
|
276
|
-
--border-neutral: #
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
--border-alternate
|
|
282
|
-
--border-alternate-
|
|
283
|
-
--border-alternate: #
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
--border-canvas
|
|
289
|
-
--border-canvas-
|
|
290
|
-
--border-canvas: #
|
|
291
|
-
--border-canvas-medium: #7b9d99;
|
|
292
|
-
--border-canvas-strong: #a3c6c2;
|
|
254
|
+
/* BORDERS — 5-point scales, faint → strong. */
|
|
255
|
+
|
|
256
|
+
/* Neutral */
|
|
257
|
+
--border-neutral-faint: #1c2327;
|
|
258
|
+
--border-neutral-subtle: #3a4146;
|
|
259
|
+
--border-neutral: #5a6267;
|
|
260
|
+
--border-neutral-medium: #7c848b;
|
|
261
|
+
--border-neutral-strong: #a0a9af;
|
|
262
|
+
|
|
263
|
+
/* Alternate */
|
|
264
|
+
--border-alternate-faint: #25201e;
|
|
265
|
+
--border-alternate-subtle: #443e3c;
|
|
266
|
+
--border-alternate: #655f5c;
|
|
267
|
+
--border-alternate-medium: #88827f;
|
|
268
|
+
--border-alternate-strong: #aca6a3;
|
|
269
|
+
|
|
270
|
+
/* Canvas */
|
|
271
|
+
--border-canvas-faint: #1f1f34;
|
|
272
|
+
--border-canvas-subtle: #3d3d54;
|
|
273
|
+
--border-canvas: #5d5e76;
|
|
274
|
+
--border-canvas-medium: #80809b;
|
|
275
|
+
--border-canvas-strong: #a4a5c0;
|
|
293
276
|
|
|
294
277
|
/* Brand */
|
|
295
|
-
--border-brand-faint: #
|
|
296
|
-
--border-brand-subtle: #
|
|
297
|
-
--border-brand: #
|
|
298
|
-
--border-brand-medium: #
|
|
299
|
-
--border-brand-strong: #
|
|
278
|
+
--border-brand-faint: #430024;
|
|
279
|
+
--border-brand-subtle: #760043;
|
|
280
|
+
--border-brand: #ae0065;
|
|
281
|
+
--border-brand-medium: #e9008a;
|
|
282
|
+
--border-brand-strong: #ff6cad;
|
|
300
283
|
|
|
301
284
|
/* Accent */
|
|
302
|
-
--border-accent-faint: #
|
|
303
|
-
--border-accent-subtle: #
|
|
304
|
-
--border-accent: #
|
|
305
|
-
--border-accent-medium: #
|
|
306
|
-
--border-accent-strong: #
|
|
285
|
+
--border-accent-faint: #002827;
|
|
286
|
+
--border-accent-subtle: #004a48;
|
|
287
|
+
--border-accent: #006f6d;
|
|
288
|
+
--border-accent-medium: #259592;
|
|
289
|
+
--border-accent-strong: #54bbb7;
|
|
307
290
|
|
|
308
291
|
/* Special */
|
|
309
292
|
--border-special-faint: #29005c;
|
|
310
|
-
--border-special-subtle: #
|
|
311
|
-
--border-special: #
|
|
312
|
-
--border-special-medium: #
|
|
313
|
-
--border-special-strong: #
|
|
293
|
+
--border-special-subtle: #4b009f;
|
|
294
|
+
--border-special: #6b34ce;
|
|
295
|
+
--border-special-medium: #8c5df8;
|
|
296
|
+
--border-special-strong: #ac93ff;
|
|
314
297
|
|
|
315
298
|
/* Success */
|
|
316
299
|
--border-success-faint: #002a0d;
|
|
317
|
-
--border-success-subtle: #
|
|
318
|
-
--border-success: #
|
|
319
|
-
--border-success-medium: #
|
|
320
|
-
--border-success-strong: #
|
|
300
|
+
--border-success-subtle: #004e1f;
|
|
301
|
+
--border-success: #007532;
|
|
302
|
+
--border-success-medium: #069e46;
|
|
303
|
+
--border-success-strong: #47c46b;
|
|
321
304
|
|
|
322
305
|
/* Warning */
|
|
323
|
-
--border-warning-faint: #
|
|
324
|
-
--border-warning-subtle: #
|
|
325
|
-
--border-warning: #
|
|
326
|
-
--border-warning-medium: #
|
|
327
|
-
--border-warning-strong: #
|
|
306
|
+
--border-warning-faint: #321c00;
|
|
307
|
+
--border-warning-subtle: #5a3700;
|
|
308
|
+
--border-warning: #855400;
|
|
309
|
+
--border-warning-medium: #b37300;
|
|
310
|
+
--border-warning-strong: #e49400;
|
|
328
311
|
|
|
329
312
|
/* Info */
|
|
330
|
-
--border-info-faint: #
|
|
331
|
-
--border-info-subtle: #
|
|
332
|
-
--border-info: #
|
|
333
|
-
--border-info-medium: #
|
|
334
|
-
--border-info-strong: #
|
|
313
|
+
--border-info-faint: #00204a;
|
|
314
|
+
--border-info-subtle: #003d81;
|
|
315
|
+
--border-info: #005dbd;
|
|
316
|
+
--border-info-medium: #007efc;
|
|
317
|
+
--border-info-strong: #69a9ff;
|
|
335
318
|
|
|
336
319
|
/* Danger */
|
|
337
|
-
--border-danger-faint: #
|
|
338
|
-
--border-danger-subtle: #
|
|
339
|
-
--border-danger: #
|
|
340
|
-
--border-danger-medium: #
|
|
341
|
-
--border-danger-strong: #
|
|
342
|
-
|
|
343
|
-
/*
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
--text-
|
|
349
|
-
--text-
|
|
350
|
-
--text-
|
|
351
|
-
--text-muted: #5e5c5b;
|
|
352
|
-
--text-disabled: #3a3939;
|
|
320
|
+
--border-danger-faint: #470005;
|
|
321
|
+
--border-danger-subtle: #7c0010;
|
|
322
|
+
--border-danger: #b6001d;
|
|
323
|
+
--border-danger-medium: #ea3039;
|
|
324
|
+
--border-danger-strong: #ff7872;
|
|
325
|
+
|
|
326
|
+
/* TEXT — 5-point hierarchy, primary → disabled. */
|
|
327
|
+
|
|
328
|
+
/* Neutral */
|
|
329
|
+
--text-primary: #ffffff;
|
|
330
|
+
--text-secondary: #c2cacf;
|
|
331
|
+
--text-tertiary: #7e8285;
|
|
332
|
+
--text-muted: #4e4f50;
|
|
333
|
+
--text-disabled: #383838;
|
|
353
334
|
--text-inverted: var(--color-neutral-900);
|
|
354
335
|
|
|
355
|
-
/*
|
|
356
|
-
--text-canvas: #
|
|
357
|
-
--text-canvas-secondary: #
|
|
358
|
-
--text-canvas-tertiary: #
|
|
359
|
-
--text-canvas-muted: #
|
|
360
|
-
--text-canvas-disabled: #
|
|
336
|
+
/* Canvas */
|
|
337
|
+
--text-canvas: #9595c6;
|
|
338
|
+
--text-canvas-secondary: #6b6b89;
|
|
339
|
+
--text-canvas-tertiary: #4e4f5e;
|
|
340
|
+
--text-canvas-muted: #3c3c41;
|
|
341
|
+
--text-canvas-disabled: #343435;
|
|
361
342
|
|
|
362
343
|
/* Brand */
|
|
363
|
-
--text-brand: #
|
|
364
|
-
--text-brand-secondary: #
|
|
365
|
-
--text-brand-tertiary: #
|
|
366
|
-
--text-brand-muted: #
|
|
367
|
-
--text-brand-disabled: #
|
|
344
|
+
--text-brand: #ff75b1;
|
|
345
|
+
--text-brand-secondary: #df2d88;
|
|
346
|
+
--text-brand-tertiary: #953b63;
|
|
347
|
+
--text-brand-muted: #5c3846;
|
|
348
|
+
--text-brand-disabled: #403337;
|
|
368
349
|
|
|
369
350
|
/* Accent */
|
|
370
|
-
--text-accent: #
|
|
371
|
-
--text-accent-secondary: #
|
|
372
|
-
--text-accent-tertiary: #
|
|
373
|
-
--text-accent-muted: #
|
|
374
|
-
--text-accent-disabled: #
|
|
351
|
+
--text-accent: #009d9a;
|
|
352
|
+
--text-accent-secondary: #1f7673;
|
|
353
|
+
--text-accent-tertiary: #2d5351;
|
|
354
|
+
--text-accent-muted: #2c3837;
|
|
355
|
+
--text-accent-disabled: #292a2a;
|
|
375
356
|
|
|
376
357
|
/* Special */
|
|
377
|
-
--text-special: #
|
|
378
|
-
--text-special-secondary: #
|
|
379
|
-
--text-special-tertiary: #
|
|
380
|
-
--text-special-muted: #
|
|
381
|
-
--text-special-disabled: #
|
|
358
|
+
--text-special: #baa9ff;
|
|
359
|
+
--text-special-secondary: #8665e0;
|
|
360
|
+
--text-special-tertiary: #5c4e8b;
|
|
361
|
+
--text-special-muted: #3e3a4f;
|
|
362
|
+
--text-special-disabled: #303032;
|
|
382
363
|
|
|
383
364
|
/* Success */
|
|
384
|
-
--text-success: #
|
|
385
|
-
--text-success-secondary: #
|
|
386
|
-
--text-success-tertiary: #
|
|
387
|
-
--text-success-muted: #
|
|
388
|
-
--text-success-disabled: #
|
|
365
|
+
--text-success: #88f2a0;
|
|
366
|
+
--text-success-secondary: #2f974e;
|
|
367
|
+
--text-success-tertiary: #31673e;
|
|
368
|
+
--text-success-muted: #2c4530;
|
|
369
|
+
--text-success-disabled: #263429;
|
|
389
370
|
|
|
390
371
|
/* Warning */
|
|
391
|
-
--text-warning: #
|
|
392
|
-
--text-warning-secondary: #
|
|
393
|
-
--text-warning-tertiary: #
|
|
394
|
-
--text-warning-muted: #
|
|
395
|
-
--text-warning-disabled: #
|
|
372
|
+
--text-warning: #ffd19a;
|
|
373
|
+
--text-warning-secondary: #dd9324;
|
|
374
|
+
--text-warning-tertiary: #967042;
|
|
375
|
+
--text-warning-muted: #605345;
|
|
376
|
+
--text-warning-disabled: #454442;
|
|
396
377
|
|
|
397
378
|
/* Info */
|
|
398
|
-
--text-info: #
|
|
399
|
-
--text-info-secondary: #
|
|
400
|
-
--text-info-tertiary: #
|
|
401
|
-
--text-info-muted: #
|
|
402
|
-
--text-info-disabled: #
|
|
379
|
+
--text-info: #8fbeff;
|
|
380
|
+
--text-info-secondary: #2f81e8;
|
|
381
|
+
--text-info-tertiary: #365d90;
|
|
382
|
+
--text-info-muted: #344051;
|
|
383
|
+
--text-info-disabled: #303133;
|
|
403
384
|
|
|
404
385
|
/* Danger */
|
|
405
|
-
--text-danger: #
|
|
406
|
-
--text-danger-secondary: #
|
|
407
|
-
--text-danger-tertiary: #
|
|
408
|
-
--text-danger-muted: #
|
|
409
|
-
--text-danger-disabled: #
|
|
386
|
+
--text-danger: #ff635f;
|
|
387
|
+
--text-danger-secondary: #bb292f;
|
|
388
|
+
--text-danger-tertiary: #813b37;
|
|
389
|
+
--text-danger-muted: #543b39;
|
|
390
|
+
--text-danger-disabled: #3c3939;
|
|
410
391
|
|
|
411
392
|
/* Border Radius */
|
|
412
393
|
--radius-none: 0;
|
|
@@ -420,7 +401,7 @@
|
|
|
420
401
|
--radius-full: 9999px;
|
|
421
402
|
|
|
422
403
|
/* Border Width */
|
|
423
|
-
--border-width-0:
|
|
404
|
+
--border-width-0: 0;
|
|
424
405
|
--border-width-1: 1px;
|
|
425
406
|
--border-width-2: 2px;
|
|
426
407
|
--border-width-3: 3px;
|
|
@@ -434,7 +415,7 @@
|
|
|
434
415
|
--border-width-20: 20px;
|
|
435
416
|
--border-width-24: 24px;
|
|
436
417
|
|
|
437
|
-
/* Icon
|
|
418
|
+
/* Icon sizing (square) */
|
|
438
419
|
--size-icon-sm: 1rem; /* 16px */
|
|
439
420
|
--size-icon-md: 1.25rem; /* 20px */
|
|
440
421
|
--size-icon-lg: 1.5rem; /* 24px */
|
|
@@ -456,17 +437,19 @@
|
|
|
456
437
|
--space-24: 1.5rem; /* 24px */
|
|
457
438
|
--space-32: 2rem; /* 32px */
|
|
458
439
|
--space-48: 3rem; /* 48px */
|
|
440
|
+
--space-64: 4rem; /* 64px */
|
|
441
|
+
--space-80: 5rem; /* 80px */
|
|
442
|
+
--space-96: 6rem; /* 96px */
|
|
459
443
|
--space-full: 100%;
|
|
460
444
|
|
|
461
|
-
/* Dot fill ratios —
|
|
462
|
-
inner dot occupies a percentage of the outer ring. */
|
|
445
|
+
/* Dot fill ratios — inner-dot as % of outer ring (radio/checkbox). */
|
|
463
446
|
--dot-size-0: 0%;
|
|
464
447
|
--dot-size-25: 25%;
|
|
465
448
|
--dot-size-50: 50%;
|
|
466
449
|
--dot-size-75: 75%;
|
|
467
450
|
--dot-size-100: 100%;
|
|
468
451
|
|
|
469
|
-
/* Backdrop blur radii
|
|
452
|
+
/* Backdrop blur radii (for backdrop-filter). */
|
|
470
453
|
--blur-none: 0;
|
|
471
454
|
--blur-sm: 4px;
|
|
472
455
|
--blur-md: 8px;
|
|
@@ -474,46 +457,34 @@
|
|
|
474
457
|
--blur-xl: 24px;
|
|
475
458
|
--blur-2xl: 32px;
|
|
476
459
|
|
|
477
|
-
/*
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
(toggled from the editor bar) and can be consumed by any
|
|
481
|
-
component via:
|
|
482
|
-
grid-template-columns: repeat(var(--columns-count), 1fr);
|
|
483
|
-
gap: var(--columns-gutter);
|
|
484
|
-
padding-inline: var(--columns-margin);
|
|
485
|
-
max-width: var(--columns-max-width);
|
|
486
|
-
--columns-gutter is the space between columns;
|
|
487
|
-
--columns-margin is the optional outer page padding
|
|
488
|
-
outside the N cols (a.k.a. side gutters) — defaults to 0
|
|
489
|
-
so layouts are flush to the container edge; dial it up
|
|
490
|
-
to add side gutters.
|
|
491
|
-
═══════════════════════════════════════════════════════ */
|
|
460
|
+
/* COLUMN LAYOUT — 12-col grid. Drives the dev overlay; consume via
|
|
461
|
+
grid-template-columns: repeat(var(--columns-count), 1fr) etc.
|
|
462
|
+
--columns-margin = side gutters (0 = flush). */
|
|
492
463
|
--columns-count: 12;
|
|
493
464
|
--columns-max-width: 1440px;
|
|
494
|
-
--columns-gutter:
|
|
495
|
-
--columns-margin:
|
|
465
|
+
--columns-gutter: clamp(0.5rem, 1.5vw, 1.5rem);
|
|
466
|
+
--columns-margin: 0;
|
|
496
467
|
|
|
497
468
|
/* Font Families */
|
|
498
|
-
--font-display: "Arvo",
|
|
469
|
+
--font-display: "Arvo", serif;
|
|
499
470
|
--font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, sans-serif;
|
|
500
|
-
--font-serif: "
|
|
471
|
+
--font-serif: "GFS Didot", serif;
|
|
501
472
|
--font-mono: "fira-code", ui-monospace, "SF Mono", Menlo, Consolas, monospace, monospace;
|
|
502
473
|
|
|
503
474
|
/* Font Sizes */
|
|
504
|
-
--font-size-xs: 0.
|
|
505
|
-
--font-size-sm:
|
|
506
|
-
--font-size-md:
|
|
507
|
-
--font-size-lg: 1.
|
|
508
|
-
--font-size-xl: 1.
|
|
509
|
-
--font-size-2xl: 1.
|
|
510
|
-
--font-size-3xl:
|
|
511
|
-
--font-size-4xl: 2.
|
|
512
|
-
--font-size-5xl: 3rem;
|
|
513
|
-
--font-size-6xl: 3.5rem;
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
475
|
+
--font-size-xs: 0.75rem; /* 12px */
|
|
476
|
+
--font-size-sm: 0.875rem; /* 14px */
|
|
477
|
+
--font-size-md: 1rem; /* 16px */
|
|
478
|
+
--font-size-lg: 1.125rem; /* 18px */
|
|
479
|
+
--font-size-xl: 1.25rem; /* 20px */
|
|
480
|
+
--font-size-2xl: 1.5rem; /* 24px */
|
|
481
|
+
--font-size-3xl: 1.875rem; /* 30px */
|
|
482
|
+
--font-size-4xl: 2.25rem; /* 36px */
|
|
483
|
+
--font-size-5xl: 3rem; /* 48px */
|
|
484
|
+
--font-size-6xl: 3.5rem; /* 56px */
|
|
485
|
+
--font-size-7xl: 4.5rem; /* 72px */
|
|
486
|
+
|
|
487
|
+
/* Icon glyph sizes — parallel to the type scale. */
|
|
517
488
|
--icon-size-xs: 0.875rem; /* 14px */
|
|
518
489
|
--icon-size-sm: 1rem; /* 16px */
|
|
519
490
|
--icon-size-md: 1.125rem; /* 18px */
|
|
@@ -525,7 +496,7 @@
|
|
|
525
496
|
--icon-size-5xl: 3rem; /* 48px */
|
|
526
497
|
--icon-size-6xl: 3.5rem; /* 56px */
|
|
527
498
|
|
|
528
|
-
/* Font Weights
|
|
499
|
+
/* Font Weights */
|
|
529
500
|
--font-weight-thin: 100;
|
|
530
501
|
--font-weight-extralight: 200;
|
|
531
502
|
--font-weight-light: 300;
|
|
@@ -536,17 +507,14 @@
|
|
|
536
507
|
--font-weight-extrabold: 800;
|
|
537
508
|
--font-weight-black: 900;
|
|
538
509
|
|
|
539
|
-
/* Gradients —
|
|
540
|
-
|
|
541
|
-
hydrates. Match the defaults seeded in `makeDefaultGradients()`. */
|
|
510
|
+
/* Gradients — fallbacks until the editor hydrates. Match
|
|
511
|
+
makeDefaultGradients(). */
|
|
542
512
|
--gradient-1: linear-gradient(90deg, var(--color-brand-500) 0%, var(--color-accent-500) 100%);
|
|
543
513
|
--gradient-2: linear-gradient(135deg, var(--color-brand-500) 0%, var(--color-special-500) 100%);
|
|
544
514
|
--gradient-3: linear-gradient(90deg, var(--color-success-500) 0%, var(--color-info-500) 100%);
|
|
545
515
|
--gradient-4: linear-gradient(45deg, var(--color-danger-500) 0%, var(--color-warning-500) 100%);
|
|
546
516
|
|
|
547
|
-
/* Gradient
|
|
548
|
-
tokens point through these so editor-exposed gradient props follow the
|
|
549
|
-
same var()-alias pattern as every other token. */
|
|
517
|
+
/* Gradient angle + stop primitives — aliasable like any other token. */
|
|
550
518
|
--gradient-angle-horizontal: 90deg;
|
|
551
519
|
--gradient-angle-diagonal: 135deg;
|
|
552
520
|
--gradient-angle-vertical: 180deg;
|
|
@@ -562,7 +530,7 @@
|
|
|
562
530
|
--shadow-xl: 6px 7px 13px 0px hsla(237, 18%, 3%, 0.9);
|
|
563
531
|
--shadow-2xl: 8px 9px 16px 0px hsla(237, 18%, 3%, 0.9);
|
|
564
532
|
|
|
565
|
-
/* Focus
|
|
533
|
+
/* Focus rings (box-shadow outline) */
|
|
566
534
|
--ring-focus-sm: 0 0 0 2px hsla(0, 78%, 60%, 0.1);
|
|
567
535
|
--ring-focus-md: 0 0 0 3px hsla(0, 78%, 60%, 0.1);
|
|
568
536
|
--ring-focus-lg: 0 0 0 4px hsla(0, 78%, 60%, 0.1);
|
|
@@ -592,853 +560,42 @@
|
|
|
592
560
|
--line-height-lg: 1.75;
|
|
593
561
|
--line-height-xl: 2;
|
|
594
562
|
|
|
595
|
-
/*
|
|
596
|
-
--
|
|
597
|
-
--
|
|
598
|
-
--
|
|
599
|
-
--
|
|
600
|
-
--
|
|
563
|
+
/* Letter Spacing — 5-point, symmetric around normal (0). */
|
|
564
|
+
--letter-spacing-tighter: -0.04em;
|
|
565
|
+
--letter-spacing-tight: -0.02em;
|
|
566
|
+
--letter-spacing-normal: 0;
|
|
567
|
+
--letter-spacing-wide: 0.04em;
|
|
568
|
+
--letter-spacing-wider: 0.08em;
|
|
569
|
+
|
|
570
|
+
/* Text alternate */
|
|
571
|
+
--text-alternate: #ffffff;
|
|
572
|
+
--text-alternate-secondary: #d6d0ce;
|
|
573
|
+
--text-alternate-tertiary: #8a8786;
|
|
574
|
+
--text-alternate-muted: #545352;
|
|
575
|
+
--text-alternate-disabled: #3b3b3b;
|
|
601
576
|
}
|
|
602
577
|
|
|
603
|
-
/*
|
|
604
|
-
|
|
605
|
-
Font size variables ramp down on smaller viewports so
|
|
606
|
-
every heading + body style that references them adapts
|
|
607
|
-
automatically. Body text (--font-size-md) collapses to 16px
|
|
608
|
-
on mobile for improved readability.
|
|
609
|
-
═══════════════════════════════════════════════════════ */
|
|
578
|
+
/* RESPONSIVE TYPE SCALE — display sizes (2xl–6xl) shrink on small
|
|
579
|
+
viewports; body sizes (xs–xl) stay constant. */
|
|
610
580
|
|
|
611
581
|
@media (max-width: 768px) {
|
|
612
582
|
:root {
|
|
613
|
-
--font-size-
|
|
614
|
-
--font-size-sm: 0.9375rem; /* 15px */
|
|
615
|
-
--font-size-md: 1rem; /* 16px */
|
|
616
|
-
--font-size-lg: 1.125rem; /* 18px */
|
|
617
|
-
--font-size-xl: 1.25rem; /* 20px */
|
|
618
|
-
--font-size-2xl: 1.4375rem; /* 23px */
|
|
583
|
+
--font-size-2xl: 1.375rem; /* 22px */
|
|
619
584
|
--font-size-3xl: 1.625rem; /* 26px */
|
|
620
585
|
--font-size-4xl: 1.875rem; /* 30px */
|
|
621
586
|
--font-size-5xl: 2.25rem; /* 36px */
|
|
622
587
|
--font-size-6xl: 2.5rem; /* 40px */
|
|
623
|
-
|
|
624
|
-
--icon-size-xs: 0.8125rem; /* 13px */
|
|
625
|
-
--icon-size-sm: 0.9375rem; /* 15px */
|
|
626
|
-
--icon-size-md: 1rem; /* 16px */
|
|
627
|
-
--icon-size-lg: 1.125rem; /* 18px */
|
|
628
|
-
--icon-size-xl: 1.25rem; /* 20px */
|
|
629
|
-
--icon-size-2xl: 1.4375rem; /* 23px */
|
|
630
|
-
--icon-size-3xl: 1.625rem; /* 26px */
|
|
631
|
-
--icon-size-4xl: 1.875rem; /* 30px */
|
|
632
|
-
--icon-size-5xl: 2.25rem; /* 36px */
|
|
633
|
-
--icon-size-6xl: 2.5rem; /* 40px */
|
|
588
|
+
--font-size-7xl: 3rem; /* 48px */
|
|
634
589
|
}
|
|
635
590
|
}
|
|
636
591
|
|
|
637
592
|
@media (max-width: 480px) {
|
|
638
593
|
:root {
|
|
639
|
-
--font-size-2xl: 1.
|
|
594
|
+
--font-size-2xl: 1.25rem; /* 20px */
|
|
640
595
|
--font-size-3xl: 1.5rem; /* 24px */
|
|
641
|
-
--font-size-4xl: 1.
|
|
642
|
-
--font-size-5xl:
|
|
643
|
-
--font-size-6xl: 2.
|
|
644
|
-
|
|
645
|
-
--icon-size-2xl: 1.3125rem; /* 21px */
|
|
646
|
-
--icon-size-3xl: 1.5rem; /* 24px */
|
|
647
|
-
--icon-size-4xl: 1.625rem; /* 26px */
|
|
648
|
-
--icon-size-5xl: 1.875rem; /* 30px */
|
|
649
|
-
--icon-size-6xl: 2.125rem; /* 34px */
|
|
596
|
+
--font-size-4xl: 1.75rem; /* 28px */
|
|
597
|
+
--font-size-5xl: 2rem; /* 32px */
|
|
598
|
+
--font-size-6xl: 2.25rem; /* 36px */
|
|
599
|
+
--font-size-7xl: 2.625rem; /* 42px */
|
|
650
600
|
}
|
|
651
|
-
|
|
652
|
-
/* Token additions */
|
|
653
|
-
--badge-trait-surface: var(--surface-brand);
|
|
654
|
-
--badge-trait-text: var(--text-brand);
|
|
655
|
-
--badge-trait-text-font-family: var(--font-sans);
|
|
656
|
-
--badge-trait-text-font-size: var(--font-size-sm);
|
|
657
|
-
--badge-trait-text-font-weight: var(--font-weight-light);
|
|
658
|
-
--badge-trait-text-line-height: var(--line-height-xs);
|
|
659
|
-
--badge-trait-border: var(--border-brand-medium);
|
|
660
|
-
--badge-trait-border-width: var(--border-width-1);
|
|
661
|
-
--badge-trait-radius: var(--radius-full);
|
|
662
|
-
--badge-trait-padding: var(--space-6);
|
|
663
|
-
--badge-trait-shadow: transparent;
|
|
664
|
-
--card-default-surface: color-mix(in srgb, var(--surface-neutral-lower) 90%, transparent);
|
|
665
|
-
--card-default-border: var(--border-neutral);
|
|
666
|
-
--card-default-title: var(--text-primary);
|
|
667
|
-
--card-default-body: var(--text-secondary);
|
|
668
|
-
--card-default-radius: var(--radius-lg);
|
|
669
|
-
--card-hover-border: var(--border-neutral);
|
|
670
|
-
--card-hover-shadow: var(--shadow-sm);
|
|
671
|
-
--card-default-shadow: var(--shadow-sm);
|
|
672
|
-
--card-default-header-surface: var(--surface-neutral);
|
|
673
|
-
--card-default-border-width: var(--border-width-1);
|
|
674
|
-
--collapsiblesection-container-frame-surface: var(--surface-canvas-high);
|
|
675
|
-
--collapsiblesection-container-frame-border-width: var(--border-width-3);
|
|
676
|
-
--collapsiblesection-container-frame-radius: var(--radius-none);
|
|
677
|
-
--collapsiblesection-container-default-surface: var(--surface-canvas-high);
|
|
678
|
-
--collapsiblesection-container-default-padding: var(--space-4);
|
|
679
|
-
--collapsiblesection-container-default-label: var(--text-primary);
|
|
680
|
-
--collapsiblesection-container-default-label-font-family: var(--font-sans);
|
|
681
|
-
--collapsiblesection-container-default-label-font-size: var(--font-size-md);
|
|
682
|
-
--collapsiblesection-container-default-label-font-weight: var(--font-weight-bold);
|
|
683
|
-
--collapsiblesection-container-default-label-line-height: var(--line-height-md);
|
|
684
|
-
--collapsiblesection-container-default-icon: var(--text-primary);
|
|
685
|
-
--collapsiblesection-container-default-icon-size: var(--icon-size-xs);
|
|
686
|
-
--collapsiblesection-container-hover-surface: var(--surface-canvas);
|
|
687
|
-
--collapsiblesection-container-hover-padding: var(--space-4);
|
|
688
|
-
--collapsiblesection-container-hover-label: var(--text-primary);
|
|
689
|
-
--collapsiblesection-container-hover-label-font-family: var(--font-sans);
|
|
690
|
-
--collapsiblesection-container-hover-label-font-size: var(--font-size-md);
|
|
691
|
-
--collapsiblesection-container-hover-label-font-weight: var(--font-weight-bold);
|
|
692
|
-
--collapsiblesection-container-hover-label-line-height: var(--line-height-md);
|
|
693
|
-
--collapsiblesection-container-hover-icon: var(--text-muted);
|
|
694
|
-
--collapsiblesection-container-hover-icon-size: var(--icon-size-xs);
|
|
695
|
-
--collapsiblesection-container-active-surface: var(--surface-canvas-low);
|
|
696
|
-
--collapsiblesection-container-active-padding: var(--space-4);
|
|
697
|
-
--collapsiblesection-container-active-label: var(--text-primary);
|
|
698
|
-
--collapsiblesection-container-active-label-font-family: var(--font-sans);
|
|
699
|
-
--collapsiblesection-container-active-label-font-size: var(--font-size-md);
|
|
700
|
-
--collapsiblesection-container-active-label-font-weight: var(--font-weight-bold);
|
|
701
|
-
--collapsiblesection-container-active-label-line-height: var(--line-height-md);
|
|
702
|
-
--collapsiblesection-container-active-icon: var(--text-muted);
|
|
703
|
-
--collapsiblesection-container-active-icon-size: var(--icon-size-xs);
|
|
704
|
-
--button-primary-text: var(--text-primary);
|
|
705
|
-
--button-primary-text-font-family: var(--font-sans);
|
|
706
|
-
--button-primary-text-font-size: var(--font-size-sm);
|
|
707
|
-
--button-primary-text-font-weight: var(--font-weight-light);
|
|
708
|
-
--button-primary-text-line-height: var(--line-height-sm);
|
|
709
|
-
--button-primary-border: var(--border-brand);
|
|
710
|
-
--button-primary-border-width: var(--border-width-1);
|
|
711
|
-
--button-primary-radius: var(--radius-md);
|
|
712
|
-
--button-primary-padding: var(--space-8);
|
|
713
|
-
--button-primary-hover-surface: var(--surface-brand-higher);
|
|
714
|
-
--button-primary-hover-text: var(--text-primary);
|
|
715
|
-
--button-primary-hover-border: var(--border-brand-strong);
|
|
716
|
-
--button-primary-hover-border-width: var(--border-width-1);
|
|
717
|
-
--button-primary-hover-radius: var(--radius-md);
|
|
718
|
-
--button-primary-hover-padding: var(--space-8);
|
|
719
|
-
--button-primary-disabled-surface: var(--color-neutral-700);
|
|
720
|
-
--button-primary-disabled-text: var(--text-tertiary);
|
|
721
|
-
--button-primary-disabled-border: var(--border-neutral-faint);
|
|
722
|
-
--button-primary-disabled-border-width: var(--border-width-1);
|
|
723
|
-
--button-primary-disabled-radius: var(--radius-md);
|
|
724
|
-
--button-primary-disabled-padding: var(--space-8);
|
|
725
|
-
--button-secondary-surface: var(--surface-neutral-high);
|
|
726
|
-
--button-secondary-text: var(--text-primary);
|
|
727
|
-
--button-secondary-text-font-family: var(--font-sans);
|
|
728
|
-
--button-secondary-text-font-size: var(--font-size-sm);
|
|
729
|
-
--button-secondary-text-font-weight: var(--font-weight-light);
|
|
730
|
-
--button-secondary-text-line-height: var(--line-height-sm);
|
|
731
|
-
--button-secondary-border: var(--border-neutral);
|
|
732
|
-
--button-secondary-border-width: var(--border-width-1);
|
|
733
|
-
--button-secondary-radius: var(--radius-md);
|
|
734
|
-
--button-secondary-padding: var(--space-8);
|
|
735
|
-
--button-secondary-hover-surface: var(--surface-neutral-higher);
|
|
736
|
-
--button-secondary-hover-text: var(--text-primary);
|
|
737
|
-
--button-secondary-hover-border: var(--border-neutral-strong);
|
|
738
|
-
--button-secondary-hover-border-width: var(--border-width-1);
|
|
739
|
-
--button-secondary-hover-radius: var(--radius-md);
|
|
740
|
-
--button-secondary-hover-padding: var(--space-8);
|
|
741
|
-
--button-secondary-disabled-surface: var(--color-neutral-700);
|
|
742
|
-
--button-secondary-disabled-text: var(--text-tertiary);
|
|
743
|
-
--button-secondary-disabled-border: var(--border-neutral-faint);
|
|
744
|
-
--button-secondary-disabled-border-width: var(--border-width-1);
|
|
745
|
-
--button-secondary-disabled-radius: var(--radius-md);
|
|
746
|
-
--button-secondary-disabled-padding: var(--space-8);
|
|
747
|
-
--button-outline-surface: var(--color-transparent);
|
|
748
|
-
--button-outline-text: var(--text-primary);
|
|
749
|
-
--button-outline-text-font-family: var(--font-sans);
|
|
750
|
-
--button-outline-text-font-size: var(--font-size-sm);
|
|
751
|
-
--button-outline-text-font-weight: var(--font-weight-light);
|
|
752
|
-
--button-outline-text-line-height: var(--line-height-sm);
|
|
753
|
-
--button-outline-border: var(--border-neutral);
|
|
754
|
-
--button-outline-border-width: var(--border-width-1);
|
|
755
|
-
--button-outline-radius: var(--radius-md);
|
|
756
|
-
--button-outline-padding: var(--space-8);
|
|
757
|
-
--button-outline-hover-surface: var(--surface-neutral-lower);
|
|
758
|
-
--button-outline-hover-text: var(--text-primary);
|
|
759
|
-
--button-outline-hover-border: var(--border-neutral-strong);
|
|
760
|
-
--button-outline-hover-border-width: var(--border-width-1);
|
|
761
|
-
--button-outline-hover-radius: var(--radius-md);
|
|
762
|
-
--button-outline-hover-padding: var(--space-8);
|
|
763
|
-
--button-outline-disabled-surface: var(--color-transparent);
|
|
764
|
-
--button-outline-disabled-text: var(--text-tertiary);
|
|
765
|
-
--button-outline-disabled-border: var(--border-neutral-faint);
|
|
766
|
-
--button-outline-disabled-border-width: var(--border-width-1);
|
|
767
|
-
--button-outline-disabled-radius: var(--radius-md);
|
|
768
|
-
--button-outline-disabled-padding: var(--space-8);
|
|
769
|
-
--button-success-surface: var(--surface-success-low);
|
|
770
|
-
--button-success-text: var(--text-success);
|
|
771
|
-
--button-success-text-font-family: var(--font-sans);
|
|
772
|
-
--button-success-text-font-size: var(--font-size-sm);
|
|
773
|
-
--button-success-text-font-weight: var(--font-weight-light);
|
|
774
|
-
--button-success-text-line-height: var(--line-height-sm);
|
|
775
|
-
--button-success-border: var(--border-success);
|
|
776
|
-
--button-success-border-width: var(--border-width-1);
|
|
777
|
-
--button-success-radius: var(--radius-md);
|
|
778
|
-
--button-success-padding: var(--space-8);
|
|
779
|
-
--button-success-hover-surface: var(--surface-success-higher);
|
|
780
|
-
--button-success-hover-text: var(--text-primary);
|
|
781
|
-
--button-success-hover-border: var(--border-success-strong);
|
|
782
|
-
--button-success-hover-border-width: var(--border-width-1);
|
|
783
|
-
--button-success-hover-radius: var(--radius-md);
|
|
784
|
-
--button-success-hover-padding: var(--space-8);
|
|
785
|
-
--button-success-disabled-surface: var(--color-neutral-700);
|
|
786
|
-
--button-success-disabled-text: var(--text-tertiary);
|
|
787
|
-
--button-success-disabled-border: var(--border-neutral-faint);
|
|
788
|
-
--button-success-disabled-border-width: var(--border-width-1);
|
|
789
|
-
--button-success-disabled-radius: var(--radius-md);
|
|
790
|
-
--button-success-disabled-padding: var(--space-8);
|
|
791
|
-
--button-danger-surface: var(--surface-danger-low);
|
|
792
|
-
--button-danger-text: var(--text-danger);
|
|
793
|
-
--button-danger-text-font-family: var(--font-sans);
|
|
794
|
-
--button-danger-text-font-size: var(--font-size-sm);
|
|
795
|
-
--button-danger-text-font-weight: var(--font-weight-light);
|
|
796
|
-
--button-danger-text-line-height: var(--line-height-sm);
|
|
797
|
-
--button-danger-border: var(--border-danger);
|
|
798
|
-
--button-danger-border-width: var(--border-width-1);
|
|
799
|
-
--button-danger-radius: var(--radius-md);
|
|
800
|
-
--button-danger-padding: var(--space-8);
|
|
801
|
-
--button-danger-hover-surface: var(--surface-danger-high);
|
|
802
|
-
--button-danger-hover-text: var(--text-primary);
|
|
803
|
-
--button-danger-hover-border: var(--border-danger-medium);
|
|
804
|
-
--button-danger-hover-border-width: var(--border-width-1);
|
|
805
|
-
--button-danger-hover-radius: var(--radius-md);
|
|
806
|
-
--button-danger-hover-padding: var(--space-8);
|
|
807
|
-
--button-danger-disabled-surface: var(--color-neutral-700);
|
|
808
|
-
--button-danger-disabled-text: var(--text-tertiary);
|
|
809
|
-
--button-danger-disabled-border: var(--border-neutral-faint);
|
|
810
|
-
--button-danger-disabled-border-width: var(--border-width-1);
|
|
811
|
-
--button-danger-disabled-radius: var(--radius-md);
|
|
812
|
-
--button-danger-disabled-padding: var(--space-8);
|
|
813
|
-
--button-warning-surface: var(--surface-warning-low);
|
|
814
|
-
--button-warning-text: var(--text-warning);
|
|
815
|
-
--button-warning-text-font-family: var(--font-sans);
|
|
816
|
-
--button-warning-text-font-size: var(--font-size-sm);
|
|
817
|
-
--button-warning-text-font-weight: var(--font-weight-light);
|
|
818
|
-
--button-warning-text-line-height: var(--line-height-sm);
|
|
819
|
-
--button-warning-border: var(--border-warning);
|
|
820
|
-
--button-warning-border-width: var(--border-width-1);
|
|
821
|
-
--button-warning-radius: var(--radius-md);
|
|
822
|
-
--button-warning-padding: var(--space-8);
|
|
823
|
-
--button-warning-hover-surface: var(--surface-warning-high);
|
|
824
|
-
--button-warning-hover-text: var(--text-primary);
|
|
825
|
-
--button-warning-hover-border: var(--border-warning-medium);
|
|
826
|
-
--button-warning-hover-border-width: var(--border-width-1);
|
|
827
|
-
--button-warning-hover-radius: var(--radius-md);
|
|
828
|
-
--button-warning-hover-padding: var(--space-8);
|
|
829
|
-
--button-warning-disabled-surface: var(--color-neutral-700);
|
|
830
|
-
--button-warning-disabled-text: var(--text-tertiary);
|
|
831
|
-
--button-warning-disabled-border: var(--border-neutral-faint);
|
|
832
|
-
--button-warning-disabled-border-width: var(--border-width-1);
|
|
833
|
-
--button-warning-disabled-radius: var(--radius-md);
|
|
834
|
-
--button-warning-disabled-padding: var(--space-8);
|
|
835
|
-
--button-primary-surface: var(--surface-brand-high);
|
|
836
|
-
--dialog-overlay-surface: color-mix(in srgb, var(--color-neutral-950) 75%, transparent);
|
|
837
|
-
--dialog-surface: var(--surface-neutral-lowest);
|
|
838
|
-
--dialog-border: var(--border-neutral-strong);
|
|
839
|
-
--dialog-border-width: var(--border-width-2);
|
|
840
|
-
--dialog-radius: var(--radius-lg);
|
|
841
|
-
--dialog-shadow: var(--shadow-2xl);
|
|
842
|
-
--dialog-header-surface: var(--surface-brand-low);
|
|
843
|
-
--dialog-header-border: var(--border-brand-subtle);
|
|
844
|
-
--dialog-header-border-width: var(--border-width-1);
|
|
845
|
-
--dialog-header-padding: var(--space-8);
|
|
846
|
-
--dialog-title: var(--text-primary);
|
|
847
|
-
--dialog-title-font-family: var(--font-sans);
|
|
848
|
-
--dialog-title-font-size: var(--font-size-2xl);
|
|
849
|
-
--dialog-title-font-weight: var(--font-weight-normal);
|
|
850
|
-
--dialog-title-line-height: var(--line-height-sm);
|
|
851
|
-
--dialog-close-icon: var(--text-secondary);
|
|
852
|
-
--dialog-close-icon-size: var(--icon-size-xl);
|
|
853
|
-
--dialog-body-padding: var(--space-16);
|
|
854
|
-
--dialog-footer-border: var(--border-neutral-subtle);
|
|
855
|
-
--dialog-footer-border-width: var(--border-width-1);
|
|
856
|
-
--dialog-footer-padding: var(--space-16);
|
|
857
|
-
--dialog-primary-default-surface: var(--surface-neutral-high);
|
|
858
|
-
--dialog-primary-default-text: var(--text-primary);
|
|
859
|
-
--dialog-primary-default-border: var(--border-neutral-medium);
|
|
860
|
-
--dialog-primary-default-border-width: var(--border-width-1);
|
|
861
|
-
--dialog-primary-default-radius: var(--radius-md);
|
|
862
|
-
--dialog-primary-default-padding: var(--space-8);
|
|
863
|
-
--dialog-primary-hover-surface: var(--surface-neutral-higher);
|
|
864
|
-
--dialog-primary-hover-text: var(--text-primary);
|
|
865
|
-
--dialog-primary-hover-border: var(--border-neutral-strong);
|
|
866
|
-
--dialog-primary-hover-border-width: var(--border-width-1);
|
|
867
|
-
--dialog-primary-hover-radius: var(--radius-md);
|
|
868
|
-
--dialog-primary-hover-padding: var(--space-8);
|
|
869
|
-
--dialog-secondary-default-text: var(--text-primary);
|
|
870
|
-
--dialog-secondary-default-border: var(--border-neutral-medium);
|
|
871
|
-
--dialog-secondary-default-border-width: var(--border-width-1);
|
|
872
|
-
--dialog-secondary-default-radius: var(--radius-md);
|
|
873
|
-
--dialog-secondary-default-padding: var(--space-8);
|
|
874
|
-
--dialog-secondary-hover-surface: var(--surface-neutral-lower);
|
|
875
|
-
--dialog-secondary-hover-text: var(--text-primary);
|
|
876
|
-
--dialog-secondary-hover-border: var(--border-neutral-strong);
|
|
877
|
-
--dialog-secondary-hover-border-width: var(--border-width-1);
|
|
878
|
-
--dialog-secondary-hover-radius: var(--radius-md);
|
|
879
|
-
--dialog-secondary-hover-padding: var(--space-8);
|
|
880
|
-
--image-default-radius: var(--radius-xl);
|
|
881
|
-
--image-default-border: var(--border-neutral);
|
|
882
|
-
--image-default-border-width: var(--border-width-1);
|
|
883
|
-
--image-default-shadow: var(--shadow-md);
|
|
884
|
-
--radiobutton-default-dot-border-color: var(--border-neutral);
|
|
885
|
-
--radiobutton-default-dot-border-width: var(--border-width-2);
|
|
886
|
-
--radiobutton-default-dot-fill: var(--text-secondary);
|
|
887
|
-
--radiobutton-default-dot-size: var(--dot-size-0);
|
|
888
|
-
--radiobutton-default-label: var(--text-primary);
|
|
889
|
-
--radiobutton-default-label-font-family: var(--font-sans);
|
|
890
|
-
--radiobutton-default-label-font-size: var(--font-size-md);
|
|
891
|
-
--radiobutton-default-label-font-weight: var(--font-weight-semibold);
|
|
892
|
-
--radiobutton-default-label-line-height: var(--line-height-xs);
|
|
893
|
-
--radiobutton-hover-dot-border-color: var(--border-neutral);
|
|
894
|
-
--radiobutton-hover-dot-border-width: var(--border-width-2);
|
|
895
|
-
--radiobutton-hover-dot-fill: var(--surface-neutral);
|
|
896
|
-
--radiobutton-hover-dot-size: var(--dot-size-100);
|
|
897
|
-
--radiobutton-hover-label: var(--text-primary);
|
|
898
|
-
--radiobutton-hover-label-font-family: var(--font-sans);
|
|
899
|
-
--radiobutton-hover-label-font-size: var(--font-size-md);
|
|
900
|
-
--radiobutton-hover-label-font-weight: var(--font-weight-semibold);
|
|
901
|
-
--radiobutton-hover-label-line-height: var(--line-height-xs);
|
|
902
|
-
--radiobutton-active-dot-border-color: var(--border-neutral);
|
|
903
|
-
--radiobutton-active-dot-border-width: var(--border-width-2);
|
|
904
|
-
--radiobutton-active-dot-fill: var(--color-brand-500);
|
|
905
|
-
--radiobutton-active-dot-size: var(--dot-size-75);
|
|
906
|
-
--radiobutton-active-label: var(--text-primary);
|
|
907
|
-
--radiobutton-active-label-font-family: var(--font-sans);
|
|
908
|
-
--radiobutton-active-label-font-size: var(--font-size-md);
|
|
909
|
-
--radiobutton-active-label-font-weight: var(--font-weight-semibold);
|
|
910
|
-
--radiobutton-active-label-line-height: var(--line-height-xs);
|
|
911
|
-
--notification-info-surface: var(--surface-info);
|
|
912
|
-
--notification-info-border: var(--border-info);
|
|
913
|
-
--notification-info-border-width: var(--border-width-1);
|
|
914
|
-
--notification-info-radius: var(--radius-md);
|
|
915
|
-
--notification-info-padding: var(--space-12);
|
|
916
|
-
--notification-info-icon: var(--text-info);
|
|
917
|
-
--notification-info-icon-size: var(--icon-size-md);
|
|
918
|
-
--notification-info-title: var(--text-info);
|
|
919
|
-
--notification-info-title-font-family: var(--font-sans);
|
|
920
|
-
--notification-info-title-font-size: var(--font-size-lg);
|
|
921
|
-
--notification-info-title-font-weight: var(--font-weight-normal);
|
|
922
|
-
--notification-info-title-line-height: var(--line-height-sm);
|
|
923
|
-
--notification-info-text: var(--text-primary);
|
|
924
|
-
--notification-info-text-font-family: var(--font-sans);
|
|
925
|
-
--notification-info-text-font-size: var(--font-size-md);
|
|
926
|
-
--notification-info-text-font-weight: var(--font-weight-extralight);
|
|
927
|
-
--notification-info-text-line-height: var(--line-height-md);
|
|
928
|
-
--notification-success-surface: var(--surface-success);
|
|
929
|
-
--notification-success-border: var(--border-success);
|
|
930
|
-
--notification-success-border-width: var(--border-width-1);
|
|
931
|
-
--notification-success-radius: var(--radius-md);
|
|
932
|
-
--notification-success-padding: var(--space-12);
|
|
933
|
-
--notification-success-icon: var(--text-success);
|
|
934
|
-
--notification-success-icon-size: var(--icon-size-md);
|
|
935
|
-
--notification-success-title: var(--text-success);
|
|
936
|
-
--notification-success-title-font-family: var(--font-sans);
|
|
937
|
-
--notification-success-title-font-size: var(--font-size-lg);
|
|
938
|
-
--notification-success-title-font-weight: var(--font-weight-normal);
|
|
939
|
-
--notification-success-title-line-height: var(--line-height-sm);
|
|
940
|
-
--notification-success-text: var(--text-primary);
|
|
941
|
-
--notification-success-text-font-family: var(--font-sans);
|
|
942
|
-
--notification-success-text-font-size: var(--font-size-md);
|
|
943
|
-
--notification-success-text-font-weight: var(--font-weight-extralight);
|
|
944
|
-
--notification-success-text-line-height: var(--line-height-md);
|
|
945
|
-
--notification-warning-surface: var(--surface-warning);
|
|
946
|
-
--notification-warning-border: var(--border-warning);
|
|
947
|
-
--notification-warning-border-width: var(--border-width-1);
|
|
948
|
-
--notification-warning-radius: var(--radius-md);
|
|
949
|
-
--notification-warning-padding: var(--space-12);
|
|
950
|
-
--notification-warning-icon: var(--text-warning);
|
|
951
|
-
--notification-warning-icon-size: var(--icon-size-md);
|
|
952
|
-
--notification-warning-title: var(--text-warning);
|
|
953
|
-
--notification-warning-title-font-family: var(--font-sans);
|
|
954
|
-
--notification-warning-title-font-size: var(--font-size-lg);
|
|
955
|
-
--notification-warning-title-font-weight: var(--font-weight-normal);
|
|
956
|
-
--notification-warning-title-line-height: var(--line-height-sm);
|
|
957
|
-
--notification-warning-text: var(--text-primary);
|
|
958
|
-
--notification-warning-text-font-family: var(--font-sans);
|
|
959
|
-
--notification-warning-text-font-size: var(--font-size-md);
|
|
960
|
-
--notification-warning-text-font-weight: var(--font-weight-extralight);
|
|
961
|
-
--notification-warning-text-line-height: var(--line-height-md);
|
|
962
|
-
--notification-danger-surface: var(--surface-danger);
|
|
963
|
-
--notification-danger-border: var(--border-danger);
|
|
964
|
-
--notification-danger-border-width: var(--border-width-1);
|
|
965
|
-
--notification-danger-radius: var(--radius-md);
|
|
966
|
-
--notification-danger-padding: var(--space-12);
|
|
967
|
-
--notification-danger-icon: var(--text-danger);
|
|
968
|
-
--notification-danger-icon-size: var(--icon-size-md);
|
|
969
|
-
--notification-danger-title: var(--text-danger);
|
|
970
|
-
--notification-danger-title-font-family: var(--font-sans);
|
|
971
|
-
--notification-danger-title-font-size: var(--font-size-lg);
|
|
972
|
-
--notification-danger-title-font-weight: var(--font-weight-normal);
|
|
973
|
-
--notification-danger-title-line-height: var(--line-height-sm);
|
|
974
|
-
--notification-danger-text: var(--text-primary);
|
|
975
|
-
--notification-danger-text-font-family: var(--font-sans);
|
|
976
|
-
--notification-danger-text-font-size: var(--font-size-md);
|
|
977
|
-
--notification-danger-text-font-weight: var(--font-weight-extralight);
|
|
978
|
-
--notification-danger-text-line-height: var(--line-height-md);
|
|
979
|
-
--progressbar-primary-track-surface: var(--surface-neutral-lower);
|
|
980
|
-
--progressbar-primary-track-border: var(--border-neutral-subtle);
|
|
981
|
-
--progressbar-primary-track-border-width: var(--border-width-1);
|
|
982
|
-
--progressbar-primary-track-height: var(--space-10);
|
|
983
|
-
--progressbar-primary-radius: var(--radius-full);
|
|
984
|
-
--progressbar-primary-fill: var(--color-brand-700);
|
|
985
|
-
--progressbar-primary-label: var(--text-secondary);
|
|
986
|
-
--progressbar-primary-label-font-family: var(--font-sans);
|
|
987
|
-
--progressbar-primary-label-font-size: var(--font-size-sm);
|
|
988
|
-
--progressbar-primary-label-font-weight: var(--font-weight-light);
|
|
989
|
-
--progressbar-primary-label-line-height: var(--line-height-md);
|
|
990
|
-
--progressbar-primary-value: var(--text-tertiary);
|
|
991
|
-
--progressbar-primary-value-font-family: var(--font-mono);
|
|
992
|
-
--progressbar-primary-value-font-size: var(--font-size-xs);
|
|
993
|
-
--progressbar-primary-value-font-weight: var(--font-weight-light);
|
|
994
|
-
--progressbar-primary-value-line-height: var(--line-height-md);
|
|
995
|
-
--progressbar-success-track-surface: var(--surface-neutral-low);
|
|
996
|
-
--progressbar-success-track-border: var(--border-neutral-faint);
|
|
997
|
-
--progressbar-success-track-border-width: var(--border-width-1);
|
|
998
|
-
--progressbar-success-track-height: var(--space-10);
|
|
999
|
-
--progressbar-success-radius: var(--radius-full);
|
|
1000
|
-
--progressbar-success-fill: var(--border-success);
|
|
1001
|
-
--progressbar-success-label: var(--text-secondary);
|
|
1002
|
-
--progressbar-success-label-font-family: var(--font-sans);
|
|
1003
|
-
--progressbar-success-label-font-size: var(--font-size-sm);
|
|
1004
|
-
--progressbar-success-label-font-weight: var(--font-weight-light);
|
|
1005
|
-
--progressbar-success-label-line-height: var(--line-height-md);
|
|
1006
|
-
--progressbar-success-value: var(--text-tertiary);
|
|
1007
|
-
--progressbar-success-value-font-family: var(--font-mono);
|
|
1008
|
-
--progressbar-success-value-font-size: var(--font-size-xs);
|
|
1009
|
-
--progressbar-success-value-font-weight: var(--font-weight-light);
|
|
1010
|
-
--progressbar-success-value-line-height: var(--line-height-md);
|
|
1011
|
-
--progressbar-warning-track-surface: var(--surface-neutral-low);
|
|
1012
|
-
--progressbar-warning-track-border: var(--border-neutral-faint);
|
|
1013
|
-
--progressbar-warning-track-border-width: var(--border-width-1);
|
|
1014
|
-
--progressbar-warning-track-height: var(--space-10);
|
|
1015
|
-
--progressbar-warning-radius: var(--radius-full);
|
|
1016
|
-
--progressbar-warning-fill: var(--border-warning);
|
|
1017
|
-
--progressbar-warning-label: var(--text-secondary);
|
|
1018
|
-
--progressbar-warning-label-font-family: var(--font-sans);
|
|
1019
|
-
--progressbar-warning-label-font-size: var(--font-size-sm);
|
|
1020
|
-
--progressbar-warning-label-font-weight: var(--font-weight-light);
|
|
1021
|
-
--progressbar-warning-label-line-height: var(--line-height-md);
|
|
1022
|
-
--progressbar-warning-value: var(--text-tertiary);
|
|
1023
|
-
--progressbar-warning-value-font-family: var(--font-mono);
|
|
1024
|
-
--progressbar-warning-value-font-size: var(--font-size-xs);
|
|
1025
|
-
--progressbar-warning-value-font-weight: var(--font-weight-light);
|
|
1026
|
-
--progressbar-warning-value-line-height: var(--line-height-md);
|
|
1027
|
-
--progressbar-danger-track-surface: var(--surface-neutral-low);
|
|
1028
|
-
--progressbar-danger-track-border: var(--border-neutral-faint);
|
|
1029
|
-
--progressbar-danger-track-border-width: var(--border-width-1);
|
|
1030
|
-
--progressbar-danger-track-height: var(--space-10);
|
|
1031
|
-
--progressbar-danger-radius: var(--radius-full);
|
|
1032
|
-
--progressbar-danger-fill: var(--border-danger);
|
|
1033
|
-
--progressbar-danger-label: var(--text-secondary);
|
|
1034
|
-
--progressbar-danger-label-font-family: var(--font-sans);
|
|
1035
|
-
--progressbar-danger-label-font-size: var(--font-size-sm);
|
|
1036
|
-
--progressbar-danger-label-font-weight: var(--font-weight-light);
|
|
1037
|
-
--progressbar-danger-label-line-height: var(--line-height-md);
|
|
1038
|
-
--progressbar-danger-value: var(--text-tertiary);
|
|
1039
|
-
--progressbar-danger-value-font-family: var(--font-mono);
|
|
1040
|
-
--progressbar-danger-value-font-size: var(--font-size-xs);
|
|
1041
|
-
--progressbar-danger-value-font-weight: var(--font-weight-light);
|
|
1042
|
-
--progressbar-danger-value-line-height: var(--line-height-md);
|
|
1043
|
-
--progressbar-info-track-surface: var(--surface-neutral-low);
|
|
1044
|
-
--progressbar-info-track-border: var(--border-neutral-faint);
|
|
1045
|
-
--progressbar-info-track-border-width: var(--border-width-1);
|
|
1046
|
-
--progressbar-info-track-height: var(--space-10);
|
|
1047
|
-
--progressbar-info-radius: var(--radius-full);
|
|
1048
|
-
--progressbar-info-fill: var(--border-info);
|
|
1049
|
-
--progressbar-info-label: var(--text-secondary);
|
|
1050
|
-
--progressbar-info-label-font-family: var(--font-sans);
|
|
1051
|
-
--progressbar-info-label-font-size: var(--font-size-sm);
|
|
1052
|
-
--progressbar-info-label-font-weight: var(--font-weight-light);
|
|
1053
|
-
--progressbar-info-label-line-height: var(--line-height-md);
|
|
1054
|
-
--progressbar-info-value: var(--text-tertiary);
|
|
1055
|
-
--progressbar-info-value-font-family: var(--font-mono);
|
|
1056
|
-
--progressbar-info-value-font-size: var(--font-size-xs);
|
|
1057
|
-
--progressbar-info-value-font-weight: var(--font-weight-light);
|
|
1058
|
-
--progressbar-info-value-line-height: var(--line-height-md);
|
|
1059
|
-
--sectiondivider-padding: var(--space-16);
|
|
1060
|
-
--sectiondivider-title: var(--text-primary);
|
|
1061
|
-
--sectiondivider-title-font-family: var(--font-display);
|
|
1062
|
-
--sectiondivider-title-font-size: var(--font-size-5xl);
|
|
1063
|
-
--sectiondivider-title-font-weight: var(--font-weight-normal);
|
|
1064
|
-
--sectiondivider-title-line-height: var(--line-height-xs);
|
|
1065
|
-
--sectiondivider-title-border-width: var(--border-width-4);
|
|
1066
|
-
--sectiondivider-title-stroke-color: var(--surface-canvas-lowest);
|
|
1067
|
-
--sectiondivider-description: var(--text-secondary);
|
|
1068
|
-
--sectiondivider-description-font-family: var(--font-sans);
|
|
1069
|
-
--sectiondivider-description-font-size: var(--font-size-md);
|
|
1070
|
-
--sectiondivider-description-font-weight: var(--font-weight-normal);
|
|
1071
|
-
--sectiondivider-description-line-height: var(--line-height-md);
|
|
1072
|
-
--sectiondivider-canvas-gradient-stop-1: var(--surface-canvas-highest);
|
|
1073
|
-
--sectiondivider-canvas-gradient-stop-2: var(--surface-canvas-higher);
|
|
1074
|
-
--sectiondivider-canvas-gradient-stop-3: var(--surface-canvas-high);
|
|
1075
|
-
--sectiondivider-canvas-gradient-stop-4: var(--surface-canvas);
|
|
1076
|
-
--sectiondivider-canvas-radius: var(--radius-lg);
|
|
1077
|
-
--sectiondivider-neutral-gradient-stop-1: var(--surface-neutral-highest);
|
|
1078
|
-
--sectiondivider-neutral-gradient-stop-2: var(--surface-neutral-higher);
|
|
1079
|
-
--sectiondivider-neutral-gradient-stop-3: var(--surface-neutral-high);
|
|
1080
|
-
--sectiondivider-neutral-gradient-stop-4: var(--surface-neutral);
|
|
1081
|
-
--sectiondivider-neutral-radius: var(--radius-lg);
|
|
1082
|
-
--sectiondivider-alternate-gradient-stop-1: var(--surface-alternate-highest);
|
|
1083
|
-
--sectiondivider-alternate-gradient-stop-2: var(--surface-alternate-higher);
|
|
1084
|
-
--sectiondivider-alternate-gradient-stop-3: var(--surface-alternate-high);
|
|
1085
|
-
--sectiondivider-alternate-gradient-stop-4: var(--surface-alternate);
|
|
1086
|
-
--sectiondivider-alternate-radius: var(--radius-lg);
|
|
1087
|
-
--sectiondivider-primary-gradient-stop-1: var(--surface-brand-highest);
|
|
1088
|
-
--sectiondivider-primary-gradient-stop-2: var(--surface-brand-higher);
|
|
1089
|
-
--sectiondivider-primary-gradient-stop-3: var(--surface-brand-high);
|
|
1090
|
-
--sectiondivider-primary-gradient-stop-4: var(--surface-brand);
|
|
1091
|
-
--sectiondivider-primary-radius: var(--radius-lg);
|
|
1092
|
-
--sectiondivider-accent-gradient-stop-1: var(--surface-accent-highest);
|
|
1093
|
-
--sectiondivider-accent-gradient-stop-2: var(--surface-accent-higher);
|
|
1094
|
-
--sectiondivider-accent-gradient-stop-3: var(--surface-accent-high);
|
|
1095
|
-
--sectiondivider-accent-gradient-stop-4: var(--surface-accent);
|
|
1096
|
-
--sectiondivider-accent-radius: var(--radius-lg);
|
|
1097
|
-
--sectiondivider-special-gradient-stop-1: var(--surface-special-highest);
|
|
1098
|
-
--sectiondivider-special-gradient-stop-2: var(--surface-special-higher);
|
|
1099
|
-
--sectiondivider-special-gradient-stop-3: var(--surface-special-high);
|
|
1100
|
-
--sectiondivider-special-gradient-stop-4: var(--surface-special);
|
|
1101
|
-
--sectiondivider-special-radius: var(--radius-lg);
|
|
1102
|
-
--tabbar-bar-divider: var(--border-neutral-subtle);
|
|
1103
|
-
--tabbar-bar-divider-thickness: var(--border-width-1);
|
|
1104
|
-
--tabbar-bar-radius: var(--radius-md);
|
|
1105
|
-
--tabbar-bar-padding: var(--space-8);
|
|
1106
|
-
--tabbar-default-text: var(--text-tertiary);
|
|
1107
|
-
--tabbar-default-text-font-family: var(--font-sans);
|
|
1108
|
-
--tabbar-default-text-font-size: var(--font-size-md);
|
|
1109
|
-
--tabbar-default-text-font-weight: var(--font-weight-light);
|
|
1110
|
-
--tabbar-default-text-line-height: var(--line-height-md);
|
|
1111
|
-
--tabbar-default-icon-size: var(--icon-size-md);
|
|
1112
|
-
--tabbar-default-padding: var(--space-8);
|
|
1113
|
-
--tabbar-default-border-width: var(--border-width-2);
|
|
1114
|
-
--tabbar-hover-text: var(--text-secondary);
|
|
1115
|
-
--tabbar-hover-surface: var(--surface-neutral-lower);
|
|
1116
|
-
--tabbar-hover-text-font-family: var(--font-sans);
|
|
1117
|
-
--tabbar-hover-text-font-size: var(--font-size-md);
|
|
1118
|
-
--tabbar-hover-text-font-weight: var(--font-weight-light);
|
|
1119
|
-
--tabbar-hover-text-line-height: var(--line-height-md);
|
|
1120
|
-
--tabbar-hover-icon-size: var(--icon-size-md);
|
|
1121
|
-
--tabbar-hover-padding: var(--space-8);
|
|
1122
|
-
--tabbar-hover-border-width: var(--border-width-2);
|
|
1123
|
-
--tabbar-active-text: var(--text-primary);
|
|
1124
|
-
--tabbar-active-border: var(--color-brand-500);
|
|
1125
|
-
--tabbar-active-surface: var(--overlay-lowest);
|
|
1126
|
-
--tabbar-active-text-font-family: var(--font-sans);
|
|
1127
|
-
--tabbar-active-text-font-size: var(--font-size-md);
|
|
1128
|
-
--tabbar-active-text-font-weight: var(--font-weight-light);
|
|
1129
|
-
--tabbar-active-text-line-height: var(--line-height-md);
|
|
1130
|
-
--tabbar-active-icon-size: var(--icon-size-md);
|
|
1131
|
-
--tabbar-active-padding: var(--space-8);
|
|
1132
|
-
--tabbar-active-border-width: var(--border-width-2);
|
|
1133
|
-
--inlineeditactions-save-default-surface: var(--surface-success-low);
|
|
1134
|
-
--inlineeditactions-save-default-text: var(--text-success);
|
|
1135
|
-
--inlineeditactions-save-default-border: var(--border-success);
|
|
1136
|
-
--inlineeditactions-save-default-border-width: var(--border-width-1);
|
|
1137
|
-
--inlineeditactions-save-default-radius: var(--radius-md);
|
|
1138
|
-
--inlineeditactions-save-default-padding: var(--space-4);
|
|
1139
|
-
--inlineeditactions-save-default-icon-size: var(--icon-size-md);
|
|
1140
|
-
--inlineeditactions-save-hover-surface: var(--surface-success-high);
|
|
1141
|
-
--inlineeditactions-save-hover-text: var(--text-primary);
|
|
1142
|
-
--inlineeditactions-save-hover-border: var(--border-success);
|
|
1143
|
-
--inlineeditactions-save-hover-border-width: var(--border-width-1);
|
|
1144
|
-
--inlineeditactions-save-hover-radius: var(--radius-md);
|
|
1145
|
-
--inlineeditactions-save-hover-padding: var(--space-4);
|
|
1146
|
-
--inlineeditactions-save-hover-icon-size: var(--icon-size-md);
|
|
1147
|
-
--inlineeditactions-cancel-default-surface: var(--surface-danger-low);
|
|
1148
|
-
--inlineeditactions-cancel-default-text: var(--text-danger);
|
|
1149
|
-
--inlineeditactions-cancel-default-border: var(--border-danger);
|
|
1150
|
-
--inlineeditactions-cancel-default-border-width: var(--border-width-1);
|
|
1151
|
-
--inlineeditactions-cancel-default-radius: var(--radius-md);
|
|
1152
|
-
--inlineeditactions-cancel-default-padding: var(--space-4);
|
|
1153
|
-
--inlineeditactions-cancel-default-icon-size: var(--icon-size-md);
|
|
1154
|
-
--inlineeditactions-cancel-hover-surface: var(--surface-danger-high);
|
|
1155
|
-
--inlineeditactions-cancel-hover-text: var(--text-primary);
|
|
1156
|
-
--inlineeditactions-cancel-hover-border: var(--border-danger);
|
|
1157
|
-
--inlineeditactions-cancel-hover-border-width: var(--border-width-1);
|
|
1158
|
-
--inlineeditactions-cancel-hover-radius: var(--radius-md);
|
|
1159
|
-
--inlineeditactions-cancel-hover-padding: var(--space-4);
|
|
1160
|
-
--inlineeditactions-cancel-hover-icon-size: var(--icon-size-md);
|
|
1161
|
-
--tooltip-surface: var(--surface-neutral-highest);
|
|
1162
|
-
--tooltip-text: var(--text-primary);
|
|
1163
|
-
--tooltip-text-font-family: var(--font-sans);
|
|
1164
|
-
--tooltip-text-font-size: var(--font-size-sm);
|
|
1165
|
-
--tooltip-text-font-weight: var(--font-weight-normal);
|
|
1166
|
-
--tooltip-text-line-height: var(--line-height-md);
|
|
1167
|
-
--tooltip-border: var(--border-neutral);
|
|
1168
|
-
--tooltip-border-width: var(--border-width-0);
|
|
1169
|
-
--tooltip-radius: var(--radius-md);
|
|
1170
|
-
--tooltip-padding: var(--space-6);
|
|
1171
|
-
--tooltip-shadow: var(--shadow-md);
|
|
1172
|
-
--segmentedcontrol-bar-surface: color-mix(in srgb, var(--surface-neutral-lowest) 85%, transparent);
|
|
1173
|
-
--segmentedcontrol-bar-border: var(--border-neutral);
|
|
1174
|
-
--segmentedcontrol-bar-border-width: var(--border-width-1);
|
|
1175
|
-
--segmentedcontrol-bar-radius: var(--radius-xl);
|
|
1176
|
-
--segmentedcontrol-bar-padding: var(--space-4);
|
|
1177
|
-
--segmentedcontrol-divider-color: var(--border-neutral);
|
|
1178
|
-
--segmentedcontrol-divider-thickness: var(--border-width-1);
|
|
1179
|
-
--segmentedcontrol-divider-height: var(--space-20);
|
|
1180
|
-
--segmentedcontrol-option-text: var(--text-primary);
|
|
1181
|
-
--segmentedcontrol-option-text-font-family: var(--font-sans);
|
|
1182
|
-
--segmentedcontrol-option-text-font-size: var(--font-size-sm);
|
|
1183
|
-
--segmentedcontrol-option-text-font-weight: var(--font-weight-normal);
|
|
1184
|
-
--segmentedcontrol-option-text-line-height: var(--line-height-md);
|
|
1185
|
-
--segmentedcontrol-option-icon: var(--text-secondary);
|
|
1186
|
-
--segmentedcontrol-option-hover-surface: var(--surface-neutral-higher);
|
|
1187
|
-
--segmentedcontrol-option-hover-text: var(--text-primary);
|
|
1188
|
-
--segmentedcontrol-option-hover-text-font-family: var(--font-sans);
|
|
1189
|
-
--segmentedcontrol-option-hover-text-font-size: var(--font-size-sm);
|
|
1190
|
-
--segmentedcontrol-option-hover-text-font-weight: var(--font-weight-normal);
|
|
1191
|
-
--segmentedcontrol-option-hover-text-line-height: var(--line-height-md);
|
|
1192
|
-
--segmentedcontrol-option-hover-icon: var(--text-secondary);
|
|
1193
|
-
--segmentedcontrol-selected-surface: var(--surface-brand);
|
|
1194
|
-
--segmentedcontrol-selected-text: var(--text-primary);
|
|
1195
|
-
--segmentedcontrol-selected-text-font-family: var(--font-sans);
|
|
1196
|
-
--segmentedcontrol-selected-text-font-size: var(--font-size-sm);
|
|
1197
|
-
--segmentedcontrol-selected-text-font-weight: var(--font-weight-semibold);
|
|
1198
|
-
--segmentedcontrol-selected-text-line-height: var(--line-height-md);
|
|
1199
|
-
--segmentedcontrol-selected-icon: var(--text-primary);
|
|
1200
|
-
--segmentedcontrol-selected-border: var(--border-brand);
|
|
1201
|
-
--segmentedcontrol-selected-border-width: var(--border-width-1);
|
|
1202
|
-
--segmentedcontrol-selected-radius: var(--radius-md);
|
|
1203
|
-
--segmentedcontrol-disabled-surface: var(--surface-neutral-low);
|
|
1204
|
-
--segmentedcontrol-disabled-text: var(--text-tertiary);
|
|
1205
|
-
--segmentedcontrol-disabled-text-font-family: var(--font-sans);
|
|
1206
|
-
--segmentedcontrol-disabled-text-font-size: var(--font-size-sm);
|
|
1207
|
-
--segmentedcontrol-disabled-text-font-weight: var(--font-weight-light);
|
|
1208
|
-
--segmentedcontrol-disabled-text-line-height: var(--line-height-md);
|
|
1209
|
-
--segmentedcontrol-disabled-icon: var(--text-tertiary);
|
|
1210
|
-
--segmentedcontrol-bar-gap: var(--space-8);
|
|
1211
|
-
--hover-low: rgba(255, 255, 255, 0.05);
|
|
1212
|
-
--hover: rgba(255, 255, 255, 0.1);
|
|
1213
|
-
--hover-high: rgba(255, 255, 255, 0.15);
|
|
1214
|
-
|
|
1215
|
-
/* Token additions */
|
|
1216
|
-
--sectiondivider-canvas-padding: var(--space-16);
|
|
1217
|
-
--sectiondivider-canvas-title: var(--text-primary);
|
|
1218
|
-
--sectiondivider-canvas-title-font-family: var(--font-display);
|
|
1219
|
-
--sectiondivider-canvas-title-font-size: var(--font-size-5xl);
|
|
1220
|
-
--sectiondivider-canvas-title-font-weight: var(--font-weight-normal);
|
|
1221
|
-
--sectiondivider-canvas-title-line-height: var(--line-height-xs);
|
|
1222
|
-
--sectiondivider-canvas-title-border-width: var(--border-width-4);
|
|
1223
|
-
--sectiondivider-canvas-title-stroke-color: var(--surface-canvas-lowest);
|
|
1224
|
-
--sectiondivider-canvas-description: var(--text-secondary);
|
|
1225
|
-
--sectiondivider-canvas-description-font-family: var(--font-sans);
|
|
1226
|
-
--sectiondivider-canvas-description-font-size: var(--font-size-md);
|
|
1227
|
-
--sectiondivider-canvas-description-font-weight: var(--font-weight-normal);
|
|
1228
|
-
--sectiondivider-canvas-description-line-height: var(--line-height-md);
|
|
1229
|
-
--sectiondivider-neutral-padding: var(--space-16);
|
|
1230
|
-
--sectiondivider-neutral-title: var(--text-primary);
|
|
1231
|
-
--sectiondivider-neutral-title-font-family: var(--font-display);
|
|
1232
|
-
--sectiondivider-neutral-title-font-size: var(--font-size-5xl);
|
|
1233
|
-
--sectiondivider-neutral-title-font-weight: var(--font-weight-normal);
|
|
1234
|
-
--sectiondivider-neutral-title-line-height: var(--line-height-xs);
|
|
1235
|
-
--sectiondivider-neutral-title-border-width: var(--border-width-4);
|
|
1236
|
-
--sectiondivider-neutral-title-stroke-color: var(--surface-neutral-lowest);
|
|
1237
|
-
--sectiondivider-neutral-description: var(--text-secondary);
|
|
1238
|
-
--sectiondivider-neutral-description-font-family: var(--font-sans);
|
|
1239
|
-
--sectiondivider-neutral-description-font-size: var(--font-size-md);
|
|
1240
|
-
--sectiondivider-neutral-description-font-weight: var(--font-weight-normal);
|
|
1241
|
-
--sectiondivider-neutral-description-line-height: var(--line-height-md);
|
|
1242
|
-
--sectiondivider-alternate-padding: var(--space-16);
|
|
1243
|
-
--sectiondivider-alternate-title: var(--text-primary);
|
|
1244
|
-
--sectiondivider-alternate-title-font-family: var(--font-display);
|
|
1245
|
-
--sectiondivider-alternate-title-font-size: var(--font-size-5xl);
|
|
1246
|
-
--sectiondivider-alternate-title-font-weight: var(--font-weight-normal);
|
|
1247
|
-
--sectiondivider-alternate-title-line-height: var(--line-height-xs);
|
|
1248
|
-
--sectiondivider-alternate-title-border-width: var(--border-width-4);
|
|
1249
|
-
--sectiondivider-alternate-title-stroke-color: var(--surface-alternate-lowest);
|
|
1250
|
-
--sectiondivider-alternate-description: var(--text-secondary);
|
|
1251
|
-
--sectiondivider-alternate-description-font-family: var(--font-sans);
|
|
1252
|
-
--sectiondivider-alternate-description-font-size: var(--font-size-md);
|
|
1253
|
-
--sectiondivider-alternate-description-font-weight: var(--font-weight-normal);
|
|
1254
|
-
--sectiondivider-alternate-description-line-height: var(--line-height-md);
|
|
1255
|
-
--sectiondivider-primary-padding: var(--space-16);
|
|
1256
|
-
--sectiondivider-primary-title: var(--text-primary);
|
|
1257
|
-
--sectiondivider-primary-title-font-family: var(--font-display);
|
|
1258
|
-
--sectiondivider-primary-title-font-size: var(--font-size-5xl);
|
|
1259
|
-
--sectiondivider-primary-title-font-weight: var(--font-weight-normal);
|
|
1260
|
-
--sectiondivider-primary-title-line-height: var(--line-height-xs);
|
|
1261
|
-
--sectiondivider-primary-title-border-width: var(--border-width-4);
|
|
1262
|
-
--sectiondivider-primary-title-stroke-color: var(--surface-brand-lowest);
|
|
1263
|
-
--sectiondivider-primary-description: var(--text-secondary);
|
|
1264
|
-
--sectiondivider-primary-description-font-family: var(--font-sans);
|
|
1265
|
-
--sectiondivider-primary-description-font-size: var(--font-size-md);
|
|
1266
|
-
--sectiondivider-primary-description-font-weight: var(--font-weight-normal);
|
|
1267
|
-
--sectiondivider-primary-description-line-height: var(--line-height-md);
|
|
1268
|
-
--sectiondivider-accent-padding: var(--space-16);
|
|
1269
|
-
--sectiondivider-accent-title: var(--text-primary);
|
|
1270
|
-
--sectiondivider-accent-title-font-family: var(--font-display);
|
|
1271
|
-
--sectiondivider-accent-title-font-size: var(--font-size-5xl);
|
|
1272
|
-
--sectiondivider-accent-title-font-weight: var(--font-weight-normal);
|
|
1273
|
-
--sectiondivider-accent-title-line-height: var(--line-height-xs);
|
|
1274
|
-
--sectiondivider-accent-title-border-width: var(--border-width-4);
|
|
1275
|
-
--sectiondivider-accent-title-stroke-color: var(--surface-accent-lowest);
|
|
1276
|
-
--sectiondivider-accent-description: var(--text-secondary);
|
|
1277
|
-
--sectiondivider-accent-description-font-family: var(--font-sans);
|
|
1278
|
-
--sectiondivider-accent-description-font-size: var(--font-size-md);
|
|
1279
|
-
--sectiondivider-accent-description-font-weight: var(--font-weight-normal);
|
|
1280
|
-
--sectiondivider-accent-description-line-height: var(--line-height-md);
|
|
1281
|
-
--sectiondivider-special-padding: var(--space-16);
|
|
1282
|
-
--sectiondivider-special-title: var(--text-primary);
|
|
1283
|
-
--sectiondivider-special-title-font-family: var(--font-display);
|
|
1284
|
-
--sectiondivider-special-title-font-size: var(--font-size-5xl);
|
|
1285
|
-
--sectiondivider-special-title-font-weight: var(--font-weight-normal);
|
|
1286
|
-
--sectiondivider-special-title-line-height: var(--line-height-xs);
|
|
1287
|
-
--sectiondivider-special-title-border-width: var(--border-width-4);
|
|
1288
|
-
--sectiondivider-special-title-stroke-color: var(--surface-special-lowest);
|
|
1289
|
-
--sectiondivider-special-description: var(--text-secondary);
|
|
1290
|
-
--sectiondivider-special-description-font-family: var(--font-sans);
|
|
1291
|
-
--sectiondivider-special-description-font-size: var(--font-size-md);
|
|
1292
|
-
--sectiondivider-special-description-font-weight: var(--font-weight-normal);
|
|
1293
|
-
--sectiondivider-special-description-line-height: var(--line-height-md);
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
|
-
/* component-aliases:start */
|
|
1297
|
-
:root:root {
|
|
1298
|
-
/* badge (my-badge) */
|
|
1299
|
-
--badge-primary-radius: var(--radius-md);
|
|
1300
|
-
--badge-accent-radius: var(--radius-md);
|
|
1301
|
-
--badge-neutral-radius: var(--radius-md);
|
|
1302
|
-
--badge-alternate-radius: var(--radius-md);
|
|
1303
|
-
--badge-canvas-radius: var(--radius-md);
|
|
1304
|
-
--badge-special-radius: var(--radius-md);
|
|
1305
|
-
--badge-success-radius: var(--radius-md);
|
|
1306
|
-
--badge-warning-radius: var(--radius-md);
|
|
1307
|
-
--badge-danger-radius: var(--radius-md);
|
|
1308
|
-
--badge-info-radius: var(--radius-md);
|
|
1309
|
-
/* callout (my-callout) */
|
|
1310
|
-
--callout-info-border-width: var(--border-width-2);
|
|
1311
|
-
--callout-info-label-font-family: var(--font-sans);
|
|
1312
|
-
--callout-info-label-font-weight: var(--font-weight-semibold);
|
|
1313
|
-
--callout-info-text-font-family: var(--font-sans);
|
|
1314
|
-
--callout-success-border-width: var(--border-width-2);
|
|
1315
|
-
--callout-success-label-font-family: var(--font-sans);
|
|
1316
|
-
--callout-success-label-font-weight: var(--font-weight-semibold);
|
|
1317
|
-
--callout-success-text-font-family: var(--font-sans);
|
|
1318
|
-
--callout-warning-border-width: var(--border-width-2);
|
|
1319
|
-
--callout-warning-label-font-family: var(--font-sans);
|
|
1320
|
-
--callout-warning-label-font-weight: var(--font-weight-semibold);
|
|
1321
|
-
--callout-warning-text-font-family: var(--font-sans);
|
|
1322
|
-
--callout-danger-border-width: var(--border-width-2);
|
|
1323
|
-
--callout-danger-label-font-family: var(--font-sans);
|
|
1324
|
-
--callout-danger-label-font-weight: var(--font-weight-semibold);
|
|
1325
|
-
--callout-danger-text-font-family: var(--font-sans);
|
|
1326
|
-
/* card (my-card) */
|
|
1327
|
-
--card-default-surface: var(color-mix(in srgb, var(--surface-neutral-low) 95%, transparent));
|
|
1328
|
-
--card-default-header-surface: var(color-mix(in srgb, var(--surface-neutral-lower) 85%, transparent));
|
|
1329
|
-
--card-default-title-font-weight: var(--font-weight-semibold);
|
|
1330
|
-
--card-default-header-padding-top: var(--space-8);
|
|
1331
|
-
--card-default-header-padding-right: var(--space-16);
|
|
1332
|
-
--card-default-header-padding-bottom: var(--space-8);
|
|
1333
|
-
--card-default-header-padding-left: var(--space-16);
|
|
1334
|
-
/* cornerbadge (my-corner-badge) */
|
|
1335
|
-
--corner-badge-primary-text-font-size: var(--font-size-xs);
|
|
1336
|
-
--corner-badge-accent-text-font-size: var(--font-size-xs);
|
|
1337
|
-
--corner-badge-neutral-text-font-size: var(--font-size-xs);
|
|
1338
|
-
--corner-badge-alternate-text-font-size: var(--font-size-xs);
|
|
1339
|
-
--corner-badge-canvas-text-font-size: var(--font-size-xs);
|
|
1340
|
-
--corner-badge-special-text-font-size: var(--font-size-xs);
|
|
1341
|
-
--corner-badge-success-text-font-size: var(--font-size-xs);
|
|
1342
|
-
--corner-badge-warning-text-font-size: var(--font-size-xs);
|
|
1343
|
-
--corner-badge-danger-text-font-size: var(--font-size-xs);
|
|
1344
|
-
--corner-badge-info-text-font-size: var(--font-size-xs);
|
|
1345
|
-
/* dialog (my-dialog) */
|
|
1346
|
-
--dialog-overlay-surface: var(color-mix(in srgb, var(--surface-neutral-lowest) 65%, transparent));
|
|
1347
|
-
/* progressbar (my-progress-bar) */
|
|
1348
|
-
--progressbar-primary-fill: var(--color-brand-400);
|
|
1349
|
-
--progressbar-success-fill: var(--color-success-400);
|
|
1350
|
-
--progressbar-warning-fill: var(--color-warning-400);
|
|
1351
|
-
--progressbar-danger-fill: var(--color-danger-400);
|
|
1352
|
-
--progressbar-info-fill: var(--color-info-400);
|
|
1353
|
-
/* sectiondivider (my-section-divider) */
|
|
1354
|
-
--sectiondivider-canvas-title-font-family: var(--font-sans);
|
|
1355
|
-
--sectiondivider-canvas-title-font-weight: var(--font-weight-bold);
|
|
1356
|
-
--sectiondivider-canvas-title-border-width: var(--border-width-6);
|
|
1357
|
-
--sectiondivider-canvas-title-stroke-color: var(color-mix(in srgb, var(--surface-canvas-lowest) 30%, transparent));
|
|
1358
|
-
--sectiondivider-canvas-gradient-stop-1-color: var(color-mix(in srgb, var(--surface-canvas-highest) 85%, transparent));
|
|
1359
|
-
--sectiondivider-canvas-gradient-stop-1-position: var(0%);
|
|
1360
|
-
--sectiondivider-canvas-gradient-stop-2-color: var(color-mix(in srgb, var(--surface-canvas-higher) 60%, transparent));
|
|
1361
|
-
--sectiondivider-canvas-gradient-stop-2-position: var(35%);
|
|
1362
|
-
--sectiondivider-canvas-gradient-stop-3-color: var(color-mix(in srgb, var(--surface-canvas) 75%, transparent));
|
|
1363
|
-
--sectiondivider-canvas-gradient-stop-3-position: var(100%);
|
|
1364
|
-
--sectiondivider-canvas-border: var(--border-canvas-medium);
|
|
1365
|
-
--sectiondivider-canvas-border-width: var(--border-width-2);
|
|
1366
|
-
--sectiondivider-neutral-title-font-family: var(--font-sans);
|
|
1367
|
-
--sectiondivider-neutral-title-font-weight: var(--font-weight-bold);
|
|
1368
|
-
--sectiondivider-neutral-title-border-width: var(--border-width-6);
|
|
1369
|
-
--sectiondivider-neutral-title-stroke-color: var(color-mix(in srgb, var(--surface-neutral-lowest) 30%, transparent));
|
|
1370
|
-
--sectiondivider-neutral-gradient-stop-1-color: var(color-mix(in srgb, var(--surface-neutral-highest) 85%, transparent));
|
|
1371
|
-
--sectiondivider-neutral-gradient-stop-1-position: var(0%);
|
|
1372
|
-
--sectiondivider-neutral-gradient-stop-2-color: var(color-mix(in srgb, var(--surface-neutral-higher) 60%, transparent));
|
|
1373
|
-
--sectiondivider-neutral-gradient-stop-2-position: var(35%);
|
|
1374
|
-
--sectiondivider-neutral-gradient-stop-3-color: var(color-mix(in srgb, var(--surface-neutral) 75%, transparent));
|
|
1375
|
-
--sectiondivider-neutral-gradient-stop-3-position: var(100%);
|
|
1376
|
-
--sectiondivider-neutral-border: var(--border-neutral-medium);
|
|
1377
|
-
--sectiondivider-neutral-border-width: var(--border-width-2);
|
|
1378
|
-
--sectiondivider-alternate-title-font-family: var(--font-sans);
|
|
1379
|
-
--sectiondivider-alternate-title-font-weight: var(--font-weight-bold);
|
|
1380
|
-
--sectiondivider-alternate-title-border-width: var(--border-width-6);
|
|
1381
|
-
--sectiondivider-alternate-title-stroke-color: var(color-mix(in srgb, var(--surface-alternate-lowest) 30%, transparent));
|
|
1382
|
-
--sectiondivider-alternate-gradient-stop-1-color: var(color-mix(in srgb, var(--surface-alternate-highest) 85%, transparent));
|
|
1383
|
-
--sectiondivider-alternate-gradient-stop-1-position: var(0%);
|
|
1384
|
-
--sectiondivider-alternate-gradient-stop-2-color: var(color-mix(in srgb, var(--surface-alternate-higher) 60%, transparent));
|
|
1385
|
-
--sectiondivider-alternate-gradient-stop-2-position: var(35%);
|
|
1386
|
-
--sectiondivider-alternate-gradient-stop-3-color: var(color-mix(in srgb, var(--surface-alternate) 75%, transparent));
|
|
1387
|
-
--sectiondivider-alternate-gradient-stop-3-position: var(100%);
|
|
1388
|
-
--sectiondivider-alternate-border: var(--border-alternate-medium);
|
|
1389
|
-
--sectiondivider-alternate-border-width: var(--border-width-2);
|
|
1390
|
-
--sectiondivider-primary-title-font-family: var(--font-sans);
|
|
1391
|
-
--sectiondivider-primary-title-font-weight: var(--font-weight-bold);
|
|
1392
|
-
--sectiondivider-primary-title-border-width: var(--border-width-6);
|
|
1393
|
-
--sectiondivider-primary-title-stroke-color: var(color-mix(in srgb, var(--surface-brand-lowest) 30%, transparent));
|
|
1394
|
-
--sectiondivider-primary-gradient-stop-1-color: var(color-mix(in srgb, var(--surface-brand-highest) 85%, transparent));
|
|
1395
|
-
--sectiondivider-primary-gradient-stop-1-position: var(0%);
|
|
1396
|
-
--sectiondivider-primary-gradient-stop-2-color: var(color-mix(in srgb, var(--surface-brand-higher) 60%, transparent));
|
|
1397
|
-
--sectiondivider-primary-gradient-stop-2-position: var(35%);
|
|
1398
|
-
--sectiondivider-primary-gradient-stop-3-color: var(color-mix(in srgb, var(--surface-brand) 75%, transparent));
|
|
1399
|
-
--sectiondivider-primary-gradient-stop-3-position: var(100%);
|
|
1400
|
-
--sectiondivider-primary-border: var(--border-brand-medium);
|
|
1401
|
-
--sectiondivider-primary-border-width: var(--border-width-2);
|
|
1402
|
-
--sectiondivider-accent-title-font-family: var(--font-sans);
|
|
1403
|
-
--sectiondivider-accent-title-font-weight: var(--font-weight-bold);
|
|
1404
|
-
--sectiondivider-accent-title-border-width: var(--border-width-6);
|
|
1405
|
-
--sectiondivider-accent-title-stroke-color: var(color-mix(in srgb, var(--surface-accent-lowest) 30%, transparent));
|
|
1406
|
-
--sectiondivider-accent-description: var(--text-accent);
|
|
1407
|
-
--sectiondivider-accent-gradient-stop-1-color: var(color-mix(in srgb, var(--surface-accent-highest) 85%, transparent));
|
|
1408
|
-
--sectiondivider-accent-gradient-stop-1-position: var(0%);
|
|
1409
|
-
--sectiondivider-accent-gradient-stop-2-color: var(color-mix(in srgb, var(--surface-accent-higher) 60%, transparent));
|
|
1410
|
-
--sectiondivider-accent-gradient-stop-2-position: var(35%);
|
|
1411
|
-
--sectiondivider-accent-gradient-stop-3-color: var(color-mix(in srgb, var(--surface-accent-low) 75%, transparent));
|
|
1412
|
-
--sectiondivider-accent-gradient-stop-3-position: var(100%);
|
|
1413
|
-
--sectiondivider-accent-border: var(--border-accent-medium);
|
|
1414
|
-
--sectiondivider-accent-border-width: var(--border-width-2);
|
|
1415
|
-
--sectiondivider-special-title-font-family: var(--font-sans);
|
|
1416
|
-
--sectiondivider-special-title-font-weight: var(--font-weight-bold);
|
|
1417
|
-
--sectiondivider-special-title-border-width: var(--border-width-6);
|
|
1418
|
-
--sectiondivider-special-title-stroke-color: var(color-mix(in srgb, var(--surface-special-lowest) 30%, transparent));
|
|
1419
|
-
--sectiondivider-special-gradient-stop-1-color: var(color-mix(in srgb, var(--surface-special-highest) 85%, transparent));
|
|
1420
|
-
--sectiondivider-special-gradient-stop-1-position: var(0%);
|
|
1421
|
-
--sectiondivider-special-gradient-stop-2-color: var(color-mix(in srgb, var(--surface-special-higher) 60%, transparent));
|
|
1422
|
-
--sectiondivider-special-gradient-stop-2-position: var(35%);
|
|
1423
|
-
--sectiondivider-special-gradient-stop-3-color: var(color-mix(in srgb, var(--surface-special) 75%, transparent));
|
|
1424
|
-
--sectiondivider-special-gradient-stop-3-position: var(100%);
|
|
1425
|
-
--sectiondivider-special-border: var(--border-special-medium);
|
|
1426
|
-
--sectiondivider-special-border-width: var(--border-width-2);
|
|
1427
|
-
/* segmentedcontrol (my-segmented-control) */
|
|
1428
|
-
--segmentedcontrol-bar-surface: var(--surface-neutral-lower);
|
|
1429
|
-
--segmentedcontrol-option-text: var(--text-secondary);
|
|
1430
|
-
--segmentedcontrol-option-hover-icon: var(--text-primary);
|
|
1431
|
-
--segmentedcontrol-selected-surface: var(--surface-brand);
|
|
1432
|
-
--segmentedcontrol-selected-text-font-weight: var(--font-weight-normal);
|
|
1433
|
-
--segmentedcontrol-selected-icon: var(--text-primary);
|
|
1434
|
-
--segmentedcontrol-selected-border: var(--border-brand-medium);
|
|
1435
|
-
--segmentedcontrol-disabled-surface: var(transparent);
|
|
1436
|
-
/* table (my-table) */
|
|
1437
|
-
--table-default-header-surface: var(--surface-neutral-lower);
|
|
1438
|
-
--table-default-header-font-weight: var(--font-weight-semibold);
|
|
1439
|
-
--table-default-header-border: var(--border-neutral);
|
|
1440
|
-
--table-default-row-divider: var(--border-neutral);
|
|
1441
|
-
--table-default-row-stripe-surface: var(color-mix(in srgb, var(--surface-neutral-lower) 50%, transparent));
|
|
1442
|
-
--table-default-row-surface: var(color-mix(in srgb, var(--surface-neutral) 70%, transparent));
|
|
1443
601
|
}
|
|
1444
|
-
/* component-aliases:end */
|