@utahdts/utah-design-system 0.0.1
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 +54 -0
- package/css/1-settings/_class-vars.scss +11 -0
- package/css/1-settings/_color-swatches.scss +422 -0
- package/css/1-settings/_font-stuff.scss +48 -0
- package/css/1-settings/_grid.scss +39 -0
- package/css/1-settings/_icons.scss +6 -0
- package/css/1-settings/_settings-index.scss +116 -0
- package/css/1-settings/_spacing.scss +70 -0
- package/css/2-tools/_tools-index.scss +47 -0
- package/css/3-generic/_generic-index.scss +4 -0
- package/css/3-generic/normalize.css +349 -0
- package/css/4-elements/_elements-index.scss +89 -0
- package/css/5-objects/_objects-index.scss +9 -0
- package/css/6-components/_components-index.scss +31 -0
- package/css/6-components/base-components/buttons/_button.scss +401 -0
- package/css/6-components/base-components/buttons/_icon-button.scss +54 -0
- package/css/6-components/base-components/containers/_accordion.scss +31 -0
- package/css/6-components/base-components/containers/_tab-group.scss +57 -0
- package/css/6-components/base-components/forms/_checkbox.scss +67 -0
- package/css/6-components/base-components/forms/_info-box.scss +23 -0
- package/css/6-components/base-components/forms/_input-wrapper.scss +9 -0
- package/css/6-components/base-components/forms/_input.scss +10 -0
- package/css/6-components/base-components/forms/_radio-button.scss +60 -0
- package/css/6-components/base-components/forms/_select-input.scss +18 -0
- package/css/6-components/base-components/forms/_switch.scss +191 -0
- package/css/6-components/base-components/forms/_text-input.scss +15 -0
- package/css/6-components/base-components/navigation/_main-menu.scss +69 -0
- package/css/6-components/base-components/navigation/_menu-item.scss +44 -0
- package/css/6-components/base-components/navigation/_side-panel-navigation.scss +83 -0
- package/css/6-components/base-components/tablesAndLists/_table.scss +52 -0
- package/css/6-components/base-components/templates/_documenation-template.scss +50 -0
- package/css/6-components/base-components/templates/_landing-page-template.scss +8 -0
- package/css/6-components/base-components/templates/_on-this-page.scss +33 -0
- package/css/6-components/base-components/widgetsInicators/_spinner.scss +38 -0
- package/css/6-components/project-components/_popup.scss +22 -0
- package/css/6-components/project-components/_swatch-list.scss +41 -0
- package/css/7-utilities/_animation.scss +41 -0
- package/css/7-utilities/_utilities-index.scss +119 -0
- package/css/8-super/_print.scss +38 -0
- package/css/8-super/_super-index.scss +6 -0
- package/css/9-tip/_tip-index.scss +6 -0
- package/css/build/utah-design-system.css +2374 -0
- package/css/index.scss +52 -0
- package/index.js +117 -0
- package/package.json +55 -0
- package/react/components/buttons/Button.jsx +103 -0
- package/react/components/buttons/IconButton.jsx +36 -0
- package/react/components/buttons/SegmentedButton.jsx +1 -0
- package/react/components/containers/accordion/Accordion.jsx +67 -0
- package/react/components/containers/tabs/Tab.jsx +53 -0
- package/react/components/containers/tabs/TabGroup.jsx +66 -0
- package/react/components/containers/tabs/TabGroupContext.jsx +3 -0
- package/react/components/containers/tabs/TabGroupTitle.jsx +28 -0
- package/react/components/containers/tabs/TabList.jsx +31 -0
- package/react/components/containers/tabs/TabPanel.jsx +41 -0
- package/react/components/containers/tabs/TabPanels.jsx +20 -0
- package/react/components/forms/CheckBox.jsx +79 -0
- package/react/components/forms/ErrorMessage.jsx +25 -0
- package/react/components/forms/Form.jsx +68 -0
- package/react/components/forms/FormContext.jsx +3 -0
- package/react/components/forms/FormContextProvider.jsx +87 -0
- package/react/components/forms/PLACEHOLDER.md +1 -0
- package/react/components/forms/Select.jsx +85 -0
- package/react/components/forms/SelectOption.jsx +42 -0
- package/react/components/forms/Switch.jsx +122 -0
- package/react/components/forms/TextInput.jsx +80 -0
- package/react/components/icons/Icons.jsx +7 -0
- package/react/components/lists/PLACEHOLDER.md +1 -0
- package/react/components/map/PLACEHOLDER.md +1 -0
- package/react/components/navigation/HorizontalMenu.jsx +46 -0
- package/react/components/navigation/MainMenu.jsx +28 -0
- package/react/components/navigation/MenuItem.jsx +116 -0
- package/react/components/navigation/OnThisPage.jsx +34 -0
- package/react/components/navigation/OnThisPageHeadersLevel.jsx +35 -0
- package/react/components/navigation/SidePanelNavigation.jsx +41 -0
- package/react/components/navigation/util/findElementsByTagNameMatch.js +11 -0
- package/react/components/navigation/util/groupElementsByHeaderLevel.js +41 -0
- package/react/components/popups/PLACEHOLDER.md +1 -0
- package/react/components/table/Table.jsx +34 -0
- package/react/components/table/TableBody.jsx +35 -0
- package/react/components/table/TableBodyData.jsx +91 -0
- package/react/components/table/TableBodyDataCellTemplate.jsx +73 -0
- package/react/components/table/TableBodyDataRowContext.jsx +3 -0
- package/react/components/table/TableBodyDataRowTemplate.jsx +56 -0
- package/react/components/table/TableCell.jsx +50 -0
- package/react/components/table/TableContext.jsx +3 -0
- package/react/components/table/TableFilterCustom.jsx +34 -0
- package/react/components/table/TableFilterNone.jsx +34 -0
- package/react/components/table/TableFilterSelect.jsx +34 -0
- package/react/components/table/TableFilterSelectOption.jsx +34 -0
- package/react/components/table/TableFilterTextInput.jsx +64 -0
- package/react/components/table/TableFilters.jsx +88 -0
- package/react/components/table/TableFoot.jsx +34 -0
- package/react/components/table/TableFootCell.jsx +34 -0
- package/react/components/table/TableFootRow.jsx +34 -0
- package/react/components/table/TableHead.jsx +39 -0
- package/react/components/table/TableHeadCell.jsx +79 -0
- package/react/components/table/TableHeadRow.jsx +34 -0
- package/react/components/table/TableRow.jsx +49 -0
- package/react/components/table/TableSortingRule.jsx +55 -0
- package/react/components/table/TableSortingRules.jsx +64 -0
- package/react/components/table/TableWrapper.jsx +128 -0
- package/react/components/table/useCurrentValuesFromStateContext.js +73 -0
- package/react/components/templates/DocumentationTemplate.jsx +52 -0
- package/react/components/templates/LandingTemplate.jsx +29 -0
- package/react/components/utahHeader/UtahHeader.jsx +25 -0
- package/react/components/utahHeader/UtahUnbrand.jsx +50 -0
- package/react/components/widgetsIndicators/Spinner.jsx +71 -0
- package/react/enums/formElementSizesEnum.js +9 -0
- package/react/enums/tableSortingRuleFieldType.js +9 -0
- package/react/hooks/forms/useCurrentValuesFromForm.js +44 -0
- package/react/hooks/useBanner.js +6 -0
- package/react/hooks/useCurrentMenuItem.js +29 -0
- package/react/hooks/usePrepMenuItems.js +24 -0
- package/react/hooks/useRefAlways.js +8 -0
- package/react/hooks/useRefLazy.js +11 -0
- package/react/hooks/useScrollPosition.js +18 -0
- package/react/hooks/useStateEffect.js +43 -0
- package/react/propTypesShapes/MenuItemShape.js +20 -0
- package/react/propTypesShapes/MenuItemsShape.js +4 -0
- package/react/propTypesShapes/MenuShape.js +10 -0
- package/react/propTypesShapes/RefShape.js +9 -0
- package/react/util/arrayMatchRecursive.js +21 -0
- package/react/util/chainSorters.js +19 -0
- package/react/util/handleEvent.js +25 -0
- package/react/util/handleKeyPress.js +1 -0
- package/react/util/joinClassNames.js +23 -0
- package/react/util/menuItems/calculateMenuItemsParents.js +54 -0
- package/react/util/menuItems/findMenuItemInMenusByPathname.js +25 -0
- package/react/util/onKeyPress.js +12 -0
- package/react/util/rectContainsPoint.js +7 -0
- package/react/util/state/setValueAtPath.js +80 -0
- package/react/util/state/valueAtPath.js +5 -0
- package/react/util/stringToId.js +11 -0
package/README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# utah-design-system
|
|
2
|
+
|
|
3
|
+
A collection of styles and react components designed to make it quick and simple for developers to create web experiences using the Utah Design System.
|
|
4
|
+
|
|
5
|
+
## What's included
|
|
6
|
+
|
|
7
|
+
- Compiled CSS
|
|
8
|
+
- SASS CSS
|
|
9
|
+
- React components
|
|
10
|
+
|
|
11
|
+
## Documentation
|
|
12
|
+
|
|
13
|
+
Please see the [documentation site](https://utahdts.github.io/utah-design-system/) for all information related to the Utah Design System.
|
|
14
|
+
|
|
15
|
+
## Install
|
|
16
|
+
|
|
17
|
+
[](https://github.com/utahdts/utah-design-system/actions/workflows/dev-pages-deploy.yml)
|
|
18
|
+
[](https://www.npmjs.com/package/@utahdts/utah-design-system)
|
|
19
|
+
[](https://www.apache.org/licenses/LICENSE-2.0)
|
|
20
|
+
[](https://github.com/utahdts/utah-design-system/issues)
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
$ npm i @utahdts/utah-design-system
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### Using the React components
|
|
27
|
+
|
|
28
|
+
```JavaScript
|
|
29
|
+
import { DocumentationTemplate, LandingTemplate } from '@utahdts/utah-design-system';
|
|
30
|
+
import OnThisPage from '@utahdts/utah-design-system/react/components/navigation/OnThisPage';
|
|
31
|
+
import SidePanelNavigation from '@utahdts/utah-design-system/react/components/navigation/SidePanelNavigation';
|
|
32
|
+
import useCurrentMenuItem from '@utahdts/utah-design-system/react/hooks/useCurrentMenuItem';
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### Using the files in Sass
|
|
36
|
+
|
|
37
|
+
In most cases you can simply import the Sass file as illustrated below:
|
|
38
|
+
|
|
39
|
+
```scss
|
|
40
|
+
@import "~@utahdts/utah-design-system/css/6-components/base-components/buttons/button.scss";
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Pre-processed bundled resource
|
|
44
|
+
|
|
45
|
+
At a limited scale, some files have been pre-processed to CSS so that it can be delivered via CDN and used in environments where this rendered resource is required.
|
|
46
|
+
|
|
47
|
+
```
|
|
48
|
+
unpkg.com/:package@:version/:file
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
| resource | supports | CDN URL |
|
|
52
|
+
|-------------------------|---|-----------------------------------------------------------------------------------------|
|
|
53
|
+
| index.scss<br>(All CSS) |Auro WCs| https://unpkg.com/@utahdts/utah-design-system@:version/css/build/utah-design-system.css |
|
|
54
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/*
|
|
2
|
+
############ _settings-index.scss ############
|
|
3
|
+
CSS Class Variables
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
$base-class: ".utah-design-system";
|
|
7
|
+
|
|
8
|
+
$primary-color-is-light: ".primary-color-is-light";
|
|
9
|
+
$secondary-color-is-light: ".secondary-color-is-light";
|
|
10
|
+
$accent-color-is-light: ".accent-color-is-light";
|
|
11
|
+
$color-is-light: ".color-is-light";
|
|
@@ -0,0 +1,422 @@
|
|
|
1
|
+
/*
|
|
2
|
+
############ _color-swatches.scss ############
|
|
3
|
+
base color swatches for the design system
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
$purple_00: #503854;
|
|
7
|
+
$purple_01: #4e2d53;
|
|
8
|
+
$purple_02: #4c2353;
|
|
9
|
+
$purple_03: #4a1952;
|
|
10
|
+
$purple_04: #490f52;
|
|
11
|
+
$purple_05: #56205e;
|
|
12
|
+
$purple_06: #63316a;
|
|
13
|
+
$purple_07: #704277;
|
|
14
|
+
$purple_08: #7d5383;
|
|
15
|
+
$purple_09: #8a648f;
|
|
16
|
+
$purple_10: #97759c;
|
|
17
|
+
$purple_11: #a487a8;
|
|
18
|
+
$purple_12: #b198b4;
|
|
19
|
+
$purple_13: #bea9c1;
|
|
20
|
+
$purple_14: #cbbacd;
|
|
21
|
+
$purple_15: #d8cbd9;
|
|
22
|
+
$purple_16: #e5dce6;
|
|
23
|
+
$purple_17: #f2edf2;
|
|
24
|
+
|
|
25
|
+
$light-purple-00: #4e3250;
|
|
26
|
+
$light-purple-01: #622f65;
|
|
27
|
+
$light-purple-02: #772c7a;
|
|
28
|
+
$light-purple-03: #8b298f;
|
|
29
|
+
$light-purple-04: #a027a5;
|
|
30
|
+
$light-purple-05: #a636ab;
|
|
31
|
+
$light-purple-06: #ad45b1;
|
|
32
|
+
$light-purple-07: #b455b8;
|
|
33
|
+
$light-purple-08: #bb64be;
|
|
34
|
+
$light-purple-09: #c174c5;
|
|
35
|
+
$light-purple-10: #c883cb;
|
|
36
|
+
$light-purple-11: #cf93d2;
|
|
37
|
+
$light-purple-12: #d6a2d8;
|
|
38
|
+
$light-purple-13: #ddb1de;
|
|
39
|
+
$light-purple-14: #e3c1e5;
|
|
40
|
+
$light-purple-15: #ead0eb;
|
|
41
|
+
$light-purple-16: #f1e0f2;
|
|
42
|
+
$light-purple-17: #f8eff8;
|
|
43
|
+
|
|
44
|
+
$slate-00: #3b3c52;
|
|
45
|
+
$slate-01: #3b3d59;
|
|
46
|
+
$slate-02: #3c3e61;
|
|
47
|
+
$slate-03: #3d3f68;
|
|
48
|
+
$slate-04: #3e4070;
|
|
49
|
+
$slate-05: #4b4d7a;
|
|
50
|
+
$slate-06: #595b84;
|
|
51
|
+
$slate-07: #67688e;
|
|
52
|
+
$slate-08: #757698;
|
|
53
|
+
$slate-09: #8284a3;
|
|
54
|
+
$slate-10: #9091ad;
|
|
55
|
+
$slate-11: #9e9fb7;
|
|
56
|
+
$slate-12: #acadc1;
|
|
57
|
+
$slate-13: #babacb;
|
|
58
|
+
$slate-14: #c7c8d6;
|
|
59
|
+
$slate-15: #d5d6e0;
|
|
60
|
+
$slate-16: #e3e3ea;
|
|
61
|
+
$slate-17: #f1f1f4;
|
|
62
|
+
|
|
63
|
+
$indigo-00: #343e51;
|
|
64
|
+
$indigo-01: #2a4058;
|
|
65
|
+
$indigo-02: #214360;
|
|
66
|
+
$indigo-03: #174667;
|
|
67
|
+
$indigo-04: #0e496f;
|
|
68
|
+
$indigo-05: #1f5679;
|
|
69
|
+
$indigo-06: #306383;
|
|
70
|
+
$indigo-07: #41708d;
|
|
71
|
+
$indigo-08: #527d98;
|
|
72
|
+
$indigo-09: #648aa2;
|
|
73
|
+
$indigo-10: #7597ac;
|
|
74
|
+
$indigo-11: #86a4b7;
|
|
75
|
+
$indigo-12: #97b1c1;
|
|
76
|
+
$indigo-13: #a8becb;
|
|
77
|
+
$indigo-14: #bacbd5;
|
|
78
|
+
$indigo-15: #cbd8e0;
|
|
79
|
+
$indigo-16: #dce5ea;
|
|
80
|
+
$indigo-17: #edf2f4;
|
|
81
|
+
|
|
82
|
+
$azul-00: #2f3d5a;
|
|
83
|
+
$azul-01: #29447c;
|
|
84
|
+
$azul-02: #234b9e;
|
|
85
|
+
$azul-03: #1d52c0;
|
|
86
|
+
$azul-04: #175ae2;
|
|
87
|
+
$azul-05: #2765e4;
|
|
88
|
+
$azul-06: #3871e6;
|
|
89
|
+
$azul-07: #487de8;
|
|
90
|
+
$azul-08: #5989ea;
|
|
91
|
+
$azul-09: #6994ec;
|
|
92
|
+
$azul-10: #7aa0ee;
|
|
93
|
+
$azul-11: #8bacf0;
|
|
94
|
+
$azul-12: #9bb8f2;
|
|
95
|
+
$azul-13: #acc4f4;
|
|
96
|
+
$azul-14: #bccff6;
|
|
97
|
+
$azul-15: #cddbf8;
|
|
98
|
+
$azul-16: #dde7fa;
|
|
99
|
+
$azul-17: #eef3fc;
|
|
100
|
+
|
|
101
|
+
$celadon-blue-00: #27424b;
|
|
102
|
+
$celadon-blue-01: #205162;
|
|
103
|
+
$celadon-blue-02: #1a6179;
|
|
104
|
+
$celadon-blue-03: #147090;
|
|
105
|
+
$celadon-blue-04: #0e80a7;
|
|
106
|
+
$celadon-blue-05: #1f89ad;
|
|
107
|
+
$celadon-blue-06: #3092b3;
|
|
108
|
+
$celadon-blue-07: #419bb9;
|
|
109
|
+
$celadon-blue-08: #52a4c0;
|
|
110
|
+
$celadon-blue-09: #64adc6;
|
|
111
|
+
$celadon-blue-10: #75b6cc;
|
|
112
|
+
$celadon-blue-11: #86bfd3;
|
|
113
|
+
$celadon-blue-12: #97c8d9;
|
|
114
|
+
$celadon-blue-13: #a8d1df;
|
|
115
|
+
$celadon-blue-14: #badae5;
|
|
116
|
+
$celadon-blue-15: #cbe3ec;
|
|
117
|
+
$celadon-blue-16: #dcecf2;
|
|
118
|
+
$celadon-blue-17: #edf5f8;
|
|
119
|
+
|
|
120
|
+
$celadon-green-00: #2a423f;
|
|
121
|
+
$celadon-green-01: #26524d;
|
|
122
|
+
$celadon-green-02: #23635b;
|
|
123
|
+
$celadon-green-03: #1f7369;
|
|
124
|
+
$celadon-green-04: #1c8478;
|
|
125
|
+
$celadon-green-05: #2c8c81;
|
|
126
|
+
$celadon-green-06: #3c958b;
|
|
127
|
+
$celadon-green-07: #4c9e94;
|
|
128
|
+
$celadon-green-08: #5ca79e;
|
|
129
|
+
$celadon-green-09: #6dafa8;
|
|
130
|
+
$celadon-green-10: #7db8b1;
|
|
131
|
+
$celadon-green-11: #8dc1bb;
|
|
132
|
+
$celadon-green-12: #9dcac5;
|
|
133
|
+
$celadon-green-13: #add3ce;
|
|
134
|
+
$celadon-green-14: #bedbd8;
|
|
135
|
+
$celadon-green-15: #cee4e2;
|
|
136
|
+
$celadon-green-16: #deedeb;
|
|
137
|
+
$celadon-green-17: #eef6f5;
|
|
138
|
+
|
|
139
|
+
$pine-green-00:#244334;
|
|
140
|
+
$pine-green-01:#1d5037;
|
|
141
|
+
$pine-green-02:#165d3b;
|
|
142
|
+
$pine-green-03:#0f6a3f;
|
|
143
|
+
$pine-green-04:#097843;
|
|
144
|
+
$pine-green-05:#1a8150;
|
|
145
|
+
$pine-green-06:#2c8b5d;
|
|
146
|
+
$pine-green-07:#3d946b;
|
|
147
|
+
$pine-green-08:#4f9e78;
|
|
148
|
+
$pine-green-09:#60a886;
|
|
149
|
+
$pine-green-10:#72b193;
|
|
150
|
+
$pine-green-11:#84bba1;
|
|
151
|
+
$pine-green-12:#95c5ae;
|
|
152
|
+
$pine-green-13:#a7cebb;
|
|
153
|
+
$pine-green-14:#b8d8c9;
|
|
154
|
+
$pine-green-15:#cae2d6;
|
|
155
|
+
$pine-green-16:#dbebe4;
|
|
156
|
+
$pine-green-17:#edf5f1;
|
|
157
|
+
|
|
158
|
+
$aspen-green-00:#2e4326;
|
|
159
|
+
$aspen-green-01:#2e4e21;
|
|
160
|
+
$aspen-green-02:#2e5a1d;
|
|
161
|
+
$aspen-green-03:#2e6518;
|
|
162
|
+
$aspen-green-04:#2e7114;
|
|
163
|
+
$aspen-green-05:#3c7b24;
|
|
164
|
+
$aspen-green-06:#4b8535;
|
|
165
|
+
$aspen-green-07:#5a8f46;
|
|
166
|
+
$aspen-green-08:#699957;
|
|
167
|
+
$aspen-green-09:#78a367;
|
|
168
|
+
$aspen-green-10:#87ad78;
|
|
169
|
+
$aspen-green-11:#96b889;
|
|
170
|
+
$aspen-green-12:#a5c29a;
|
|
171
|
+
$aspen-green-13:#b4ccab;
|
|
172
|
+
$aspen-green-14:#c3d6bb;
|
|
173
|
+
$aspen-green-15:#d2e0cc;
|
|
174
|
+
$aspen-green-16:#e1eadd;
|
|
175
|
+
$aspen-green-17:#f0f4ee;
|
|
176
|
+
|
|
177
|
+
$raptor-rock-00:#4b3b27;
|
|
178
|
+
$raptor-rock-01:#634520;
|
|
179
|
+
$raptor-rock-02:#7b501a;
|
|
180
|
+
$raptor-rock-03:#935a13;
|
|
181
|
+
$raptor-rock-04:#ac650d;
|
|
182
|
+
$raptor-rock-05:#b1701e;
|
|
183
|
+
$raptor-rock-06:#b77b2f;
|
|
184
|
+
$raptor-rock-07:#bd8640;
|
|
185
|
+
$raptor-rock-08:#c39152;
|
|
186
|
+
$raptor-rock-09:#c99c63;
|
|
187
|
+
$raptor-rock-10:#cfa774;
|
|
188
|
+
$raptor-rock-11:#d5b286;
|
|
189
|
+
$raptor-rock-12:#dbbd97;
|
|
190
|
+
$raptor-rock-13:#e1c8a8;
|
|
191
|
+
$raptor-rock-14:#e7d3b9;
|
|
192
|
+
$raptor-rock-15:#eddecb;
|
|
193
|
+
$raptor-rock-16:#f3e9dc;
|
|
194
|
+
$raptor-rock-17:#f9f4ed;
|
|
195
|
+
|
|
196
|
+
$orange-00:#543623;
|
|
197
|
+
$orange-01:#713c1a;
|
|
198
|
+
$orange-02:#8f4211;
|
|
199
|
+
$orange-03:#ad4808;
|
|
200
|
+
$orange-04:#cb4e00;
|
|
201
|
+
$orange-05:#ce5a12;
|
|
202
|
+
$orange-06:#d26724;
|
|
203
|
+
$orange-07:#d67336;
|
|
204
|
+
$orange-08:#d98048;
|
|
205
|
+
$orange-09:#dd8d5b;
|
|
206
|
+
$orange-10:#e1996d;
|
|
207
|
+
$orange-11:#e5a67f;
|
|
208
|
+
$orange-12:#e8b391;
|
|
209
|
+
$orange-13:#ecbfa3;
|
|
210
|
+
$orange-14:#f0ccb6;
|
|
211
|
+
$orange-15:#f3d9c8;
|
|
212
|
+
$orange-16:#f7e5da;
|
|
213
|
+
$orange-17:#fbf2ec;
|
|
214
|
+
|
|
215
|
+
$red-rock-00:#5d3122;
|
|
216
|
+
$red-rock-01:#71321c;
|
|
217
|
+
$red-rock-02:#853317;
|
|
218
|
+
$red-rock-03:#993412;
|
|
219
|
+
$red-rock-04:#ad360d;
|
|
220
|
+
$red-rock-05:#b2441e;
|
|
221
|
+
$red-rock-06:#b8522f;
|
|
222
|
+
$red-rock-07:#be6140;
|
|
223
|
+
$red-rock-08:#c46f52;
|
|
224
|
+
$red-rock-09:#ca7d63;
|
|
225
|
+
$red-rock-10:#d08c74;
|
|
226
|
+
$red-rock-11:#d69a86;
|
|
227
|
+
$red-rock-12:#dba897;
|
|
228
|
+
$red-rock-13:#e1b7a8;
|
|
229
|
+
$red-rock-14:#e7c5b9;
|
|
230
|
+
$red-rock-15:#edd3cb;
|
|
231
|
+
$red-rock-16:#f3e2dc;
|
|
232
|
+
$red-rock-17:#f9f0ed;
|
|
233
|
+
|
|
234
|
+
$rose-red-00:#67292c;
|
|
235
|
+
$rose-red-01:#772226;
|
|
236
|
+
$rose-red-02:#881b20;
|
|
237
|
+
$rose-red-03:#99141a;
|
|
238
|
+
$rose-red-04:#aa0d15;
|
|
239
|
+
$rose-red-05:#b01e25;
|
|
240
|
+
$rose-red-06:#b62f36;
|
|
241
|
+
$rose-red-07:#bc4047;
|
|
242
|
+
$rose-red-08:#c25257;
|
|
243
|
+
$rose-red-09:#c86368;
|
|
244
|
+
$rose-red-10:#ce7479;
|
|
245
|
+
$rose-red-11:#d4868a;
|
|
246
|
+
$rose-red-12:#da979a;
|
|
247
|
+
$rose-red-13:#e0a8ab;
|
|
248
|
+
$rose-red-14:#e6b9bc;
|
|
249
|
+
$rose-red-15:#eccbcc;
|
|
250
|
+
$rose-red-16:#f2dcdd;
|
|
251
|
+
$rose-red-17:#f8edee;
|
|
252
|
+
|
|
253
|
+
$electric-blue-00:#26424e;
|
|
254
|
+
$electric-blue-01:#2d6379;
|
|
255
|
+
$electric-blue-02:#3584a5;
|
|
256
|
+
$electric-blue-03:#3da5d0;
|
|
257
|
+
$electric-blue-04:#45c6ff;
|
|
258
|
+
$electric-blue-05:#52caff;
|
|
259
|
+
$electric-blue-06:#5fceff;
|
|
260
|
+
$electric-blue-07:#6cd2ff;
|
|
261
|
+
$electric-blue-08:#7ad6ff;
|
|
262
|
+
$electric-blue-09:#87daff;
|
|
263
|
+
$electric-blue-10:#94deff;
|
|
264
|
+
$electric-blue-11:#a2e2ff;
|
|
265
|
+
$electric-blue-12:#afe6ff;
|
|
266
|
+
$electric-blue-13:#bceaff;
|
|
267
|
+
$electric-blue-14:#c9eeff;
|
|
268
|
+
$electric-blue-15:#d7f2ff;
|
|
269
|
+
$electric-blue-16:#e4f6ff;
|
|
270
|
+
$electric-blue-17:#f1faff;
|
|
271
|
+
|
|
272
|
+
$electric-orange-00:#4f392d;
|
|
273
|
+
$electric-orange-01:#7a472b;
|
|
274
|
+
$electric-orange-02:#a6552a;
|
|
275
|
+
$electric-orange-03:#d26328;
|
|
276
|
+
$electric-orange-04:#ff7227;
|
|
277
|
+
$electric-orange-05:#ff7c36;
|
|
278
|
+
$electric-orange-06:#ff8645;
|
|
279
|
+
$electric-orange-07:#ff9055;
|
|
280
|
+
$electric-orange-08:#ff9a64;
|
|
281
|
+
$electric-orange-09:#ffa474;
|
|
282
|
+
$electric-orange-10:#ffae83;
|
|
283
|
+
$electric-orange-11:#ffb893;
|
|
284
|
+
$electric-orange-12:#ffc2a2;
|
|
285
|
+
$electric-orange-13:#ffccb1;
|
|
286
|
+
$electric-orange-14:#ffd6c1;
|
|
287
|
+
$electric-orange-15:#ffe0d0;
|
|
288
|
+
$electric-orange-16:#ffeae0;
|
|
289
|
+
$electric-orange-17:#fff4ef;
|
|
290
|
+
|
|
291
|
+
$electric-yellow-00:#463d29;
|
|
292
|
+
$electric-yellow-01:#745a1e;
|
|
293
|
+
$electric-yellow-02:#a27714;
|
|
294
|
+
$electric-yellow-03:#d0940a;
|
|
295
|
+
$electric-yellow-04:#ffb100;
|
|
296
|
+
$electric-yellow-05:#ffb612;
|
|
297
|
+
$electric-yellow-06:#ffbc24;
|
|
298
|
+
$electric-yellow-07:#ffc136;
|
|
299
|
+
$electric-yellow-08:#ffc748;
|
|
300
|
+
$electric-yellow-09:#ffcc5b;
|
|
301
|
+
$electric-yellow-10:#ffd26d;
|
|
302
|
+
$electric-yellow-11:#ffd87f;
|
|
303
|
+
$electric-yellow-12:#ffdd91;
|
|
304
|
+
$electric-yellow-13:#ffe3a3;
|
|
305
|
+
$electric-yellow-14:#ffe8b6;
|
|
306
|
+
$electric-yellow-15:#ffeec8;
|
|
307
|
+
$electric-yellow-16:#fff3da;
|
|
308
|
+
$electric-yellow-17:#fff9ec;
|
|
309
|
+
|
|
310
|
+
$iris-00:#483948;
|
|
311
|
+
$iris-01:#685568;
|
|
312
|
+
$iris-02:#897289;
|
|
313
|
+
$iris-03:#a98faa;
|
|
314
|
+
$iris-04:#caaccb;
|
|
315
|
+
$iris-05:#cdb1ce;
|
|
316
|
+
$iris-06:#d1b7d2;
|
|
317
|
+
$iris-07:#d5bdd6;
|
|
318
|
+
$iris-08:#d9c3d9;
|
|
319
|
+
$iris-09:#dcc9dd;
|
|
320
|
+
$iris-10:#e0cfe1;
|
|
321
|
+
$iris-11:#e4d5e5;
|
|
322
|
+
$iris-12:#e8dbe8;
|
|
323
|
+
$iris-13:#ece1ec;
|
|
324
|
+
$iris-14:#efe7f0;
|
|
325
|
+
$iris-15:#f3edf3;
|
|
326
|
+
$iris-16:#f7f3f7;
|
|
327
|
+
$iris-17:#fbf9fb;
|
|
328
|
+
|
|
329
|
+
$sage-green-00:#31432e;
|
|
330
|
+
$sage-green-01:#4b6446;
|
|
331
|
+
$sage-green-02:#65855f;
|
|
332
|
+
$sage-green-03:#7fa678;
|
|
333
|
+
$sage-green-04:#9ac791;
|
|
334
|
+
$sage-green-05:#a1cb98;
|
|
335
|
+
$sage-green-06:#a8cfa0;
|
|
336
|
+
$sage-green-07:#afd3a8;
|
|
337
|
+
$sage-green-08:#b6d7b0;
|
|
338
|
+
$sage-green-09:#bedbb8;
|
|
339
|
+
$sage-green-10:#c5dfc0;
|
|
340
|
+
$sage-green-11:#cce3c8;
|
|
341
|
+
$sage-green-12:#d3e7cf;
|
|
342
|
+
$sage-green-13:#daebd7;
|
|
343
|
+
$sage-green-14:#e2efdf;
|
|
344
|
+
$sage-green-15:#e9f3e7;
|
|
345
|
+
$sage-green-16:#f0f7ef;
|
|
346
|
+
$sage-green-17:#f7fbf7;
|
|
347
|
+
|
|
348
|
+
$light-orange-00: #4f392d;
|
|
349
|
+
$light-orange-01: #7b472b;
|
|
350
|
+
$light-orange-02: #a7552a;
|
|
351
|
+
$light-orange-03: #d36328;
|
|
352
|
+
$light-orange-04: #ff9d55;
|
|
353
|
+
$light-orange-05: #ffa461;
|
|
354
|
+
$light-orange-06: #ffab6d;
|
|
355
|
+
$light-orange-07: #ffb279;
|
|
356
|
+
$light-orange-08: #ffb985;
|
|
357
|
+
$light-orange-09: #ffc091;
|
|
358
|
+
$light-orange-10: #ffc79d;
|
|
359
|
+
$light-orange-11: #ffceaa;
|
|
360
|
+
$light-orange-12: #ffd5b6;
|
|
361
|
+
$light-orange-13: #ffdcc2;
|
|
362
|
+
$light-orange-14: #ffe3ce;
|
|
363
|
+
$light-orange-15: #ffeada;
|
|
364
|
+
$light-orange-16: #fff1e6;
|
|
365
|
+
$light-orange-17: #fff8f2;
|
|
366
|
+
|
|
367
|
+
$neutral-gray-00: #1f1f1f;
|
|
368
|
+
$neutral-gray-01: #292929;
|
|
369
|
+
$neutral-gray-02: #333333;
|
|
370
|
+
$neutral-gray-03: #3d3d3d;
|
|
371
|
+
$neutral-gray-04: #474747;
|
|
372
|
+
$neutral-gray-05: #545454;
|
|
373
|
+
$neutral-gray-06: #616161;
|
|
374
|
+
$neutral-gray-07: #6e6e6e;
|
|
375
|
+
$neutral-gray-08: #7b7b7b;
|
|
376
|
+
$neutral-gray-09: #888888;
|
|
377
|
+
$neutral-gray-10: #959595;
|
|
378
|
+
$neutral-gray-11: #a3a3a3;
|
|
379
|
+
$neutral-gray-12: #b0b0b0;
|
|
380
|
+
$neutral-gray-13: #bdbdbd;
|
|
381
|
+
$neutral-gray-14: #cacaca;
|
|
382
|
+
$neutral-gray-15: #d7d7d7;
|
|
383
|
+
$neutral-gray-16: #e4e4e4;
|
|
384
|
+
$neutral-gray-17: #f1f1f1;
|
|
385
|
+
|
|
386
|
+
$warm-gray-00: #101010;
|
|
387
|
+
$warm-gray-01: #1d1d1c;
|
|
388
|
+
$warm-gray-02: #2a2a28;
|
|
389
|
+
$warm-gray-03: #373734;
|
|
390
|
+
$warm-gray-04: #454541;
|
|
391
|
+
$warm-gray-05: #52524e;
|
|
392
|
+
$warm-gray-06: #5f5f5c;
|
|
393
|
+
$warm-gray-07: #6c6c69;
|
|
394
|
+
$warm-gray-08: #7a7a77;
|
|
395
|
+
$warm-gray-09: #878784;
|
|
396
|
+
$warm-gray-10: #949492;
|
|
397
|
+
$warm-gray-11: #a2a2a0;
|
|
398
|
+
$warm-gray-12: #afafad;
|
|
399
|
+
$warm-gray-13: #bcbcbb;
|
|
400
|
+
$warm-gray-14: #c9c9c8;
|
|
401
|
+
$warm-gray-15: #d7d7d6;
|
|
402
|
+
$warm-gray-16: #e4e4e3;
|
|
403
|
+
$warm-gray-17: #f1f1f1;
|
|
404
|
+
|
|
405
|
+
$cool-gray-00: #1a1e21;
|
|
406
|
+
$cool-gray-01: #22282c;
|
|
407
|
+
$cool-gray-02: #2b3237;
|
|
408
|
+
$cool-gray-03: #343c42;
|
|
409
|
+
$cool-gray-04: #3d474e;
|
|
410
|
+
$cool-gray-05: #4a545a;
|
|
411
|
+
$cool-gray-06: #586167;
|
|
412
|
+
$cool-gray-07: #666e73;
|
|
413
|
+
$cool-gray-08: #747b80;
|
|
414
|
+
$cool-gray-09: #82888d;
|
|
415
|
+
$cool-gray-10: #909599;
|
|
416
|
+
$cool-gray-11: #9ea3a6;
|
|
417
|
+
$cool-gray-12: #abb0b3;
|
|
418
|
+
$cool-gray-13: #b9bdbf;
|
|
419
|
+
$cool-gray-14: #c7cacc;
|
|
420
|
+
$cool-gray-15: #d5d7d9;
|
|
421
|
+
$cool-gray-16: #e3e4e5;
|
|
422
|
+
$cool-gray-17: #f1f1f2;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/*
|
|
2
|
+
############ _font-size.scss ############
|
|
3
|
+
Font size variables
|
|
4
|
+
*/
|
|
5
|
+
@use "../1-settings/class-vars";
|
|
6
|
+
|
|
7
|
+
#{class-vars.$base-class} {
|
|
8
|
+
--font-size-2xs: .8125rem; //13
|
|
9
|
+
--font-size-xs: .875rem; //14
|
|
10
|
+
--font-size-s: .9375rem; //15
|
|
11
|
+
--font-size: 1rem; //16
|
|
12
|
+
--font-size-m: 1.125rem; //18
|
|
13
|
+
--font-size-l: 1.25rem; //20
|
|
14
|
+
--font-size-xl: 1.5rem; //24
|
|
15
|
+
--font-size-2xl: 1.75rem; //28
|
|
16
|
+
--font-size-3xl: 2rem; //32
|
|
17
|
+
--font-size-4xl: 2.5rem; //40
|
|
18
|
+
--font-size-5xl: 3rem; //48
|
|
19
|
+
--font-size-6xl: 3.5rem; //56
|
|
20
|
+
--font-size-7xl: 4.5rem; //72
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.font-size-2xs { font-size: var(--font-size-2xs); }
|
|
24
|
+
.font-size-xs { font-size: var(--font-size-xs); }
|
|
25
|
+
.font-size-s { font-size: var(--font-size-s); }
|
|
26
|
+
.font-size { font-size: var(--font-size); }
|
|
27
|
+
.font-size-m { font-size: var(--font-size-m); }
|
|
28
|
+
.font-size-l { font-size: var(--font-size-l); }
|
|
29
|
+
.font-size-xl { font-size: var(--font-size-xl); }
|
|
30
|
+
.font-size-2xl { font-size: var(--font-size-2xl); }
|
|
31
|
+
.font-size-3xl { font-size: var(--font-size-3xl); }
|
|
32
|
+
.font-size-4xl { font-size: var(--font-size-4xl); }
|
|
33
|
+
.font-size-5xl { font-size: var(--font-size-5xl); }
|
|
34
|
+
.font-size-6xl { font-size: var(--font-size-6xl); }
|
|
35
|
+
.font-size-7xl { font-size: var(--font-size-7xl); }
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
#{class-vars.$base-class} {
|
|
39
|
+
--font-weight-normal: 400;
|
|
40
|
+
--font-weight-semi-bold: 600;
|
|
41
|
+
--font-weight-bold: 700;
|
|
42
|
+
--font-weight-black: 900;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.font-normal { font-weight: var(--font-weight-normal); }
|
|
46
|
+
.font-semi-bold { font-weight: var(--font-weight-semi-bold); }
|
|
47
|
+
.font-bold { font-weight: var(--font-weight-bold); }
|
|
48
|
+
.font-black { font-weight: var(--font-weight-black); }
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/*
|
|
2
|
+
############ _font-size.scss ############
|
|
3
|
+
Grid variables
|
|
4
|
+
*/
|
|
5
|
+
@use "../1-settings/class-vars";
|
|
6
|
+
|
|
7
|
+
#{class-vars.$base-class} {
|
|
8
|
+
--grid-fixed: var(--content-width);
|
|
9
|
+
--grid-fixed-half: calc(var(--grid-fixed) / 2);
|
|
10
|
+
--grid-fixed-form: calc(var(--grid-fixed) / 2.3);
|
|
11
|
+
--grid-fixed-third: calc(var(--grid-fixed) / 3);
|
|
12
|
+
--grid-fixed-fourth: calc(var(--grid-fixed) / 4);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.grid-wrapper {
|
|
16
|
+
display: flex;
|
|
17
|
+
justify-content: center;
|
|
18
|
+
}
|
|
19
|
+
.grid-fixed {
|
|
20
|
+
max-width: var(--grid-fixed);
|
|
21
|
+
width: 100%;
|
|
22
|
+
display: grid;
|
|
23
|
+
grid-template-columns: 1fr;
|
|
24
|
+
gap: var(--spacing-l);
|
|
25
|
+
|
|
26
|
+
&--2col {
|
|
27
|
+
grid-template-columns: 1fr 1fr;
|
|
28
|
+
}
|
|
29
|
+
&--3col {
|
|
30
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
31
|
+
}
|
|
32
|
+
&--4col {
|
|
33
|
+
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.grid-column-span-2 {
|
|
37
|
+
grid-column: span 2;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
@use "../1-settings/class-vars";
|
|
2
|
+
|
|
3
|
+
#{class-vars.$base-class} {
|
|
4
|
+
--icon-check-mark-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12.15'%3E%3Cg%3E%3Cpath d='M6.185,12.15L0,5.966,2.335,3.631l3.85,3.849L13.665,0l2.335,2.335L6.185,12.15Z' style='fill: %23fff;'/%3E%3C/g%3E%3C/svg%3E");
|
|
5
|
+
--icon-chevron-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg%3E%3Crect width='14' height='14' style='fill: none;'/%3E%3Cpath d='M3.142,5l3.716,3.71,3.717-3.71,1.142,1.142-4.859,4.858L2,6.142l1.142-1.142Z' style='fill: %23474747;'/%3E%3C/g%3E%3C/svg%3E");
|
|
6
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
/*
|
|
2
|
+
############ _settings-index.scss ############
|
|
3
|
+
variables and settings
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
@use "class-vars";
|
|
7
|
+
@use "spacing";
|
|
8
|
+
@use "grid";
|
|
9
|
+
@use "font-stuff";
|
|
10
|
+
@use "color-swatches";
|
|
11
|
+
@use "icons";
|
|
12
|
+
|
|
13
|
+
#{class-vars.$base-class} {
|
|
14
|
+
/* color */
|
|
15
|
+
/* ######## Pick these colors to match your desired style ######## */
|
|
16
|
+
--primary-color: purple;
|
|
17
|
+
--primary-color-dark: rgb(50, 0, 50);
|
|
18
|
+
--primary-color-light: rgb(219, 159, 219);
|
|
19
|
+
--gray-on-primary-color: #474747;
|
|
20
|
+
|
|
21
|
+
--secondary-color: rgb(0, 255, 136);
|
|
22
|
+
--secondary-color-dark: rgb(0, 66, 35);
|
|
23
|
+
--secondary-color-light: rgb(183, 250, 218);
|
|
24
|
+
--gray-on-secondary-color: #474747;
|
|
25
|
+
|
|
26
|
+
--accent-color: gold;
|
|
27
|
+
--accent-color-dark: rgb(114, 97, 0);
|
|
28
|
+
--accent-color-light: rgb(245, 238, 196);
|
|
29
|
+
--gray-on-accent-color: #474747;
|
|
30
|
+
|
|
31
|
+
--form-ele-color: #{color-swatches.$azul-05};
|
|
32
|
+
--form-ele-color-light: #{color-swatches.$azul-10};
|
|
33
|
+
--form-ele-disabled-color: #{color-swatches.$neutral-gray-10};
|
|
34
|
+
|
|
35
|
+
/* ######## --------------------------------------------- ######## */
|
|
36
|
+
|
|
37
|
+
--gray-color: #{color-swatches.$neutral-gray-04};
|
|
38
|
+
--gray-medium-color: #{color-swatches.$neutral-gray-06};
|
|
39
|
+
--gray-medium-light-color: #{color-swatches.$neutral-gray-15};
|
|
40
|
+
--gray-light-color: #{color-swatches.$neutral-gray-17};
|
|
41
|
+
--gray-dark-color: #{color-swatches.$neutral-gray-02};
|
|
42
|
+
|
|
43
|
+
--hover-gray-color: rgba(0,0,0,0.07);
|
|
44
|
+
--hover-gray-color-opaque: rgba(233,233,233);
|
|
45
|
+
|
|
46
|
+
--code-color: #{color-swatches.$neutral-gray-16};
|
|
47
|
+
--gray-border: #{color-swatches.$neutral-gray-15};
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
/* transition timings */
|
|
51
|
+
--timing-xquick: 100ms;
|
|
52
|
+
--timing-quick: 200ms;
|
|
53
|
+
--timing-medium: 400ms;
|
|
54
|
+
--timing-slow: 600ms;
|
|
55
|
+
|
|
56
|
+
/* rounded corners */
|
|
57
|
+
--radius-small1x: 3px;
|
|
58
|
+
--radius-small: 6px;
|
|
59
|
+
--radius-medium: 9px;
|
|
60
|
+
--radius-large: 12px;
|
|
61
|
+
--radius-circle: 999px;
|
|
62
|
+
|
|
63
|
+
/* form element sizes */
|
|
64
|
+
--form-ele-small4x: .75rem; //small switch
|
|
65
|
+
--form-ele-small3x: 1rem;
|
|
66
|
+
--form-ele-small2x: 1.25rem;
|
|
67
|
+
--form-ele-small1x: 1.5rem;
|
|
68
|
+
--form-ele-small: 1.875rem; //small button
|
|
69
|
+
--form-ele-medium: 2.25rem; //medium button
|
|
70
|
+
--form-ele-large: 2.5rem; //large button
|
|
71
|
+
--form-ele-large1x: 3.125rem; //large1x button
|
|
72
|
+
|
|
73
|
+
--form-checkbox-small: 0.875rem;
|
|
74
|
+
--form-checkbox-medium: 1.125rem;
|
|
75
|
+
--form-checkbox-large: 1.375rem;
|
|
76
|
+
|
|
77
|
+
/* content layout sizes */
|
|
78
|
+
--content-width-narrow: 800px;
|
|
79
|
+
--content-width: 1224px;
|
|
80
|
+
--content-width-wide: 1432px;
|
|
81
|
+
--documentation-width: 700px;
|
|
82
|
+
--documentation-left-width: 200px;
|
|
83
|
+
--documentation-right-width: 200px;
|
|
84
|
+
--documentation-padding: var(--spacing-2xl) var(--spacing-xl);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/* color utility classes */
|
|
88
|
+
.primary-color-background { background-color: var(--primary-color); }
|
|
89
|
+
.primary-color-dark-background { background-color: var(--primary-color-dark); }
|
|
90
|
+
.primary-color-light-background { background-color: var(--primary-color-light); }
|
|
91
|
+
.gray-on-primary-background { background-color: var(--gray-on-primary-color); }
|
|
92
|
+
|
|
93
|
+
.primary-color { color: var(--primary-color); }
|
|
94
|
+
.primary-color-border { border-color: var(--primary-color); }
|
|
95
|
+
|
|
96
|
+
.secondary-color-background { background-color: var(--secondary-color); }
|
|
97
|
+
.secondary-color-dark-background { background-color: var(--secondary-color-dark); }
|
|
98
|
+
.secondary-color-light-background { background-color: var(--secondary-color-light); }
|
|
99
|
+
.gray-on-secondary-background { background-color: var(--gray-on-secondary-color); }
|
|
100
|
+
|
|
101
|
+
.secondary-color { color: var(--secondary-color) };
|
|
102
|
+
.secondary-color-border { border-color: var(--secondary-color) };
|
|
103
|
+
|
|
104
|
+
.accent-color-background { background-color: var(--accent-color); }
|
|
105
|
+
.accent-color-dark-background { background-color: var(--accent-color-dark); }
|
|
106
|
+
.accent-color-light-background { background-color: var(--accent-color-light); }
|
|
107
|
+
.gray-on-accent-background { background-color: var(--gray-on-accent-color); }
|
|
108
|
+
|
|
109
|
+
.accent-color { color: var(--accent-color) };
|
|
110
|
+
.accent-color-border { border-color: var(--accent-color) };
|
|
111
|
+
|
|
112
|
+
.gray-color-background { background-color: var(--gray-color); }
|
|
113
|
+
.gray-color-light-background { background-color: var(--gray-light-color) }
|
|
114
|
+
|
|
115
|
+
.white-color { color: white; }
|
|
116
|
+
|