lutra 0.0.33 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -24
- package/dist/components/AspectRatio.svelte +26 -0
- package/dist/components/AspectRatio.svelte.d.ts +8 -0
- package/dist/components/Avatar.svelte +105 -0
- package/dist/components/Avatar.svelte.d.ts +14 -0
- package/dist/{display → components}/Close.svelte +25 -7
- package/dist/components/Close.svelte.d.ts +7 -0
- package/dist/components/ContextTip.svelte +41 -0
- package/dist/components/ContextTip.svelte.d.ts +7 -0
- package/dist/components/Dialog.svelte +78 -0
- package/dist/components/Dialog.svelte.d.ts +14 -0
- package/dist/components/Icon.svelte +62 -0
- package/dist/components/Icon.svelte.d.ts +8 -0
- package/dist/{display → components}/IconButton.svelte +43 -14
- package/dist/components/IconButton.svelte.d.ts +16 -0
- package/dist/components/Image.svelte +172 -0
- package/dist/components/Image.svelte.d.ts +56 -0
- package/dist/{display → components}/Indicator.svelte +44 -9
- package/dist/components/Indicator.svelte.d.ts +12 -0
- package/dist/{display → components}/Inset.svelte +8 -3
- package/dist/components/Inset.svelte.d.ts +7 -0
- package/dist/components/Layout.svelte +33 -0
- package/dist/components/Layout.svelte.d.ts +11 -0
- package/dist/components/MenuDropdown.svelte +195 -0
- package/dist/components/MenuDropdown.svelte.d.ts +16 -0
- package/dist/{nav → components}/MenuItem.svelte +46 -38
- package/dist/components/MenuItem.svelte.d.ts +11 -0
- package/dist/components/MenuItemContent.svelte +25 -0
- package/dist/components/MenuItemContent.svelte.d.ts +10 -0
- package/dist/{nav → components}/MenuTypes.d.ts +19 -5
- package/dist/components/Modal.svelte +149 -0
- package/dist/components/Modal.svelte.d.ts +16 -0
- package/dist/{display → components}/Notification.svelte +33 -22
- package/dist/components/Notification.svelte.d.ts +12 -0
- package/dist/components/Overlay.svelte +31 -0
- package/dist/components/Overlay.svelte.d.ts +14 -0
- package/dist/{layout → components}/OverlayContainer.svelte +6 -3
- package/dist/{layout → components}/OverlayContainer.svelte.d.ts +4 -1
- package/dist/components/OverlayLayer.svelte +168 -0
- package/dist/components/OverlayLayer.svelte.d.ts +8 -0
- package/dist/components/PageContent.svelte +108 -0
- package/dist/components/PageContent.svelte.d.ts +38 -0
- package/dist/components/TabbedContent.svelte +74 -0
- package/dist/components/TabbedContent.svelte.d.ts +11 -0
- package/dist/components/TabbedContentItem.svelte +33 -0
- package/dist/components/TabbedContentItem.svelte.d.ts +10 -0
- package/dist/components/Table.svelte +41 -0
- package/dist/components/Table.svelte.d.ts +13 -0
- package/dist/{nav → components}/Tabs.svelte +99 -41
- package/dist/components/Tabs.svelte.d.ts +20 -0
- package/dist/components/Tag.svelte +120 -0
- package/dist/components/Tag.svelte.d.ts +21 -0
- package/dist/components/Theme.svelte +105 -0
- package/dist/components/Theme.svelte.d.ts +17 -0
- package/dist/{display → components}/Tooltip.svelte +41 -16
- package/dist/components/Tooltip.svelte.d.ts +12 -0
- package/dist/components/UIContent.svelte +19 -0
- package/dist/components/UIContent.svelte.d.ts +7 -0
- package/dist/components/index.d.ts +28 -0
- package/dist/components/index.js +29 -0
- package/dist/{display → components}/notifications.svelte.d.ts +1 -1
- package/dist/{display → components}/notifications.svelte.js +3 -4
- package/dist/{layout → components}/overlays.svelte.d.ts +4 -2
- package/dist/config.d.ts +30 -0
- package/dist/config.js +18 -0
- package/dist/css/1-props.css +440 -0
- package/dist/css/2-base.css +343 -0
- package/dist/css/3-typo.css +106 -0
- package/dist/css/4-layout.css +368 -0
- package/dist/css/5-media.css +116 -0
- package/dist/css/lutra.css +7 -0
- package/dist/css/themes/DefaultTheme.css +209 -0
- package/dist/form/Button.svelte +35 -16
- package/dist/form/Button.svelte.d.ts +8 -19
- package/dist/form/Datepicker.svelte +311 -0
- package/dist/form/Datepicker.svelte.d.ts +9 -0
- package/dist/form/FieldContent.svelte +69 -44
- package/dist/form/FieldContent.svelte.d.ts +7 -17
- package/dist/form/FieldError.svelte +16 -6
- package/dist/form/FieldError.svelte.d.ts +4 -15
- package/dist/form/Fieldset.svelte +48 -13
- package/dist/form/Fieldset.svelte.d.ts +5 -16
- package/dist/form/Form.svelte +158 -74
- package/dist/form/Form.svelte.d.ts +17 -17
- package/dist/form/{FieldActions.svelte → FormActions.svelte} +29 -17
- package/dist/form/FormActions.svelte.d.ts +9 -0
- package/dist/form/FormSection.svelte +96 -0
- package/dist/form/FormSection.svelte.d.ts +9 -0
- package/dist/form/ImageUpload.svelte +134 -94
- package/dist/form/ImageUpload.svelte.d.ts +5 -16
- package/dist/form/Input.svelte +254 -136
- package/dist/form/Input.svelte.d.ts +12 -21
- package/dist/form/InputLength.svelte +15 -5
- package/dist/form/InputLength.svelte.d.ts +4 -15
- package/dist/form/Label.svelte +55 -11
- package/dist/form/Label.svelte.d.ts +6 -15
- package/dist/form/LogoUpload.svelte +36 -21
- package/dist/form/LogoUpload.svelte.d.ts +4 -15
- package/dist/form/Select.svelte +100 -50
- package/dist/form/Select.svelte.d.ts +5 -16
- package/dist/form/Textarea.svelte +200 -98
- package/dist/form/Textarea.svelte.d.ts +11 -24
- package/dist/form/Toggle.svelte +3 -1
- package/dist/form/Toggle.svelte.d.ts +4 -1
- package/dist/form/client.svelte.d.ts +1 -0
- package/dist/form/client.svelte.js +6 -2
- package/dist/form/form.d.ts +10 -9
- package/dist/form/form.js +37 -32
- package/dist/form/index.d.ts +3 -4
- package/dist/form/index.js +3 -4
- package/dist/form/types.d.ts +9 -16
- package/dist/icons/IconAlert.svelte.d.ts +4 -1
- package/dist/icons/IconCopy.svelte.d.ts +4 -1
- package/dist/icons/IconDone.svelte.d.ts +4 -1
- package/dist/icons/IconError.svelte.d.ts +4 -1
- package/dist/icons/IconHelp.svelte.d.ts +4 -1
- package/dist/icons/IconHide.svelte.d.ts +4 -1
- package/dist/icons/IconInfo.svelte.d.ts +4 -1
- package/dist/icons/IconLink.svelte.d.ts +4 -1
- package/dist/icons/IconMenuBurger.svelte.d.ts +4 -1
- package/dist/icons/IconMenuDots.svelte.d.ts +4 -1
- package/dist/icons/IconSearch.svelte.d.ts +4 -1
- package/dist/icons/IconShow.svelte.d.ts +4 -1
- package/dist/icons/IconSuccess.svelte.d.ts +4 -1
- package/dist/icons/IconWarning.svelte.d.ts +4 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +3 -2
- package/dist/types.d.ts +39 -0
- package/dist/types.js +25 -0
- package/dist/util/StringOrComponent.svelte +20 -0
- package/dist/util/StringOrComponent.svelte.d.ts +8 -0
- package/dist/util/StringOrSnippet.svelte +16 -0
- package/dist/util/StringOrSnippet.svelte.d.ts +8 -0
- package/dist/{utils → util}/dom.js +1 -2
- package/dist/util/locale.d.ts +1 -0
- package/dist/util/locale.js +47 -0
- package/dist/util/settings.d.ts +4 -0
- package/package.json +35 -79
- package/dist/color.css +0 -0
- package/dist/display/Avatar.svelte +0 -61
- package/dist/display/Avatar.svelte.d.ts +0 -19
- package/dist/display/Badge.svelte +0 -91
- package/dist/display/Badge.svelte.d.ts +0 -30
- package/dist/display/Callout.svelte +0 -109
- package/dist/display/Callout.svelte.d.ts +0 -28
- package/dist/display/Close.svelte.d.ts +0 -18
- package/dist/display/Code.svelte +0 -190
- package/dist/display/Code.svelte.d.ts +0 -32
- package/dist/display/ContextTip.svelte +0 -23
- package/dist/display/ContextTip.svelte.d.ts +0 -18
- package/dist/display/DataList.svelte +0 -16
- package/dist/display/DataList.svelte.d.ts +0 -21
- package/dist/display/Details.svelte +0 -49
- package/dist/display/Details.svelte.d.ts +0 -27
- package/dist/display/Hero.svelte +0 -50
- package/dist/display/Hero.svelte.d.ts +0 -26
- package/dist/display/Icon.svelte +0 -39
- package/dist/display/Icon.svelte.d.ts +0 -19
- package/dist/display/IconButton.svelte.d.ts +0 -27
- package/dist/display/Image.svelte +0 -91
- package/dist/display/Image.svelte.d.ts +0 -26
- package/dist/display/Indicator.svelte.d.ts +0 -23
- package/dist/display/Inset.svelte.d.ts +0 -18
- package/dist/display/LineChart.svelte +0 -385
- package/dist/display/LineChart.svelte.d.ts +0 -24
- package/dist/display/LoadingIndicator.svelte +0 -33
- package/dist/display/LoadingIndicator.svelte.d.ts +0 -15
- package/dist/display/Modal.svelte +0 -116
- package/dist/display/Modal.svelte.d.ts +0 -27
- package/dist/display/Notification.svelte.d.ts +0 -23
- package/dist/display/Panel.svelte +0 -23
- package/dist/display/Panel.svelte.d.ts +0 -19
- package/dist/display/Popup.svelte +0 -111
- package/dist/display/Popup.svelte.d.ts +0 -25
- package/dist/display/Stat.svelte +0 -81
- package/dist/display/Stat.svelte.d.ts +0 -30
- package/dist/display/Table.svelte +0 -28
- package/dist/display/Table.svelte.d.ts +0 -24
- package/dist/display/TablePaginator.svelte +0 -51
- package/dist/display/TablePaginator.svelte.d.ts +0 -21
- package/dist/display/Tag.svelte +0 -90
- package/dist/display/Tag.svelte.d.ts +0 -32
- package/dist/display/Tooltip.svelte.d.ts +0 -23
- package/dist/display/chart.d.ts +0 -78
- package/dist/display/chart.js +0 -212
- package/dist/display/index.d.ts +0 -24
- package/dist/display/index.js +0 -24
- package/dist/form/FieldActions.svelte.d.ts +0 -20
- package/dist/form/FieldContainer.svelte +0 -37
- package/dist/form/FieldContainer.svelte.d.ts +0 -19
- package/dist/form/FieldSection.svelte +0 -86
- package/dist/form/FieldSection.svelte.d.ts +0 -20
- package/dist/layout/Layout.svelte +0 -47
- package/dist/layout/Layout.svelte.d.ts +0 -22
- package/dist/layout/LayoutFooter.svelte +0 -21
- package/dist/layout/LayoutFooter.svelte.d.ts +0 -18
- package/dist/layout/LayoutGrid.svelte +0 -51
- package/dist/layout/LayoutGrid.svelte.d.ts +0 -27
- package/dist/layout/LayoutHeader.svelte +0 -97
- package/dist/layout/LayoutHeader.svelte.d.ts +0 -34
- package/dist/layout/LayoutSideMenu.svelte +0 -55
- package/dist/layout/LayoutSideMenu.svelte.d.ts +0 -21
- package/dist/layout/LayoutTypes.d.ts +0 -15
- package/dist/layout/LayoutTypes.js +0 -9
- package/dist/layout/Overlay.svelte +0 -20
- package/dist/layout/Overlay.svelte.d.ts +0 -25
- package/dist/layout/OverlayLayer.svelte +0 -140
- package/dist/layout/OverlayLayer.svelte.d.ts +0 -19
- package/dist/layout/PageContent.svelte +0 -82
- package/dist/layout/PageContent.svelte.d.ts +0 -25
- package/dist/layout/Theme.svelte +0 -243
- package/dist/layout/Theme.svelte.d.ts +0 -19
- package/dist/layout/UIContent.svelte +0 -15
- package/dist/layout/UIContent.svelte.d.ts +0 -18
- package/dist/layout/index.d.ts +0 -11
- package/dist/layout/index.js +0 -11
- package/dist/nav/Breadcrumb.svelte +0 -82
- package/dist/nav/Breadcrumb.svelte.d.ts +0 -28
- package/dist/nav/Menu.svelte +0 -170
- package/dist/nav/Menu.svelte.d.ts +0 -27
- package/dist/nav/MenuItem.svelte.d.ts +0 -22
- package/dist/nav/NavMenu.svelte +0 -181
- package/dist/nav/NavMenu.svelte.d.ts +0 -19
- package/dist/nav/TabbedContent.svelte +0 -43
- package/dist/nav/TabbedContent.svelte.d.ts +0 -23
- package/dist/nav/Tabs.svelte.d.ts +0 -25
- package/dist/nav/index.d.ts +0 -7
- package/dist/nav/index.js +0 -6
- package/dist/style.css +0 -950
- package/dist/typo/Clamp.svelte +0 -25
- package/dist/typo/Clamp.svelte.d.ts +0 -24
- package/dist/typo/H.svelte +0 -52
- package/dist/typo/H.svelte.d.ts +0 -28
- package/dist/typo/H1.svelte +0 -14
- package/dist/typo/H1.svelte.d.ts +0 -26
- package/dist/typo/H2.svelte +0 -14
- package/dist/typo/H2.svelte.d.ts +0 -26
- package/dist/typo/H3.svelte +0 -14
- package/dist/typo/H3.svelte.d.ts +0 -26
- package/dist/typo/H4.svelte +0 -14
- package/dist/typo/H4.svelte.d.ts +0 -26
- package/dist/typo/H5.svelte +0 -14
- package/dist/typo/H5.svelte.d.ts +0 -26
- package/dist/typo/H6.svelte +0 -14
- package/dist/typo/H6.svelte.d.ts +0 -26
- package/dist/typo/P.svelte +0 -34
- package/dist/typo/P.svelte.d.ts +0 -26
- package/dist/typo/index.d.ts +0 -9
- package/dist/typo/index.js +0 -9
- package/dist/utils/StringOrComponent.svelte +0 -14
- package/dist/utils/StringOrComponent.svelte.d.ts +0 -19
- package/dist/utils/StringOrSnippet.svelte +0 -11
- package/dist/utils/StringOrSnippet.svelte.d.ts +0 -19
- package/dist/utils/defaults.d.ts +0 -4
- package/dist/utils/hooks.server.d.ts +0 -2
- package/dist/utils/hooks.server.js +0 -16
- package/dist/utils/id.d.ts +0 -1
- package/dist/utils/id.js +0 -3
- package/dist/utils/index.d.ts +0 -9
- package/dist/utils/index.js +0 -6
- package/dist/utils/isSnippet.d.ts +0 -3
- package/dist/utils/isSnippet.js +0 -11
- /package/dist/{nav → components}/MenuTypes.js +0 -0
- /package/dist/{layout → components}/overlays.svelte.js +0 -0
- /package/dist/{utils → util}/attr.d.ts +0 -0
- /package/dist/{utils → util}/attr.js +0 -0
- /package/dist/{utils → util}/color.d.ts +0 -0
- /package/dist/{utils → util}/color.js +0 -0
- /package/dist/{utils → util}/dom.d.ts +0 -0
- /package/dist/{utils → util}/keyboard.svelte.d.ts +0 -0
- /package/dist/{utils → util}/keyboard.svelte.js +0 -0
- /package/dist/{utils/defaults.js → util/settings.js} +0 -0
- /package/dist/{utils → util}/transitions.d.ts +0 -0
- /package/dist/{utils → util}/transitions.js +0 -0
@@ -0,0 +1,440 @@
|
|
1
|
+
/**
|
2
|
+
* Design Token System for Lutra Components
|
3
|
+
*
|
4
|
+
* Naming Pattern: --{component}-{css-property}[-{state}][--{modifier}]
|
5
|
+
*
|
6
|
+
* Colors: subtlest, subtler, subtle, normal, strong, stronger, strongest
|
7
|
+
* States: selected, checked, disabled, invalid, valid, success, danger, warn, info, loading
|
8
|
+
* Modifiers (double-dash): --hover, --focus, --active, --visited
|
9
|
+
*/
|
10
|
+
|
11
|
+
|
12
|
+
/**
|
13
|
+
* Spacing Scale
|
14
|
+
*/
|
15
|
+
|
16
|
+
@property --base-size { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
17
|
+
|
18
|
+
@property --space-025 { syntax: "<length>"; inherits: true; initial-value: 4px; }
|
19
|
+
@property --space-050 { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
20
|
+
@property --space-075 { syntax: "<length>"; inherits: true; initial-value: 12px; }
|
21
|
+
@property --space-100 { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
22
|
+
@property --space-125 { syntax: "<length>"; inherits: true; initial-value: 20px; }
|
23
|
+
@property --space-150 { syntax: "<length>"; inherits: true; initial-value: 24px; }
|
24
|
+
@property --space-175 { syntax: "<length>"; inherits: true; initial-value: 28px; }
|
25
|
+
@property --space-200 { syntax: "<length>"; inherits: true; initial-value: 32px; }
|
26
|
+
@property --space-225 { syntax: "<length>"; inherits: true; initial-value: 36px; }
|
27
|
+
@property --space-250 { syntax: "<length>"; inherits: true; initial-value: 40px; }
|
28
|
+
@property --space-300 { syntax: "<length>"; inherits: true; initial-value: 48px; }
|
29
|
+
@property --space-350 { syntax: "<length>"; inherits: true; initial-value: 56px; }
|
30
|
+
@property --space-400 { syntax: "<length>"; inherits: true; initial-value: 64px; }
|
31
|
+
@property --space-450 { syntax: "<length>"; inherits: true; initial-value: 72px; }
|
32
|
+
@property --space-500 { syntax: "<length>"; inherits: true; initial-value: 80px; }
|
33
|
+
@property --space-550 { syntax: "<length>"; inherits: true; initial-value: 88px; }
|
34
|
+
@property --space-600 { syntax: "<length>"; inherits: true; initial-value: 96px; }
|
35
|
+
@property --space-700 { syntax: "<length>"; inherits: true; initial-value: 104px; }
|
36
|
+
@property --space-800 { syntax: "<length>"; inherits: true; initial-value: 112px; }
|
37
|
+
@property --space-900 { syntax: "<length>"; inherits: true; initial-value: 120px; }
|
38
|
+
@property --space-1000 { syntax: "<length>"; inherits: true; initial-value: 128px; }
|
39
|
+
|
40
|
+
@property --space-xs { syntax: "<length>"; inherits: true; initial-value: 4px; }
|
41
|
+
@property --space-sm { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
42
|
+
@property --space-md { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
43
|
+
@property --space-lg { syntax: "<length>"; inherits: true; initial-value: 32px; }
|
44
|
+
@property --space-xl { syntax: "<length>"; inherits: true; initial-value: 64px; }
|
45
|
+
|
46
|
+
/**
|
47
|
+
* Fonts
|
48
|
+
*/
|
49
|
+
|
50
|
+
@property --font-family { syntax: "<string>#"; inherits: true; initial-value: "sans-serif"; }
|
51
|
+
@property --font-family-heading { syntax: "<string>#"; inherits: true; initial-value: "sans-serif"; }
|
52
|
+
@property --font-family-mono { syntax: "<string>#"; inherits: true; initial-value: "monospace"; }
|
53
|
+
@property --font-scale { syntax: "<number>"; inherits: true; initial-value: 1.2; }
|
54
|
+
@property --font-size-base { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
55
|
+
|
56
|
+
/* font size */
|
57
|
+
@property --font-size-xs { syntax: "<length>"; inherits: true; initial-value: 0.75em; }
|
58
|
+
@property --font-size-sm { syntax: "<length>"; inherits: true; initial-value: 0.875em; }
|
59
|
+
@property --font-size-p { syntax: "<length>"; inherits: true; initial-value: 1em; }
|
60
|
+
@property --font-size-h6 { syntax: "<length>"; inherits: true; initial-value: 1.25em; }
|
61
|
+
@property --font-size-h5 { syntax: "<length>"; inherits: true; initial-value: 1.5em; }
|
62
|
+
@property --font-size-h4 { syntax: "<length>"; inherits: true; initial-value: 1.75em; }
|
63
|
+
@property --font-size-h3 { syntax: "<length>"; inherits: true; initial-value: 2em; }
|
64
|
+
@property --font-size-h2 { syntax: "<length>"; inherits: true; initial-value: 2.5em; }
|
65
|
+
@property --font-size-h1 { syntax: "<length>"; inherits: true; initial-value: 3em; }
|
66
|
+
@property --font-size-hero { syntax: "<length>"; inherits: true; initial-value: 4em; }
|
67
|
+
@property --font-size-jumbo { syntax: "<length>"; inherits: true; initial-value: 5em; }
|
68
|
+
|
69
|
+
/* font weight */
|
70
|
+
@property --font-weight-thin { syntax: "<number>"; inherits: true; initial-value: 300; }
|
71
|
+
@property --font-weight-light { syntax: "<number>"; inherits: true; initial-value: 400; }
|
72
|
+
@property --font-weight-normal { syntax: "<number>"; inherits: true; initial-value: 500; }
|
73
|
+
@property --font-weight-medium { syntax: "<number>"; inherits: true; initial-value: 600; }
|
74
|
+
@property --font-weight-semibold { syntax: "<number>"; inherits: true; initial-value: 700; }
|
75
|
+
@property --font-weight-bold { syntax: "<number>"; inherits: true; initial-value: 800; }
|
76
|
+
@property --font-weight-black { syntax: "<number>"; inherits: true; initial-value: 900; }
|
77
|
+
|
78
|
+
@property --font-weight-p { syntax: "<number>"; inherits: true; initial-value: 400; }
|
79
|
+
@property --font-weight-h6 { syntax: "<number>"; inherits: true; initial-value: 500; }
|
80
|
+
@property --font-weight-h5 { syntax: "<number>"; inherits: true; initial-value: 600; }
|
81
|
+
@property --font-weight-h4 { syntax: "<number>"; inherits: true; initial-value: 600; }
|
82
|
+
@property --font-weight-h3 { syntax: "<number>"; inherits: true; initial-value: 600; }
|
83
|
+
@property --font-weight-h2 { syntax: "<number>"; inherits: true; initial-value: 700; }
|
84
|
+
@property --font-weight-h1 { syntax: "<number>"; inherits: true; initial-value: 800; }
|
85
|
+
@property --font-weight-hero { syntax: "<number>"; inherits: true; initial-value: 800; }
|
86
|
+
|
87
|
+
/* line height */
|
88
|
+
@property --font-line-height { syntax: "<number>"; inherits: true; initial-value: 1.5; }
|
89
|
+
@property --font-line-height-tight { syntax: "<number>"; inherits: true; initial-value: 1.2; }
|
90
|
+
@property --font-line-height-heading { syntax: "<number>"; inherits: true; initial-value: 1.2; }
|
91
|
+
@property --font-line-height-mono { syntax: "<number>"; inherits: true; initial-value: 1.5; }
|
92
|
+
|
93
|
+
/* text color */
|
94
|
+
@property --text-color-p { syntax: "*"; inherits: true; initial-value: #333333; }
|
95
|
+
@property --text-color-p-subtle { syntax: "*"; inherits: true; initial-value: #666666; }
|
96
|
+
@property --text-color-p-subtler { syntax: "*"; inherits: true; initial-value: #999999; }
|
97
|
+
@property --text-color-p-subtlest { syntax: "*"; inherits: true; initial-value: #cccccc; }
|
98
|
+
|
99
|
+
@property --text-color-heading { syntax: "*"; inherits: true; initial-value: #333333; }
|
100
|
+
@property --text-color-h6 { syntax: "*"; inherits: true; initial-value: #333333; }
|
101
|
+
@property --text-color-h5 { syntax: "*"; inherits: true; initial-value: #333333; }
|
102
|
+
@property --text-color-h4 { syntax: "*"; inherits: true; initial-value: #333333; }
|
103
|
+
@property --text-color-h3 { syntax: "*"; inherits: true; initial-value: #333333; }
|
104
|
+
@property --text-color-h2 { syntax: "*"; inherits: true; initial-value: #333333; }
|
105
|
+
@property --text-color-h1 { syntax: "*"; inherits: true; initial-value: #333333; }
|
106
|
+
@property --text-color-hero { syntax: "*"; inherits: true; initial-value: #333333; }
|
107
|
+
|
108
|
+
/* links */
|
109
|
+
|
110
|
+
@property --link-text-decoration { syntax: "<string>"; inherits: true; initial-value: none; }
|
111
|
+
@property --link-text-decoration-hover { syntax: "<string>"; inherits: true; initial-value: underline; }
|
112
|
+
|
113
|
+
@property --link-color { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
114
|
+
@property --link-color-visited { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
115
|
+
@property --link-color-active { syntax: "*"; inherits: true; initial-value: #1d4ed8; }
|
116
|
+
@property --link-color-hover { syntax: "*"; inherits: true; initial-value: #1d4ed8; }
|
117
|
+
@property --link-color-disabled { syntax: "*"; inherits: true; initial-value: #cccccc; }
|
118
|
+
@property --link-color-loading { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
119
|
+
|
120
|
+
@property --link-icon-size { syntax: "<length>"; inherits: true; initial-value: 24px; }
|
121
|
+
@property --link-icon-order { syntax: "<number>"; inherits: true; initial-value: 1; }
|
122
|
+
|
123
|
+
/**
|
124
|
+
* Borders
|
125
|
+
*/
|
126
|
+
|
127
|
+
@property --border-radius-scale { syntax: "<number>"; inherits: true; initial-value: 1.2; }
|
128
|
+
@property --border-radius-base { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
129
|
+
@property --border-radius-sm { syntax: "<length>"; inherits: true; initial-value: 4px; }
|
130
|
+
@property --border-radius-lg { syntax: "<length>"; inherits: true; initial-value: 12px; }
|
131
|
+
@property --border-size-thin { syntax: "<length>"; inherits: true; initial-value: 1px; }
|
132
|
+
@property --border-size-thick { syntax: "<length>"; inherits: true; initial-value: 2px; }
|
133
|
+
@property --border-style { syntax: "solid | dashed | dotted | double | groove | ridge | inset | outset"; inherits: true; initial-value: solid; }
|
134
|
+
|
135
|
+
@property --border-color { syntax: "*"; inherits: true; initial-value: #d1d5db; }
|
136
|
+
@property --border-color-subtle { syntax: "*"; inherits: true; initial-value: #e2e8f0; }
|
137
|
+
@property --border-color-strong { syntax: "*"; inherits: true; initial-value: #111111; }
|
138
|
+
@property --border-color-stronger { syntax: "*"; inherits: true; initial-value: #111111; }
|
139
|
+
|
140
|
+
@property --border-color-active { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
141
|
+
@property --border-color-inactive { syntax: "*"; inherits: true; initial-value: #d1d5db; }
|
142
|
+
@property --border-color-disabled { syntax: "*"; inherits: true; initial-value: #d1d5db; }
|
143
|
+
@property --border-color-focus { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
144
|
+
@property --border-color-invalid { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
145
|
+
@property --border-color-valid { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
146
|
+
@property --border-color-success { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
147
|
+
@property --border-color-danger { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
148
|
+
@property --border-color-warn { syntax: "*"; inherits: true; initial-value: #ca8a04; }
|
149
|
+
@property --border-color-info { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
150
|
+
@property --border-color-selected { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
151
|
+
@property --border-color-interest { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
152
|
+
@property --border-color-loading { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
153
|
+
|
154
|
+
/**
|
155
|
+
* Forms
|
156
|
+
*/
|
157
|
+
|
158
|
+
@property --form-background { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #ffffff; }
|
159
|
+
@property --form-background-actions { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #ffffff; }
|
160
|
+
@property --form-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
161
|
+
@property --form-border-color { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #d1d5db; }
|
162
|
+
@property --form-border-size { syntax: "<length>"; inherits: true; initial-value: 1px; }
|
163
|
+
@property --form-border-style { syntax: "solid | dashed | dotted | double | groove | ridge | inset | outset"; inherits: true; initial-value: solid; }
|
164
|
+
|
165
|
+
/**
|
166
|
+
* Fields
|
167
|
+
*/
|
168
|
+
|
169
|
+
@property --field-background { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
170
|
+
|
171
|
+
@property --field-background-active { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
172
|
+
@property --field-background-inactive { syntax: "<color>"; inherits: true; initial-value: #f3f4f6; }
|
173
|
+
@property --field-background-disabled { syntax: "<color>"; inherits: true; initial-value: #f3f4f6; }
|
174
|
+
@property --field-background-focus { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
175
|
+
@property --field-background-invalid { syntax: "<color>"; inherits: true; initial-value: #fef2f2; }
|
176
|
+
@property --field-background-valid { syntax: "<color>"; inherits: true; initial-value: #dcfce7; }
|
177
|
+
@property --field-background-success { syntax: "<color>"; inherits: true; initial-value: #dcfce7; }
|
178
|
+
@property --field-background-danger { syntax: "<color>"; inherits: true; initial-value: #fef2f2; }
|
179
|
+
@property --field-background-warn { syntax: "<color>"; inherits: true; initial-value: #fefce8; }
|
180
|
+
@property --field-background-info { syntax: "<color>"; inherits: true; initial-value: #eff6ff; }
|
181
|
+
@property --field-background-selected { syntax: "<color>"; inherits: true; initial-value: #eff6ff; }
|
182
|
+
@property --field-background-interest { syntax: "<color>"; inherits: true; initial-value: #f0f9ff; }
|
183
|
+
@property --field-background-loading { syntax: "<color>"; inherits: true; initial-value: #f0f9ff; }
|
184
|
+
|
185
|
+
@property --field-border-color { syntax: "*"; inherits: true; initial-value: #d1d5db; }
|
186
|
+
@property --field-border-color-active { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
187
|
+
@property --field-border-color-inactive { syntax: "*"; inherits: true; initial-value: #d1d5db; }
|
188
|
+
@property --field-border-color-disabled { syntax: "*"; inherits: true; initial-value: #d1d5db; }
|
189
|
+
@property --field-border-color-focus { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
190
|
+
@property --field-border-color-invalid { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
191
|
+
@property --field-border-color-valid { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
192
|
+
@property --field-border-color-success { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
193
|
+
@property --field-border-color-danger { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
194
|
+
@property --field-border-color-warn { syntax: "*"; inherits: true; initial-value: #ca8a04; }
|
195
|
+
@property --field-border-color-info { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
196
|
+
@property --field-border-color-selected { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
197
|
+
@property --field-border-color-interest { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
198
|
+
@property --field-border-color-loading { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
199
|
+
|
200
|
+
@property --field-border-size { syntax: "<length>"; inherits: true; initial-value: 1px; }
|
201
|
+
@property --field-border-style { syntax: "solid | dashed | dotted | double | groove | ridge | inset | outset"; inherits: true; initial-value: solid; }
|
202
|
+
@property --field-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
203
|
+
|
204
|
+
@property --field-color { syntax: "*"; inherits: true; initial-value: #1a1a1a; }
|
205
|
+
@property --field-color-active { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
206
|
+
@property --field-color-inactive { syntax: "*"; inherits: true; initial-value: #666666; }
|
207
|
+
@property --field-color-disabled { syntax: "*"; inherits: true; initial-value: #cccccc; }
|
208
|
+
@property --field-color-focus { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
209
|
+
@property --field-color-invalid { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
210
|
+
@property --field-color-valid { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
211
|
+
@property --field-color-success { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
212
|
+
@property --field-color-danger { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
213
|
+
@property --field-color-warn { syntax: "*"; inherits: true; initial-value: #ca8a04; }
|
214
|
+
@property --field-color-info { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
215
|
+
@property --field-color-selected { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
216
|
+
@property --field-color-interest { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
217
|
+
@property --field-color-loading { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
218
|
+
|
219
|
+
@property --field-label-color { syntax: "*"; inherits: true; initial-value: #111111; }
|
220
|
+
@property --field-label-font-size { syntax: "<length>"; inherits: true; initial-value: 1em; }
|
221
|
+
@property --field-label-font-weight { syntax: "<number>"; inherits: true; initial-value: 600; }
|
222
|
+
|
223
|
+
@property --field-placeholder-color { syntax: "*"; inherits: true; initial-value: #999999; }
|
224
|
+
@property --field-padding-inline { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
225
|
+
@property --field-padding-block { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
226
|
+
|
227
|
+
@property --field-icon-size { syntax: "<length>"; inherits: true; initial-value: 24px; }
|
228
|
+
@property --field-icon-order { syntax: "<number>"; inherits: true; initial-value: 1; }
|
229
|
+
|
230
|
+
/**
|
231
|
+
* Button Component
|
232
|
+
*/
|
233
|
+
|
234
|
+
@property --button-base-color { syntax: "*"; inherits: true; initial-value: #ffffff; }
|
235
|
+
@property --button-base-color-hover { syntax: "*"; inherits: true; initial-value: #ffffff; }
|
236
|
+
|
237
|
+
/* primary */
|
238
|
+
|
239
|
+
@property --button-submit-color { syntax: "*"; inherits: true; initial-value: #ffffff; }
|
240
|
+
@property --button-submit-color-hover { syntax: "*"; inherits: true; initial-value: #ffffff; }
|
241
|
+
@property --button-submit-color-disabled { syntax: "*"; inherits: true; initial-value: #cccccc; }
|
242
|
+
@property --button-submit-color-focus { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
243
|
+
@property --button-submit-color-loading { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
244
|
+
|
245
|
+
@property --button-submit-background { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
246
|
+
@property --button-submit-background-hover { syntax: "*"; inherits: true; initial-value: #1d4ed8; }
|
247
|
+
@property --button-submit-background-disabled { syntax: "*"; inherits: true; initial-value: #f3f4f6; }
|
248
|
+
@property --button-submit-background-focus { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
249
|
+
@property --button-submit-background-loading { syntax: "*"; inherits: true; initial-value: #f0f9ff; }
|
250
|
+
|
251
|
+
@property --button-submit-border-color { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
252
|
+
@property --button-submit-border-color-hover { syntax: "*"; inherits: true; initial-value: #1d4ed8; }
|
253
|
+
@property --button-submit-border-color-disabled { syntax: "*"; inherits: true; initial-value: #d1d5db; }
|
254
|
+
@property --button-submit-border-color-focus { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
255
|
+
@property --button-submit-border-color-loading { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
256
|
+
|
257
|
+
/* action */
|
258
|
+
@property --button-action-color { syntax: "*"; inherits: true; initial-value: #ffffff; }
|
259
|
+
@property --button-action-color-hover { syntax: "*"; inherits: true; initial-value: #ffffff; }
|
260
|
+
@property --button-action-color-disabled { syntax: "*"; inherits: true; initial-value: #ffffff; }
|
261
|
+
@property --button-action-color-focus { syntax: "*"; inherits: true; initial-value: #ffffff; }
|
262
|
+
@property --button-action-color-loading { syntax: "*"; inherits: true; initial-value: #ffffff; }
|
263
|
+
|
264
|
+
@property --button-action-background { syntax: "*"; inherits: true; initial-value: #111111; }
|
265
|
+
@property --button-action-background-hover { syntax: "*"; inherits: true; initial-value: #111111; }
|
266
|
+
@property --button-action-background-disabled { syntax: "*"; inherits: true; initial-value: #f3f4f6; }
|
267
|
+
@property --button-action-background-focus { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
268
|
+
@property --button-action-background-loading { syntax: "*"; inherits: true; initial-value: #f0f9ff; }
|
269
|
+
|
270
|
+
@property --button-action-border-color { syntax: "*"; inherits: true; initial-value: #111111; }
|
271
|
+
@property --button-action-border-color-hover { syntax: "*"; inherits: true; initial-value: #111111; }
|
272
|
+
@property --button-action-border-color-disabled { syntax: "*"; inherits: true; initial-value: #111111; }
|
273
|
+
@property --button-action-border-color-focus { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
274
|
+
@property --button-action-border-color-loading { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
275
|
+
|
276
|
+
/* danger */
|
277
|
+
@property --button-danger-color { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
278
|
+
@property --button-danger-color-hover { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
279
|
+
@property --button-danger-color-disabled { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
280
|
+
@property --button-danger-color-focus { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
281
|
+
@property --button-danger-color-loading { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
282
|
+
|
283
|
+
@property --button-danger-background { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
284
|
+
@property --button-danger-background-hover { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
285
|
+
@property --button-danger-background-disabled { syntax: "*"; inherits: true; initial-value: #f3f4f6; }
|
286
|
+
@property --button-danger-background-focus { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
287
|
+
@property --button-danger-background-loading { syntax: "*"; inherits: true; initial-value: #f0f9ff; }
|
288
|
+
|
289
|
+
@property --button-danger-border-color { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
290
|
+
@property --button-danger-border-color-hover { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
291
|
+
@property --button-danger-border-color-disabled { syntax: "*"; inherits: true; initial-value: #d1d5db; }
|
292
|
+
@property --button-danger-border-color-focus { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
293
|
+
@property --button-danger-border-color-loading { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
294
|
+
|
295
|
+
/* success */
|
296
|
+
@property --button-success-color { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
297
|
+
@property --button-success-color-hover { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
298
|
+
@property --button-success-color-disabled { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
299
|
+
@property --button-success-color-focus { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
300
|
+
@property --button-success-color-loading { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
301
|
+
|
302
|
+
@property --button-success-background { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
303
|
+
@property --button-success-background-hover { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
304
|
+
@property --button-success-background-disabled { syntax: "*"; inherits: true; initial-value: #f3f4f6; }
|
305
|
+
@property --button-success-background-focus { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
306
|
+
@property --button-success-background-loading { syntax: "*"; inherits: true; initial-value: #f0f9ff; }
|
307
|
+
|
308
|
+
@property --button-success-border-color { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
309
|
+
@property --button-success-border-color-hover { syntax: "*"; inherits: true; initial-value: #16a34a; }
|
310
|
+
@property --button-success-border-color-disabled { syntax: "*"; inherits: true; initial-value: #d1d5db; }
|
311
|
+
@property --button-success-border-color-focus { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
312
|
+
@property --button-success-border-color-loading { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
313
|
+
|
314
|
+
@property --button-border-size { syntax: "<length>"; inherits: true; initial-value: 1px; }
|
315
|
+
@property --button-border-style { syntax: "solid | dashed | dotted | double | groove | ridge | inset | outset"; inherits: true; initial-value: solid; }
|
316
|
+
@property --button-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
317
|
+
|
318
|
+
@property --button-padding-inline { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
319
|
+
@property --button-padding-block { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
320
|
+
@property --button-padding { syntax: "*"; inherits: true; initial-value: 8px; }
|
321
|
+
@property --button-border { syntax: "*"; inherits: true; initial-value: none; }
|
322
|
+
|
323
|
+
@property --button-font-weight { syntax: "<number>"; inherits: true; initial-value: 500; }
|
324
|
+
|
325
|
+
@property --button-icon-size { syntax: "<length>"; inherits: true; initial-value: 24px; }
|
326
|
+
@property --button-icon-order { syntax: "<number>"; inherits: true; initial-value: 1; }
|
327
|
+
|
328
|
+
/**
|
329
|
+
* Shadows
|
330
|
+
*/
|
331
|
+
|
332
|
+
@property --shadow-color { syntax: "*"; inherits: true; initial-value: rgba(0, 0, 0, 0.1); }
|
333
|
+
@property --shadow-base { syntax: "<shadow>"; inherits: true; initial-value: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
|
334
|
+
|
335
|
+
/**
|
336
|
+
* Code
|
337
|
+
*/
|
338
|
+
|
339
|
+
@property --code-background { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #f8fafc; }
|
340
|
+
@property --code-color { syntax: "*"; inherits: true; initial-value: #1a1a1a; }
|
341
|
+
@property --code-border-color { syntax: "*"; inherits: true; initial-value: #d1d5db; }
|
342
|
+
@property --code-border-size { syntax: "<length>"; inherits: true; initial-value: 0; }
|
343
|
+
@property --code-border-style { syntax: "solid | dashed | dotted | double | groove | ridge | inset | outset"; inherits: true; initial-value: solid; }
|
344
|
+
@property --code-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
345
|
+
|
346
|
+
@property --code-padding-inline { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
347
|
+
@property --code-padding-block { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
348
|
+
|
349
|
+
/**
|
350
|
+
* Backgrounds
|
351
|
+
*/
|
352
|
+
|
353
|
+
@property --background-body { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #ffffff; }
|
354
|
+
@property --background-main { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #ffffff; }
|
355
|
+
@property --background-main-subtle { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #f8fafc; }
|
356
|
+
|
357
|
+
@property --background-active { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #2563eb; }
|
358
|
+
@property --background-inactive { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #f3f4f6; }
|
359
|
+
@property --background-disabled { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #f3f4f6; }
|
360
|
+
@property --background-focus { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #2563eb; }
|
361
|
+
@property --background-invalid { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #fef2f2; }
|
362
|
+
@property --background-valid { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #dcfce7; }
|
363
|
+
@property --background-success { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #dcfce7; }
|
364
|
+
@property --background-danger { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #fef2f2; }
|
365
|
+
@property --background-warn { syntax: "<color>"; inherits: true; initial-value: #fefce8; }
|
366
|
+
@property --background-info { syntax: "<color>"; inherits: true; initial-value: #eff6ff; }
|
367
|
+
@property --background-selected { syntax: "<color>"; inherits: true; initial-value: #eff6ff; }
|
368
|
+
@property --background-interest { syntax: "<color>"; inherits: true; initial-value: #f0f9ff; }
|
369
|
+
@property --background-loading { syntax: "<color>"; inherits: true; initial-value: #f0f9ff; }
|
370
|
+
|
371
|
+
/**
|
372
|
+
* Status Colors
|
373
|
+
*/
|
374
|
+
|
375
|
+
@property --status-default-background { syntax: "<color>"; inherits: true; initial-value: #111111; }
|
376
|
+
@property --status-default-color { syntax: "<color>"; inherits: true; initial-value: #111111; }
|
377
|
+
@property --status-ok-background { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
378
|
+
@property --status-ok-color { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
379
|
+
@property --status-alert-background { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
380
|
+
@property --status-alert-color { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
381
|
+
@property --status-warn-background { syntax: "<color>"; inherits: true; initial-value: #ca8a04; }
|
382
|
+
@property --status-warn-color { syntax: "<color>"; inherits: true; initial-value: #ca8a04; }
|
383
|
+
@property --status-info-background { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
384
|
+
@property --status-info-color { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
385
|
+
@property --status-task-background { syntax: "<color>"; inherits: true; initial-value: #7c3aed; }
|
386
|
+
@property --status-task-color { syntax: "<color>"; inherits: true; initial-value: #7c3aed; }
|
387
|
+
|
388
|
+
/**
|
389
|
+
* Focus
|
390
|
+
*/
|
391
|
+
|
392
|
+
@property --focus-ring { syntax: "*"; inherits: true; initial-value: 2px solid #2563eb; }
|
393
|
+
@property --focus-ring-size { syntax: "<length>"; inherits: true; initial-value: 2px; }
|
394
|
+
@property --focus-ring-color { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
395
|
+
@property --focus-ring-color-invalid { syntax: "*"; inherits: true; initial-value: #dc2626; }
|
396
|
+
@property --focus-ring-offset { syntax: "<length>"; inherits: true; initial-value: 0px; }
|
397
|
+
|
398
|
+
/**
|
399
|
+
* Transitions
|
400
|
+
*/
|
401
|
+
|
402
|
+
@property --transition-duration-fast { syntax: "<time>"; inherits: true; initial-value: 0.15s; }
|
403
|
+
@property --transition-duration-base { syntax: "<time>"; inherits: true; initial-value: 0.3s; }
|
404
|
+
@property --transition-duration-slow { syntax: "<time>"; inherits: true; initial-value: 0.5s; }
|
405
|
+
@property --transition-timing-function { syntax: "*"; inherits: true; initial-value: cubic-bezier(0.4, 0, 0.2, 1); }
|
406
|
+
|
407
|
+
/**
|
408
|
+
* Tooltips
|
409
|
+
*/
|
410
|
+
|
411
|
+
@property --tooltip-background { syntax: "<color># | <image># | <gradient>#"; inherits: true; initial-value: #ffffff; }
|
412
|
+
@property --tooltip-color { syntax: "*"; inherits: true; initial-value: #1a1a1a; }
|
413
|
+
@property --tooltip-border-color { syntax: "*"; inherits: true; initial-value: #d1d5db; }
|
414
|
+
@property --tooltip-border-size { syntax: "<length>"; inherits: true; initial-value: 0; }
|
415
|
+
@property --tooltip-border-style { syntax: "solid | dashed | dotted | double | groove | ridge | inset | outset"; inherits: true; initial-value: solid; }
|
416
|
+
@property --tooltip-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
417
|
+
@property --tooltip-shadow-color { syntax: "*"; inherits: true; initial-value: #000000; }
|
418
|
+
|
419
|
+
/**
|
420
|
+
* Notifications
|
421
|
+
*/
|
422
|
+
|
423
|
+
@property --notification-background-color { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
424
|
+
@property --notification-border-color { syntax: "*"; inherits: true; initial-value: #cccccc; }
|
425
|
+
@property --notification-border-size { syntax: "<length>"; inherits: true; initial-value: 1px; }
|
426
|
+
@property --notification-border-style { syntax: "solid | dashed | dotted | double | groove | ridge | inset | outset"; inherits: true; initial-value: solid; }
|
427
|
+
@property --notification-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
428
|
+
|
429
|
+
/**
|
430
|
+
* Menu
|
431
|
+
*/
|
432
|
+
|
433
|
+
@property --menu-background-color { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
434
|
+
@property --menu-background-color-hover { syntax: "<color>"; inherits: true; initial-value: #dde8f2; }
|
435
|
+
@property --menu-text-color { syntax: "*"; inherits: true; initial-value: #1a1a1a; }
|
436
|
+
@property --menu-text-color-subtle { syntax: "*"; inherits: true; initial-value: #666666; }
|
437
|
+
@property --menu-border-color { syntax: "*"; inherits: true; initial-value: #cccccc; }
|
438
|
+
@property --menu-border-size { syntax: "<length>"; inherits: true; initial-value: 1px; }
|
439
|
+
@property --menu-border-style { syntax: "solid | dashed | dotted | double | groove | ridge | inset | outset"; inherits: true; initial-value: solid; }
|
440
|
+
@property --menu-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|