@fluentui/react-theme-sass 0.0.0-nightly-20220609-0423.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/CHANGELOG.json +20 -0
- package/CHANGELOG.md +13 -0
- package/LICENSE +15 -0
- package/README.md +35 -0
- package/dist/index.d.ts +1 -0
- package/dist/tsdoc-metadata.json +11 -0
- package/lib/index.js +3 -0
- package/lib/index.js.map +1 -0
- package/lib-commonjs/index.js +7 -0
- package/lib-commonjs/index.js.map +1 -0
- package/package.json +39 -0
- package/sass/borderRadiusTokens.scss +6 -0
- package/sass/colorPaletteTokens.scss +489 -0
- package/sass/colorTokens.scss +142 -0
- package/sass/curveTokens.scss +9 -0
- package/sass/durationTokens.scss +7 -0
- package/sass/fontTokens.scss +29 -0
- package/sass/shadowTokens.scss +13 -0
- package/sass/spacingTokens.scss +22 -0
- package/sass/strokeWidthTokens.scss +4 -0
- package/sass/tokens.scss +9 -0
package/CHANGELOG.json
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
{
|
2
|
+
"name": "@fluentui/react-theme-sass",
|
3
|
+
"entries": [
|
4
|
+
{
|
5
|
+
"date": "Thu, 09 Jun 2022 04:36:23 GMT",
|
6
|
+
"tag": "@fluentui/react-theme-sass_v0.0.0-nightly-20220609-0423.1",
|
7
|
+
"version": "0.0.0-nightly-20220609-0423.1",
|
8
|
+
"comments": {
|
9
|
+
"prerelease": [
|
10
|
+
{
|
11
|
+
"author": "miroslav.stastny@microsoft.com",
|
12
|
+
"package": "@fluentui/react-theme-sass",
|
13
|
+
"commit": "eeed967f604dc4f6a4b6b32b6347c0ed9360294c",
|
14
|
+
"comment": "Add SASS variables mapped to CSS variables provided by react-theme"
|
15
|
+
}
|
16
|
+
]
|
17
|
+
}
|
18
|
+
}
|
19
|
+
]
|
20
|
+
}
|
package/CHANGELOG.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Change Log - @fluentui/react-theme-sass
|
2
|
+
|
3
|
+
This log was last generated on Thu, 09 Jun 2022 04:36:23 GMT and should not be manually modified.
|
4
|
+
|
5
|
+
<!-- Start content -->
|
6
|
+
|
7
|
+
## [0.0.0-nightly-20220609-0423.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v0.0.0-nightly-20220609-0423.1)
|
8
|
+
|
9
|
+
Thu, 09 Jun 2022 04:36:23 GMT
|
10
|
+
|
11
|
+
### Changes
|
12
|
+
|
13
|
+
- Add SASS variables mapped to CSS variables provided by react-theme ([PR #22964](https://github.com/microsoft/fluentui/pull/22964) by miroslav.stastny@microsoft.com)
|
package/LICENSE
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
@fluentui/react-theme-sass
|
2
|
+
|
3
|
+
Copyright (c) Microsoft Corporation
|
4
|
+
|
5
|
+
All rights reserved.
|
6
|
+
|
7
|
+
MIT License
|
8
|
+
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
14
|
+
|
15
|
+
Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license
|
package/README.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# @fluentui/react-theme-sass
|
2
|
+
|
3
|
+
**React Theme Sass for [Fluent UI React](https://developer.microsoft.com/en-us/fluentui)**
|
4
|
+
|
5
|
+
SASS variables referencing react-theme design tokens injected to DOM by react-provider.
|
6
|
+
|
7
|
+
## Usage
|
8
|
+
|
9
|
+
1. Instantiate a `FluentProvider` to inject a Fluent theme into a DOM:
|
10
|
+
|
11
|
+
```jsx
|
12
|
+
import React from 'react';
|
13
|
+
import ReactDOM from 'react-dom';
|
14
|
+
import { FluentProvider, teamsLightTheme } from '@fluentui/react-components';
|
15
|
+
import App from './App';
|
16
|
+
ReactDOM.render(
|
17
|
+
<FluentProvider theme={teamsLightTheme}>
|
18
|
+
<App />
|
19
|
+
</FluentProvider>,
|
20
|
+
document.getElementById('root'),
|
21
|
+
);
|
22
|
+
```
|
23
|
+
|
24
|
+
2. In SCSS styles you can import SCSS variables from `@fluentui/react-theme-sass` and use them in the styles:
|
25
|
+
|
26
|
+
```scss
|
27
|
+
@import '~@fluentui/react-theme-sass';
|
28
|
+
.brandedElement {
|
29
|
+
color: $colorBrandForeground1;
|
30
|
+
background: $colorBrandBackground;
|
31
|
+
border-radius: $borderRadiusLarge;
|
32
|
+
}
|
33
|
+
```
|
34
|
+
|
35
|
+
⚠ This package does not export any Javascript code.️
|
package/dist/index.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export { }
|
@@ -0,0 +1,11 @@
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
3
|
+
{
|
4
|
+
"tsdocVersion": "0.12",
|
5
|
+
"toolPackages": [
|
6
|
+
{
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
8
|
+
"packageVersion": "7.18.1"
|
9
|
+
}
|
10
|
+
]
|
11
|
+
}
|
package/lib/index.js
ADDED
package/lib/index.js.map
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../src/","sources":["index.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,KAAK,CACb,2GAA2G,CAC5G,CAAC","sourcesContent":["throw new Error(\n '@fluentui/react-theme-sass package only contains SASS exports. It should never be imported in Javascript.',\n);\n\nexport {};\n"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["index.ts"],"names":[],"mappings":";;;;;AAAA,MAAM,IAAI,KAAJ,CACJ,2GADI,CAAN","sourcesContent":["throw new Error(\n '@fluentui/react-theme-sass package only contains SASS exports. It should never be imported in Javascript.',\n);\n\nexport {};\n"],"sourceRoot":"../src/"}
|
package/package.json
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
{
|
2
|
+
"name": "@fluentui/react-theme-sass",
|
3
|
+
"version": "0.0.0-nightly-20220609-0423.1",
|
4
|
+
"description": "SASS variables referencing react-theme design tokens injected to DOM by react-provider.",
|
5
|
+
"main": "lib-commonjs/index.js",
|
6
|
+
"module": "lib/index.js",
|
7
|
+
"typings": "dist/index.d.ts",
|
8
|
+
"style": "sass/tokens.scss",
|
9
|
+
"sideEffects": false,
|
10
|
+
"repository": {
|
11
|
+
"type": "git",
|
12
|
+
"url": "https://github.com/microsoft/fluentui"
|
13
|
+
},
|
14
|
+
"license": "MIT",
|
15
|
+
"scripts": {
|
16
|
+
"build": "just-scripts build",
|
17
|
+
"clean": "just-scripts clean",
|
18
|
+
"code-style": "just-scripts code-style",
|
19
|
+
"just": "just-scripts",
|
20
|
+
"lint": "just-scripts lint",
|
21
|
+
"start": "yarn storybook",
|
22
|
+
"test": "jest --passWithNoTests",
|
23
|
+
"docs": "api-extractor run --config=config/api-extractor.local.json --local",
|
24
|
+
"build:local": "tsc -p ./tsconfig.lib.json --module esnext --emitDeclarationOnly && node ../../../scripts/typescript/normalize-import --output ./dist/types/packages/react-components/react-theme-sass/src && yarn docs",
|
25
|
+
"storybook": "node ../../../scripts/storybook/runner",
|
26
|
+
"type-check": "tsc -b tsconfig.json"
|
27
|
+
},
|
28
|
+
"devDependencies": {
|
29
|
+
"@fluentui/eslint-plugin": "*",
|
30
|
+
"@fluentui/scripts": "^1.0.0"
|
31
|
+
},
|
32
|
+
"beachball": {
|
33
|
+
"disallowedChangeTypes": [
|
34
|
+
"major",
|
35
|
+
"minor",
|
36
|
+
"patch"
|
37
|
+
]
|
38
|
+
}
|
39
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
$borderRadiusNone: var(--borderRadiusNone);
|
2
|
+
$borderRadiusSmall: var(--borderRadiusSmall);
|
3
|
+
$borderRadiusMedium: var(--borderRadiusMedium);
|
4
|
+
$borderRadiusLarge: var(--borderRadiusLarge);
|
5
|
+
$borderRadiusXLarge: var(--borderRadiusXLarge);
|
6
|
+
$borderRadiusCircular: var(--borderRadiusCircular);
|
@@ -0,0 +1,489 @@
|
|
1
|
+
$colorPaletteDarkRedBackground1: var(--colorPaletteDarkRedBackground1);
|
2
|
+
$colorPaletteDarkRedBackground2: var(--colorPaletteDarkRedBackground2);
|
3
|
+
$colorPaletteDarkRedBackground3: var(--colorPaletteDarkRedBackground3);
|
4
|
+
$colorPaletteDarkRedForeground1: var(--colorPaletteDarkRedForeground1);
|
5
|
+
$colorPaletteDarkRedForeground2: var(--colorPaletteDarkRedForeground2);
|
6
|
+
$colorPaletteDarkRedForeground3: var(--colorPaletteDarkRedForeground3);
|
7
|
+
$colorPaletteDarkRedBorderActive: var(--colorPaletteDarkRedBorderActive);
|
8
|
+
$colorPaletteDarkRedBorder1: var(--colorPaletteDarkRedBorder1);
|
9
|
+
$colorPaletteDarkRedBorder2: var(--colorPaletteDarkRedBorder2);
|
10
|
+
|
11
|
+
$colorPaletteBurgundyBackground1: var(--colorPaletteBurgundyBackground1);
|
12
|
+
$colorPaletteBurgundyBackground2: var(--colorPaletteBurgundyBackground2);
|
13
|
+
$colorPaletteBurgundyBackground3: var(--colorPaletteBurgundyBackground3);
|
14
|
+
$colorPaletteBurgundyForeground1: var(--colorPaletteBurgundyForeground1);
|
15
|
+
$colorPaletteBurgundyForeground2: var(--colorPaletteBurgundyForeground2);
|
16
|
+
$colorPaletteBurgundyForeground3: var(--colorPaletteBurgundyForeground3);
|
17
|
+
$colorPaletteBurgundyBorderActive: var(--colorPaletteBurgundyBorderActive);
|
18
|
+
$colorPaletteBurgundyBorder1: var(--colorPaletteBurgundyBorder1);
|
19
|
+
$colorPaletteBurgundyBorder2: var(--colorPaletteBurgundyBorder2);
|
20
|
+
|
21
|
+
$colorPaletteCranberryBackground1: var(--colorPaletteCranberryBackground1);
|
22
|
+
$colorPaletteCranberryBackground2: var(--colorPaletteCranberryBackground2);
|
23
|
+
$colorPaletteCranberryBackground3: var(--colorPaletteCranberryBackground3);
|
24
|
+
$colorPaletteCranberryForeground1: var(--colorPaletteCranberryForeground1);
|
25
|
+
$colorPaletteCranberryForeground2: var(--colorPaletteCranberryForeground2);
|
26
|
+
$colorPaletteCranberryForeground3: var(--colorPaletteCranberryForeground3);
|
27
|
+
$colorPaletteCranberryBorderActive: var(--colorPaletteCranberryBorderActive);
|
28
|
+
$colorPaletteCranberryBorder1: var(--colorPaletteCranberryBorder1);
|
29
|
+
$colorPaletteCranberryBorder2: var(--colorPaletteCranberryBorder2);
|
30
|
+
|
31
|
+
$colorPaletteRedBackground1: var(--colorPaletteRedBackground1);
|
32
|
+
$colorPaletteRedBackground2: var(--colorPaletteRedBackground2);
|
33
|
+
$colorPaletteRedBackground3: var(--colorPaletteRedBackground3);
|
34
|
+
$colorPaletteRedForeground1: var(--colorPaletteRedForeground1);
|
35
|
+
$colorPaletteRedForeground2: var(--colorPaletteRedForeground2);
|
36
|
+
$colorPaletteRedForeground3: var(--colorPaletteRedForeground3);
|
37
|
+
$colorPaletteRedBorderActive: var(--colorPaletteRedBorderActive);
|
38
|
+
$colorPaletteRedBorder1: var(--colorPaletteRedBorder1);
|
39
|
+
$colorPaletteRedBorder2: var(--colorPaletteRedBorder2);
|
40
|
+
|
41
|
+
$colorPaletteDarkOrangeBackground1: var(--colorPaletteDarkOrangeBackground1);
|
42
|
+
$colorPaletteDarkOrangeBackground2: var(--colorPaletteDarkOrangeBackground2);
|
43
|
+
$colorPaletteDarkOrangeBackground3: var(--colorPaletteDarkOrangeBackground3);
|
44
|
+
$colorPaletteDarkOrangeForeground1: var(--colorPaletteDarkOrangeForeground1);
|
45
|
+
$colorPaletteDarkOrangeForeground2: var(--colorPaletteDarkOrangeForeground2);
|
46
|
+
$colorPaletteDarkOrangeForeground3: var(--colorPaletteDarkOrangeForeground3);
|
47
|
+
$colorPaletteDarkOrangeBorderActive: var(--colorPaletteDarkOrangeBorderActive);
|
48
|
+
$colorPaletteDarkOrangeBorder1: var(--colorPaletteDarkOrangeBorder1);
|
49
|
+
$colorPaletteDarkOrangeBorder2: var(--colorPaletteDarkOrangeBorder2);
|
50
|
+
|
51
|
+
$colorPaletteBronzeBackground1: var(--colorPaletteBronzeBackground1);
|
52
|
+
$colorPaletteBronzeBackground2: var(--colorPaletteBronzeBackground2);
|
53
|
+
$colorPaletteBronzeBackground3: var(--colorPaletteBronzeBackground3);
|
54
|
+
$colorPaletteBronzeForeground1: var(--colorPaletteBronzeForeground1);
|
55
|
+
$colorPaletteBronzeForeground2: var(--colorPaletteBronzeForeground2);
|
56
|
+
$colorPaletteBronzeForeground3: var(--colorPaletteBronzeForeground3);
|
57
|
+
$colorPaletteBronzeBorderActive: var(--colorPaletteBronzeBorderActive);
|
58
|
+
$colorPaletteBronzeBorder1: var(--colorPaletteBronzeBorder1);
|
59
|
+
$colorPaletteBronzeBorder2: var(--colorPaletteBronzeBorder2);
|
60
|
+
|
61
|
+
$colorPalettePumpkinBackground1: var(--colorPalettePumpkinBackground1);
|
62
|
+
$colorPalettePumpkinBackground2: var(--colorPalettePumpkinBackground2);
|
63
|
+
$colorPalettePumpkinBackground3: var(--colorPalettePumpkinBackground3);
|
64
|
+
$colorPalettePumpkinForeground1: var(--colorPalettePumpkinForeground1);
|
65
|
+
$colorPalettePumpkinForeground2: var(--colorPalettePumpkinForeground2);
|
66
|
+
$colorPalettePumpkinForeground3: var(--colorPalettePumpkinForeground3);
|
67
|
+
$colorPalettePumpkinBorderActive: var(--colorPalettePumpkinBorderActive);
|
68
|
+
$colorPalettePumpkinBorder1: var(--colorPalettePumpkinBorder1);
|
69
|
+
$colorPalettePumpkinBorder2: var(--colorPalettePumpkinBorder2);
|
70
|
+
|
71
|
+
$colorPaletteOrangeBackground1: var(--colorPaletteOrangeBackground1);
|
72
|
+
$colorPaletteOrangeBackground2: var(--colorPaletteOrangeBackground2);
|
73
|
+
$colorPaletteOrangeBackground3: var(--colorPaletteOrangeBackground3);
|
74
|
+
$colorPaletteOrangeForeground1: var(--colorPaletteOrangeForeground1);
|
75
|
+
$colorPaletteOrangeForeground2: var(--colorPaletteOrangeForeground2);
|
76
|
+
$colorPaletteOrangeForeground3: var(--colorPaletteOrangeForeground3);
|
77
|
+
$colorPaletteOrangeBorderActive: var(--colorPaletteOrangeBorderActive);
|
78
|
+
$colorPaletteOrangeBorder1: var(--colorPaletteOrangeBorder1);
|
79
|
+
$colorPaletteOrangeBorder2: var(--colorPaletteOrangeBorder2);
|
80
|
+
|
81
|
+
$colorPalettePeachBackground1: var(--colorPalettePeachBackground1);
|
82
|
+
$colorPalettePeachBackground2: var(--colorPalettePeachBackground2);
|
83
|
+
$colorPalettePeachBackground3: var(--colorPalettePeachBackground3);
|
84
|
+
$colorPalettePeachForeground1: var(--colorPalettePeachForeground1);
|
85
|
+
$colorPalettePeachForeground2: var(--colorPalettePeachForeground2);
|
86
|
+
$colorPalettePeachForeground3: var(--colorPalettePeachForeground3);
|
87
|
+
$colorPalettePeachBorderActive: var(--colorPalettePeachBorderActive);
|
88
|
+
$colorPalettePeachBorder1: var(--colorPalettePeachBorder1);
|
89
|
+
$colorPalettePeachBorder2: var(--colorPalettePeachBorder2);
|
90
|
+
|
91
|
+
$colorPaletteMarigoldBackground1: var(--colorPaletteMarigoldBackground1);
|
92
|
+
$colorPaletteMarigoldBackground2: var(--colorPaletteMarigoldBackground2);
|
93
|
+
$colorPaletteMarigoldBackground3: var(--colorPaletteMarigoldBackground3);
|
94
|
+
$colorPaletteMarigoldForeground1: var(--colorPaletteMarigoldForeground1);
|
95
|
+
$colorPaletteMarigoldForeground2: var(--colorPaletteMarigoldForeground2);
|
96
|
+
$colorPaletteMarigoldForeground3: var(--colorPaletteMarigoldForeground3);
|
97
|
+
$colorPaletteMarigoldBorderActive: var(--colorPaletteMarigoldBorderActive);
|
98
|
+
$colorPaletteMarigoldBorder1: var(--colorPaletteMarigoldBorder1);
|
99
|
+
$colorPaletteMarigoldBorder2: var(--colorPaletteMarigoldBorder2);
|
100
|
+
|
101
|
+
$colorPaletteYellowBackground1: var(--colorPaletteYellowBackground1);
|
102
|
+
$colorPaletteYellowBackground2: var(--colorPaletteYellowBackground2);
|
103
|
+
$colorPaletteYellowBackground3: var(--colorPaletteYellowBackground3);
|
104
|
+
$colorPaletteYellowForeground1: var(--colorPaletteYellowForeground1);
|
105
|
+
$colorPaletteYellowForeground2: var(--colorPaletteYellowForeground2);
|
106
|
+
$colorPaletteYellowForeground3: var(--colorPaletteYellowForeground3);
|
107
|
+
$colorPaletteYellowBorderActive: var(--colorPaletteYellowBorderActive);
|
108
|
+
$colorPaletteYellowBorder1: var(--colorPaletteYellowBorder1);
|
109
|
+
$colorPaletteYellowBorder2: var(--colorPaletteYellowBorder2);
|
110
|
+
|
111
|
+
$colorPaletteGoldBackground1: var(--colorPaletteGoldBackground1);
|
112
|
+
$colorPaletteGoldBackground2: var(--colorPaletteGoldBackground2);
|
113
|
+
$colorPaletteGoldBackground3: var(--colorPaletteGoldBackground3);
|
114
|
+
$colorPaletteGoldForeground1: var(--colorPaletteGoldForeground1);
|
115
|
+
$colorPaletteGoldForeground2: var(--colorPaletteGoldForeground2);
|
116
|
+
$colorPaletteGoldForeground3: var(--colorPaletteGoldForeground3);
|
117
|
+
$colorPaletteGoldBorderActive: var(--colorPaletteGoldBorderActive);
|
118
|
+
$colorPaletteGoldBorder1: var(--colorPaletteGoldBorder1);
|
119
|
+
$colorPaletteGoldBorder2: var(--colorPaletteGoldBorder2);
|
120
|
+
|
121
|
+
$colorPaletteBrassBackground1: var(--colorPaletteBrassBackground1);
|
122
|
+
$colorPaletteBrassBackground2: var(--colorPaletteBrassBackground2);
|
123
|
+
$colorPaletteBrassBackground3: var(--colorPaletteBrassBackground3);
|
124
|
+
$colorPaletteBrassForeground1: var(--colorPaletteBrassForeground1);
|
125
|
+
$colorPaletteBrassForeground2: var(--colorPaletteBrassForeground2);
|
126
|
+
$colorPaletteBrassForeground3: var(--colorPaletteBrassForeground3);
|
127
|
+
$colorPaletteBrassBorderActive: var(--colorPaletteBrassBorderActive);
|
128
|
+
$colorPaletteBrassBorder1: var(--colorPaletteBrassBorder1);
|
129
|
+
$colorPaletteBrassBorder2: var(--colorPaletteBrassBorder2);
|
130
|
+
|
131
|
+
$colorPaletteBrownBackground1: var(--colorPaletteBrownBackground1);
|
132
|
+
$colorPaletteBrownBackground2: var(--colorPaletteBrownBackground2);
|
133
|
+
$colorPaletteBrownBackground3: var(--colorPaletteBrownBackground3);
|
134
|
+
$colorPaletteBrownForeground1: var(--colorPaletteBrownForeground1);
|
135
|
+
$colorPaletteBrownForeground2: var(--colorPaletteBrownForeground2);
|
136
|
+
$colorPaletteBrownForeground3: var(--colorPaletteBrownForeground3);
|
137
|
+
$colorPaletteBrownBorderActive: var(--colorPaletteBrownBorderActive);
|
138
|
+
$colorPaletteBrownBorder1: var(--colorPaletteBrownBorder1);
|
139
|
+
$colorPaletteBrownBorder2: var(--colorPaletteBrownBorder2);
|
140
|
+
|
141
|
+
$colorPaletteDarkBrownBackground1: var(--colorPaletteDarkBrownBackground1);
|
142
|
+
$colorPaletteDarkBrownBackground2: var(--colorPaletteDarkBrownBackground2);
|
143
|
+
$colorPaletteDarkBrownBackground3: var(--colorPaletteDarkBrownBackground3);
|
144
|
+
$colorPaletteDarkBrownForeground1: var(--colorPaletteDarkBrownForeground1);
|
145
|
+
$colorPaletteDarkBrownForeground2: var(--colorPaletteDarkBrownForeground2);
|
146
|
+
$colorPaletteDarkBrownForeground3: var(--colorPaletteDarkBrownForeground3);
|
147
|
+
$colorPaletteDarkBrownBorderActive: var(--colorPaletteDarkBrownBorderActive);
|
148
|
+
$colorPaletteDarkBrownBorder1: var(--colorPaletteDarkBrownBorder1);
|
149
|
+
$colorPaletteDarkBrownBorder2: var(--colorPaletteDarkBrownBorder2);
|
150
|
+
|
151
|
+
$colorPaletteLimeBackground1: var(--colorPaletteLimeBackground1);
|
152
|
+
$colorPaletteLimeBackground2: var(--colorPaletteLimeBackground2);
|
153
|
+
$colorPaletteLimeBackground3: var(--colorPaletteLimeBackground3);
|
154
|
+
$colorPaletteLimeForeground1: var(--colorPaletteLimeForeground1);
|
155
|
+
$colorPaletteLimeForeground2: var(--colorPaletteLimeForeground2);
|
156
|
+
$colorPaletteLimeForeground3: var(--colorPaletteLimeForeground3);
|
157
|
+
$colorPaletteLimeBorderActive: var(--colorPaletteLimeBorderActive);
|
158
|
+
$colorPaletteLimeBorder1: var(--colorPaletteLimeBorder1);
|
159
|
+
$colorPaletteLimeBorder2: var(--colorPaletteLimeBorder2);
|
160
|
+
|
161
|
+
$colorPaletteForestBackground1: var(--colorPaletteForestBackground1);
|
162
|
+
$colorPaletteForestBackground2: var(--colorPaletteForestBackground2);
|
163
|
+
$colorPaletteForestBackground3: var(--colorPaletteForestBackground3);
|
164
|
+
$colorPaletteForestForeground1: var(--colorPaletteForestForeground1);
|
165
|
+
$colorPaletteForestForeground2: var(--colorPaletteForestForeground2);
|
166
|
+
$colorPaletteForestForeground3: var(--colorPaletteForestForeground3);
|
167
|
+
$colorPaletteForestBorderActive: var(--colorPaletteForestBorderActive);
|
168
|
+
$colorPaletteForestBorder1: var(--colorPaletteForestBorder1);
|
169
|
+
$colorPaletteForestBorder2: var(--colorPaletteForestBorder2);
|
170
|
+
|
171
|
+
$colorPaletteSeafoamBackground1: var(--colorPaletteSeafoamBackground1);
|
172
|
+
$colorPaletteSeafoamBackground2: var(--colorPaletteSeafoamBackground2);
|
173
|
+
$colorPaletteSeafoamBackground3: var(--colorPaletteSeafoamBackground3);
|
174
|
+
$colorPaletteSeafoamForeground1: var(--colorPaletteSeafoamForeground1);
|
175
|
+
$colorPaletteSeafoamForeground2: var(--colorPaletteSeafoamForeground2);
|
176
|
+
$colorPaletteSeafoamForeground3: var(--colorPaletteSeafoamForeground3);
|
177
|
+
$colorPaletteSeafoamBorderActive: var(--colorPaletteSeafoamBorderActive);
|
178
|
+
$colorPaletteSeafoamBorder1: var(--colorPaletteSeafoamBorder1);
|
179
|
+
$colorPaletteSeafoamBorder2: var(--colorPaletteSeafoamBorder2);
|
180
|
+
|
181
|
+
$colorPaletteLightGreenBackground1: var(--colorPaletteLightGreenBackground1);
|
182
|
+
$colorPaletteLightGreenBackground2: var(--colorPaletteLightGreenBackground2);
|
183
|
+
$colorPaletteLightGreenBackground3: var(--colorPaletteLightGreenBackground3);
|
184
|
+
$colorPaletteLightGreenForeground1: var(--colorPaletteLightGreenForeground1);
|
185
|
+
$colorPaletteLightGreenForeground2: var(--colorPaletteLightGreenForeground2);
|
186
|
+
$colorPaletteLightGreenForeground3: var(--colorPaletteLightGreenForeground3);
|
187
|
+
$colorPaletteLightGreenBorderActive: var(--colorPaletteLightGreenBorderActive);
|
188
|
+
$colorPaletteLightGreenBorder1: var(--colorPaletteLightGreenBorder1);
|
189
|
+
$colorPaletteLightGreenBorder2: var(--colorPaletteLightGreenBorder2);
|
190
|
+
|
191
|
+
$colorPaletteGreenBackground1: var(--colorPaletteGreenBackground1);
|
192
|
+
$colorPaletteGreenBackground2: var(--colorPaletteGreenBackground2);
|
193
|
+
$colorPaletteGreenBackground3: var(--colorPaletteGreenBackground3);
|
194
|
+
$colorPaletteGreenForeground1: var(--colorPaletteGreenForeground1);
|
195
|
+
$colorPaletteGreenForeground2: var(--colorPaletteGreenForeground2);
|
196
|
+
$colorPaletteGreenForeground3: var(--colorPaletteGreenForeground3);
|
197
|
+
$colorPaletteGreenBorderActive: var(--colorPaletteGreenBorderActive);
|
198
|
+
$colorPaletteGreenBorder1: var(--colorPaletteGreenBorder1);
|
199
|
+
$colorPaletteGreenBorder2: var(--colorPaletteGreenBorder2);
|
200
|
+
|
201
|
+
$colorPaletteDarkGreenBackground1: var(--colorPaletteDarkGreenBackground1);
|
202
|
+
$colorPaletteDarkGreenBackground2: var(--colorPaletteDarkGreenBackground2);
|
203
|
+
$colorPaletteDarkGreenBackground3: var(--colorPaletteDarkGreenBackground3);
|
204
|
+
$colorPaletteDarkGreenForeground1: var(--colorPaletteDarkGreenForeground1);
|
205
|
+
$colorPaletteDarkGreenForeground2: var(--colorPaletteDarkGreenForeground2);
|
206
|
+
$colorPaletteDarkGreenForeground3: var(--colorPaletteDarkGreenForeground3);
|
207
|
+
$colorPaletteDarkGreenBorderActive: var(--colorPaletteDarkGreenBorderActive);
|
208
|
+
$colorPaletteDarkGreenBorder1: var(--colorPaletteDarkGreenBorder1);
|
209
|
+
$colorPaletteDarkGreenBorder2: var(--colorPaletteDarkGreenBorder2);
|
210
|
+
|
211
|
+
$colorPaletteLightTealBackground1: var(--colorPaletteLightTealBackground1);
|
212
|
+
$colorPaletteLightTealBackground2: var(--colorPaletteLightTealBackground2);
|
213
|
+
$colorPaletteLightTealBackground3: var(--colorPaletteLightTealBackground3);
|
214
|
+
$colorPaletteLightTealForeground1: var(--colorPaletteLightTealForeground1);
|
215
|
+
$colorPaletteLightTealForeground2: var(--colorPaletteLightTealForeground2);
|
216
|
+
$colorPaletteLightTealForeground3: var(--colorPaletteLightTealForeground3);
|
217
|
+
$colorPaletteLightTealBorderActive: var(--colorPaletteLightTealBorderActive);
|
218
|
+
$colorPaletteLightTealBorder1: var(--colorPaletteLightTealBorder1);
|
219
|
+
$colorPaletteLightTealBorder2: var(--colorPaletteLightTealBorder2);
|
220
|
+
|
221
|
+
$colorPaletteTealBackground1: var(--colorPaletteTealBackground1);
|
222
|
+
$colorPaletteTealBackground2: var(--colorPaletteTealBackground2);
|
223
|
+
$colorPaletteTealBackground3: var(--colorPaletteTealBackground3);
|
224
|
+
$colorPaletteTealForeground1: var(--colorPaletteTealForeground1);
|
225
|
+
$colorPaletteTealForeground2: var(--colorPaletteTealForeground2);
|
226
|
+
$colorPaletteTealForeground3: var(--colorPaletteTealForeground3);
|
227
|
+
$colorPaletteTealBorderActive: var(--colorPaletteTealBorderActive);
|
228
|
+
$colorPaletteTealBorder1: var(--colorPaletteTealBorder1);
|
229
|
+
$colorPaletteTealBorder2: var(--colorPaletteTealBorder2);
|
230
|
+
|
231
|
+
$colorPaletteDarkTealBackground1: var(--colorPaletteDarkTealBackground1);
|
232
|
+
$colorPaletteDarkTealBackground2: var(--colorPaletteDarkTealBackground2);
|
233
|
+
$colorPaletteDarkTealBackground3: var(--colorPaletteDarkTealBackground3);
|
234
|
+
$colorPaletteDarkTealForeground1: var(--colorPaletteDarkTealForeground1);
|
235
|
+
$colorPaletteDarkTealForeground2: var(--colorPaletteDarkTealForeground2);
|
236
|
+
$colorPaletteDarkTealForeground3: var(--colorPaletteDarkTealForeground3);
|
237
|
+
$colorPaletteDarkTealBorderActive: var(--colorPaletteDarkTealBorderActive);
|
238
|
+
$colorPaletteDarkTealBorder1: var(--colorPaletteDarkTealBorder1);
|
239
|
+
$colorPaletteDarkTealBorder2: var(--colorPaletteDarkTealBorder2);
|
240
|
+
|
241
|
+
$colorPaletteCyanBackground1: var(--colorPaletteCyanBackground1);
|
242
|
+
$colorPaletteCyanBackground2: var(--colorPaletteCyanBackground2);
|
243
|
+
$colorPaletteCyanBackground3: var(--colorPaletteCyanBackground3);
|
244
|
+
$colorPaletteCyanForeground1: var(--colorPaletteCyanForeground1);
|
245
|
+
$colorPaletteCyanForeground2: var(--colorPaletteCyanForeground2);
|
246
|
+
$colorPaletteCyanForeground3: var(--colorPaletteCyanForeground3);
|
247
|
+
$colorPaletteCyanBorderActive: var(--colorPaletteCyanBorderActive);
|
248
|
+
$colorPaletteCyanBorder1: var(--colorPaletteCyanBorder1);
|
249
|
+
$colorPaletteCyanBorder2: var(--colorPaletteCyanBorder2);
|
250
|
+
|
251
|
+
$colorPaletteSteelBackground1: var(--colorPaletteSteelBackground1);
|
252
|
+
$colorPaletteSteelBackground2: var(--colorPaletteSteelBackground2);
|
253
|
+
$colorPaletteSteelBackground3: var(--colorPaletteSteelBackground3);
|
254
|
+
$colorPaletteSteelForeground1: var(--colorPaletteSteelForeground1);
|
255
|
+
$colorPaletteSteelForeground2: var(--colorPaletteSteelForeground2);
|
256
|
+
$colorPaletteSteelForeground3: var(--colorPaletteSteelForeground3);
|
257
|
+
$colorPaletteSteelBorderActive: var(--colorPaletteSteelBorderActive);
|
258
|
+
$colorPaletteSteelBorder1: var(--colorPaletteSteelBorder1);
|
259
|
+
$colorPaletteSteelBorder2: var(--colorPaletteSteelBorder2);
|
260
|
+
|
261
|
+
$colorPaletteLightBlueBackground1: var(--colorPaletteLightBlueBackground1);
|
262
|
+
$colorPaletteLightBlueBackground2: var(--colorPaletteLightBlueBackground2);
|
263
|
+
$colorPaletteLightBlueBackground3: var(--colorPaletteLightBlueBackground3);
|
264
|
+
$colorPaletteLightBlueForeground1: var(--colorPaletteLightBlueForeground1);
|
265
|
+
$colorPaletteLightBlueForeground2: var(--colorPaletteLightBlueForeground2);
|
266
|
+
$colorPaletteLightBlueForeground3: var(--colorPaletteLightBlueForeground3);
|
267
|
+
$colorPaletteLightBlueBorderActive: var(--colorPaletteLightBlueBorderActive);
|
268
|
+
$colorPaletteLightBlueBorder1: var(--colorPaletteLightBlueBorder1);
|
269
|
+
$colorPaletteLightBlueBorder2: var(--colorPaletteLightBlueBorder2);
|
270
|
+
|
271
|
+
$colorPaletteBlueBackground1: var(--colorPaletteBlueBackground1);
|
272
|
+
$colorPaletteBlueBackground2: var(--colorPaletteBlueBackground2);
|
273
|
+
$colorPaletteBlueBackground3: var(--colorPaletteBlueBackground3);
|
274
|
+
$colorPaletteBlueForeground1: var(--colorPaletteBlueForeground1);
|
275
|
+
$colorPaletteBlueForeground2: var(--colorPaletteBlueForeground2);
|
276
|
+
$colorPaletteBlueForeground3: var(--colorPaletteBlueForeground3);
|
277
|
+
$colorPaletteBlueBorderActive: var(--colorPaletteBlueBorderActive);
|
278
|
+
$colorPaletteBlueBorder1: var(--colorPaletteBlueBorder1);
|
279
|
+
$colorPaletteBlueBorder2: var(--colorPaletteBlueBorder2);
|
280
|
+
|
281
|
+
$colorPaletteRoyalBlueBackground1: var(--colorPaletteRoyalBlueBackground1);
|
282
|
+
$colorPaletteRoyalBlueBackground2: var(--colorPaletteRoyalBlueBackground2);
|
283
|
+
$colorPaletteRoyalBlueBackground3: var(--colorPaletteRoyalBlueBackground3);
|
284
|
+
$colorPaletteRoyalBlueForeground1: var(--colorPaletteRoyalBlueForeground1);
|
285
|
+
$colorPaletteRoyalBlueForeground2: var(--colorPaletteRoyalBlueForeground2);
|
286
|
+
$colorPaletteRoyalBlueForeground3: var(--colorPaletteRoyalBlueForeground3);
|
287
|
+
$colorPaletteRoyalBlueBorderActive: var(--colorPaletteRoyalBlueBorderActive);
|
288
|
+
$colorPaletteRoyalBlueBorder1: var(--colorPaletteRoyalBlueBorder1);
|
289
|
+
$colorPaletteRoyalBlueBorder2: var(--colorPaletteRoyalBlueBorder2);
|
290
|
+
|
291
|
+
$colorPaletteDarkBlueBackground1: var(--colorPaletteDarkBlueBackground1);
|
292
|
+
$colorPaletteDarkBlueBackground2: var(--colorPaletteDarkBlueBackground2);
|
293
|
+
$colorPaletteDarkBlueBackground3: var(--colorPaletteDarkBlueBackground3);
|
294
|
+
$colorPaletteDarkBlueForeground1: var(--colorPaletteDarkBlueForeground1);
|
295
|
+
$colorPaletteDarkBlueForeground2: var(--colorPaletteDarkBlueForeground2);
|
296
|
+
$colorPaletteDarkBlueForeground3: var(--colorPaletteDarkBlueForeground3);
|
297
|
+
$colorPaletteDarkBlueBorderActive: var(--colorPaletteDarkBlueBorderActive);
|
298
|
+
$colorPaletteDarkBlueBorder1: var(--colorPaletteDarkBlueBorder1);
|
299
|
+
$colorPaletteDarkBlueBorder2: var(--colorPaletteDarkBlueBorder2);
|
300
|
+
|
301
|
+
$colorPaletteCornflowerBackground1: var(--colorPaletteCornflowerBackground1);
|
302
|
+
$colorPaletteCornflowerBackground2: var(--colorPaletteCornflowerBackground2);
|
303
|
+
$colorPaletteCornflowerBackground3: var(--colorPaletteCornflowerBackground3);
|
304
|
+
$colorPaletteCornflowerForeground1: var(--colorPaletteCornflowerForeground1);
|
305
|
+
$colorPaletteCornflowerForeground2: var(--colorPaletteCornflowerForeground2);
|
306
|
+
$colorPaletteCornflowerForeground3: var(--colorPaletteCornflowerForeground3);
|
307
|
+
$colorPaletteCornflowerBorderActive: var(--colorPaletteCornflowerBorderActive);
|
308
|
+
$colorPaletteCornflowerBorder1: var(--colorPaletteCornflowerBorder1);
|
309
|
+
$colorPaletteCornflowerBorder2: var(--colorPaletteCornflowerBorder2);
|
310
|
+
|
311
|
+
$colorPaletteNavyBackground1: var(--colorPaletteNavyBackground1);
|
312
|
+
$colorPaletteNavyBackground2: var(--colorPaletteNavyBackground2);
|
313
|
+
$colorPaletteNavyBackground3: var(--colorPaletteNavyBackground3);
|
314
|
+
$colorPaletteNavyForeground1: var(--colorPaletteNavyForeground1);
|
315
|
+
$colorPaletteNavyForeground2: var(--colorPaletteNavyForeground2);
|
316
|
+
$colorPaletteNavyForeground3: var(--colorPaletteNavyForeground3);
|
317
|
+
$colorPaletteNavyBorderActive: var(--colorPaletteNavyBorderActive);
|
318
|
+
$colorPaletteNavyBorder1: var(--colorPaletteNavyBorder1);
|
319
|
+
$colorPaletteNavyBorder2: var(--colorPaletteNavyBorder2);
|
320
|
+
|
321
|
+
$colorPaletteLavenderBackground1: var(--colorPaletteLavenderBackground1);
|
322
|
+
$colorPaletteLavenderBackground2: var(--colorPaletteLavenderBackground2);
|
323
|
+
$colorPaletteLavenderBackground3: var(--colorPaletteLavenderBackground3);
|
324
|
+
$colorPaletteLavenderForeground1: var(--colorPaletteLavenderForeground1);
|
325
|
+
$colorPaletteLavenderForeground2: var(--colorPaletteLavenderForeground2);
|
326
|
+
$colorPaletteLavenderForeground3: var(--colorPaletteLavenderForeground3);
|
327
|
+
$colorPaletteLavenderBorderActive: var(--colorPaletteLavenderBorderActive);
|
328
|
+
$colorPaletteLavenderBorder1: var(--colorPaletteLavenderBorder1);
|
329
|
+
$colorPaletteLavenderBorder2: var(--colorPaletteLavenderBorder2);
|
330
|
+
|
331
|
+
$colorPalettePurpleBackground1: var(--colorPalettePurpleBackground1);
|
332
|
+
$colorPalettePurpleBackground2: var(--colorPalettePurpleBackground2);
|
333
|
+
$colorPalettePurpleBackground3: var(--colorPalettePurpleBackground3);
|
334
|
+
$colorPalettePurpleForeground1: var(--colorPalettePurpleForeground1);
|
335
|
+
$colorPalettePurpleForeground2: var(--colorPalettePurpleForeground2);
|
336
|
+
$colorPalettePurpleForeground3: var(--colorPalettePurpleForeground3);
|
337
|
+
$colorPalettePurpleBorderActive: var(--colorPalettePurpleBorderActive);
|
338
|
+
$colorPalettePurpleBorder1: var(--colorPalettePurpleBorder1);
|
339
|
+
$colorPalettePurpleBorder2: var(--colorPalettePurpleBorder2);
|
340
|
+
|
341
|
+
$colorPaletteDarkPurpleBackground1: var(--colorPaletteDarkPurpleBackground1);
|
342
|
+
$colorPaletteDarkPurpleBackground2: var(--colorPaletteDarkPurpleBackground2);
|
343
|
+
$colorPaletteDarkPurpleBackground3: var(--colorPaletteDarkPurpleBackground3);
|
344
|
+
$colorPaletteDarkPurpleForeground1: var(--colorPaletteDarkPurpleForeground1);
|
345
|
+
$colorPaletteDarkPurpleForeground2: var(--colorPaletteDarkPurpleForeground2);
|
346
|
+
$colorPaletteDarkPurpleForeground3: var(--colorPaletteDarkPurpleForeground3);
|
347
|
+
$colorPaletteDarkPurpleBorderActive: var(--colorPaletteDarkPurpleBorderActive);
|
348
|
+
$colorPaletteDarkPurpleBorder1: var(--colorPaletteDarkPurpleBorder1);
|
349
|
+
$colorPaletteDarkPurpleBorder2: var(--colorPaletteDarkPurpleBorder2);
|
350
|
+
|
351
|
+
$colorPaletteOrchidBackground1: var(--colorPaletteOrchidBackground1);
|
352
|
+
$colorPaletteOrchidBackground2: var(--colorPaletteOrchidBackground2);
|
353
|
+
$colorPaletteOrchidBackground3: var(--colorPaletteOrchidBackground3);
|
354
|
+
$colorPaletteOrchidForeground1: var(--colorPaletteOrchidForeground1);
|
355
|
+
$colorPaletteOrchidForeground2: var(--colorPaletteOrchidForeground2);
|
356
|
+
$colorPaletteOrchidForeground3: var(--colorPaletteOrchidForeground3);
|
357
|
+
$colorPaletteOrchidBorderActive: var(--colorPaletteOrchidBorderActive);
|
358
|
+
$colorPaletteOrchidBorder1: var(--colorPaletteOrchidBorder1);
|
359
|
+
$colorPaletteOrchidBorder2: var(--colorPaletteOrchidBorder2);
|
360
|
+
|
361
|
+
$colorPaletteGrapeBackground1: var(--colorPaletteGrapeBackground1);
|
362
|
+
$colorPaletteGrapeBackground2: var(--colorPaletteGrapeBackground2);
|
363
|
+
$colorPaletteGrapeBackground3: var(--colorPaletteGrapeBackground3);
|
364
|
+
$colorPaletteGrapeForeground1: var(--colorPaletteGrapeForeground1);
|
365
|
+
$colorPaletteGrapeForeground2: var(--colorPaletteGrapeForeground2);
|
366
|
+
$colorPaletteGrapeForeground3: var(--colorPaletteGrapeForeground3);
|
367
|
+
$colorPaletteGrapeBorderActive: var(--colorPaletteGrapeBorderActive);
|
368
|
+
$colorPaletteGrapeBorder1: var(--colorPaletteGrapeBorder1);
|
369
|
+
$colorPaletteGrapeBorder2: var(--colorPaletteGrapeBorder2);
|
370
|
+
|
371
|
+
$colorPaletteBerryBackground1: var(--colorPaletteBerryBackground1);
|
372
|
+
$colorPaletteBerryBackground2: var(--colorPaletteBerryBackground2);
|
373
|
+
$colorPaletteBerryBackground3: var(--colorPaletteBerryBackground3);
|
374
|
+
$colorPaletteBerryForeground1: var(--colorPaletteBerryForeground1);
|
375
|
+
$colorPaletteBerryForeground2: var(--colorPaletteBerryForeground2);
|
376
|
+
$colorPaletteBerryForeground3: var(--colorPaletteBerryForeground3);
|
377
|
+
$colorPaletteBerryBorderActive: var(--colorPaletteBerryBorderActive);
|
378
|
+
$colorPaletteBerryBorder1: var(--colorPaletteBerryBorder1);
|
379
|
+
$colorPaletteBerryBorder2: var(--colorPaletteBerryBorder2);
|
380
|
+
|
381
|
+
$colorPaletteLilacBackground1: var(--colorPaletteLilacBackground1);
|
382
|
+
$colorPaletteLilacBackground2: var(--colorPaletteLilacBackground2);
|
383
|
+
$colorPaletteLilacBackground3: var(--colorPaletteLilacBackground3);
|
384
|
+
$colorPaletteLilacForeground1: var(--colorPaletteLilacForeground1);
|
385
|
+
$colorPaletteLilacForeground2: var(--colorPaletteLilacForeground2);
|
386
|
+
$colorPaletteLilacForeground3: var(--colorPaletteLilacForeground3);
|
387
|
+
$colorPaletteLilacBorderActive: var(--colorPaletteLilacBorderActive);
|
388
|
+
$colorPaletteLilacBorder1: var(--colorPaletteLilacBorder1);
|
389
|
+
$colorPaletteLilacBorder2: var(--colorPaletteLilacBorder2);
|
390
|
+
|
391
|
+
$colorPalettePinkBackground1: var(--colorPalettePinkBackground1);
|
392
|
+
$colorPalettePinkBackground2: var(--colorPalettePinkBackground2);
|
393
|
+
$colorPalettePinkBackground3: var(--colorPalettePinkBackground3);
|
394
|
+
$colorPalettePinkForeground1: var(--colorPalettePinkForeground1);
|
395
|
+
$colorPalettePinkForeground2: var(--colorPalettePinkForeground2);
|
396
|
+
$colorPalettePinkForeground3: var(--colorPalettePinkForeground3);
|
397
|
+
$colorPalettePinkBorderActive: var(--colorPalettePinkBorderActive);
|
398
|
+
$colorPalettePinkBorder1: var(--colorPalettePinkBorder1);
|
399
|
+
$colorPalettePinkBorder2: var(--colorPalettePinkBorder2);
|
400
|
+
|
401
|
+
$colorPaletteHotPinkBackground1: var(--colorPaletteHotPinkBackground1);
|
402
|
+
$colorPaletteHotPinkBackground2: var(--colorPaletteHotPinkBackground2);
|
403
|
+
$colorPaletteHotPinkBackground3: var(--colorPaletteHotPinkBackground3);
|
404
|
+
$colorPaletteHotPinkForeground1: var(--colorPaletteHotPinkForeground1);
|
405
|
+
$colorPaletteHotPinkForeground2: var(--colorPaletteHotPinkForeground2);
|
406
|
+
$colorPaletteHotPinkForeground3: var(--colorPaletteHotPinkForeground3);
|
407
|
+
$colorPaletteHotPinkBorderActive: var(--colorPaletteHotPinkBorderActive);
|
408
|
+
$colorPaletteHotPinkBorder1: var(--colorPaletteHotPinkBorder1);
|
409
|
+
$colorPaletteHotPinkBorder2: var(--colorPaletteHotPinkBorder2);
|
410
|
+
|
411
|
+
$colorPaletteMagentaBackground1: var(--colorPaletteMagentaBackground1);
|
412
|
+
$colorPaletteMagentaBackground2: var(--colorPaletteMagentaBackground2);
|
413
|
+
$colorPaletteMagentaBackground3: var(--colorPaletteMagentaBackground3);
|
414
|
+
$colorPaletteMagentaForeground1: var(--colorPaletteMagentaForeground1);
|
415
|
+
$colorPaletteMagentaForeground2: var(--colorPaletteMagentaForeground2);
|
416
|
+
$colorPaletteMagentaForeground3: var(--colorPaletteMagentaForeground3);
|
417
|
+
$colorPaletteMagentaBorderActive: var(--colorPaletteMagentaBorderActive);
|
418
|
+
$colorPaletteMagentaBorder1: var(--colorPaletteMagentaBorder1);
|
419
|
+
$colorPaletteMagentaBorder2: var(--colorPaletteMagentaBorder2);
|
420
|
+
|
421
|
+
$colorPalettePlumBackground1: var(--colorPalettePlumBackground1);
|
422
|
+
$colorPalettePlumBackground2: var(--colorPalettePlumBackground2);
|
423
|
+
$colorPalettePlumBackground3: var(--colorPalettePlumBackground3);
|
424
|
+
$colorPalettePlumForeground1: var(--colorPalettePlumForeground1);
|
425
|
+
$colorPalettePlumForeground2: var(--colorPalettePlumForeground2);
|
426
|
+
$colorPalettePlumForeground3: var(--colorPalettePlumForeground3);
|
427
|
+
$colorPalettePlumBorderActive: var(--colorPalettePlumBorderActive);
|
428
|
+
$colorPalettePlumBorder1: var(--colorPalettePlumBorder1);
|
429
|
+
$colorPalettePlumBorder2: var(--colorPalettePlumBorder2);
|
430
|
+
|
431
|
+
$colorPaletteBeigeBackground1: var(--colorPaletteBeigeBackground1);
|
432
|
+
$colorPaletteBeigeBackground2: var(--colorPaletteBeigeBackground2);
|
433
|
+
$colorPaletteBeigeBackground3: var(--colorPaletteBeigeBackground3);
|
434
|
+
$colorPaletteBeigeForeground1: var(--colorPaletteBeigeForeground1);
|
435
|
+
$colorPaletteBeigeForeground2: var(--colorPaletteBeigeForeground2);
|
436
|
+
$colorPaletteBeigeForeground3: var(--colorPaletteBeigeForeground3);
|
437
|
+
$colorPaletteBeigeBorderActive: var(--colorPaletteBeigeBorderActive);
|
438
|
+
$colorPaletteBeigeBorder1: var(--colorPaletteBeigeBorder1);
|
439
|
+
$colorPaletteBeigeBorder2: var(--colorPaletteBeigeBorder2);
|
440
|
+
|
441
|
+
$colorPaletteMinkBackground1: var(--colorPaletteMinkBackground1);
|
442
|
+
$colorPaletteMinkBackground2: var(--colorPaletteMinkBackground2);
|
443
|
+
$colorPaletteMinkBackground3: var(--colorPaletteMinkBackground3);
|
444
|
+
$colorPaletteMinkForeground1: var(--colorPaletteMinkForeground1);
|
445
|
+
$colorPaletteMinkForeground2: var(--colorPaletteMinkForeground2);
|
446
|
+
$colorPaletteMinkForeground3: var(--colorPaletteMinkForeground3);
|
447
|
+
$colorPaletteMinkBorderActive: var(--colorPaletteMinkBorderActive);
|
448
|
+
$colorPaletteMinkBorder1: var(--colorPaletteMinkBorder1);
|
449
|
+
$colorPaletteMinkBorder2: var(--colorPaletteMinkBorder2);
|
450
|
+
|
451
|
+
$colorPaletteSilverBackground1: var(--colorPaletteSilverBackground1);
|
452
|
+
$colorPaletteSilverBackground2: var(--colorPaletteSilverBackground2);
|
453
|
+
$colorPaletteSilverBackground3: var(--colorPaletteSilverBackground3);
|
454
|
+
$colorPaletteSilverForeground1: var(--colorPaletteSilverForeground1);
|
455
|
+
$colorPaletteSilverForeground2: var(--colorPaletteSilverForeground2);
|
456
|
+
$colorPaletteSilverForeground3: var(--colorPaletteSilverForeground3);
|
457
|
+
$colorPaletteSilverBorderActive: var(--colorPaletteSilverBorderActive);
|
458
|
+
$colorPaletteSilverBorder1: var(--colorPaletteSilverBorder1);
|
459
|
+
$colorPaletteSilverBorder2: var(--colorPaletteSilverBorder2);
|
460
|
+
|
461
|
+
$colorPalettePlatinumBackground1: var(--colorPalettePlatinumBackground1);
|
462
|
+
$colorPalettePlatinumBackground2: var(--colorPalettePlatinumBackground2);
|
463
|
+
$colorPalettePlatinumBackground3: var(--colorPalettePlatinumBackground3);
|
464
|
+
$colorPalettePlatinumForeground1: var(--colorPalettePlatinumForeground1);
|
465
|
+
$colorPalettePlatinumForeground2: var(--colorPalettePlatinumForeground2);
|
466
|
+
$colorPalettePlatinumForeground3: var(--colorPalettePlatinumForeground3);
|
467
|
+
$colorPalettePlatinumBorderActive: var(--colorPalettePlatinumBorderActive);
|
468
|
+
$colorPalettePlatinumBorder1: var(--colorPalettePlatinumBorder1);
|
469
|
+
$colorPalettePlatinumBorder2: var(--colorPalettePlatinumBorder2);
|
470
|
+
|
471
|
+
$colorPaletteAnchorBackground1: var(--colorPaletteAnchorBackground1);
|
472
|
+
$colorPaletteAnchorBackground2: var(--colorPaletteAnchorBackground2);
|
473
|
+
$colorPaletteAnchorBackground3: var(--colorPaletteAnchorBackground3);
|
474
|
+
$colorPaletteAnchorForeground1: var(--colorPaletteAnchorForeground1);
|
475
|
+
$colorPaletteAnchorForeground2: var(--colorPaletteAnchorForeground2);
|
476
|
+
$colorPaletteAnchorForeground3: var(--colorPaletteAnchorForeground3);
|
477
|
+
$colorPaletteAnchorBorderActive: var(--colorPaletteAnchorBorderActive);
|
478
|
+
$colorPaletteAnchorBorder1: var(--colorPaletteAnchorBorder1);
|
479
|
+
$colorPaletteAnchorBorder2: var(--colorPaletteAnchorBorder2);
|
480
|
+
|
481
|
+
$colorPaletteCharcoalBackground1: var(--colorPaletteCharcoalBackground1);
|
482
|
+
$colorPaletteCharcoalBackground2: var(--colorPaletteCharcoalBackground2);
|
483
|
+
$colorPaletteCharcoalBackground3: var(--colorPaletteCharcoalBackground3);
|
484
|
+
$colorPaletteCharcoalForeground1: var(--colorPaletteCharcoalForeground1);
|
485
|
+
$colorPaletteCharcoalForeground2: var(--colorPaletteCharcoalForeground2);
|
486
|
+
$colorPaletteCharcoalForeground3: var(--colorPaletteCharcoalForeground3);
|
487
|
+
$colorPaletteCharcoalBorderActive: var(--colorPaletteCharcoalBorderActive);
|
488
|
+
$colorPaletteCharcoalBorder1: var(--colorPaletteCharcoalBorder1);
|
489
|
+
$colorPaletteCharcoalBorder2: var(--colorPaletteCharcoalBorder2);
|
@@ -0,0 +1,142 @@
|
|
1
|
+
$colorNeutralForeground1: var(--colorNeutralForeground1);
|
2
|
+
$colorNeutralForeground1Hover: var(--colorNeutralForeground1Hover);
|
3
|
+
$colorNeutralForeground1Pressed: var(--colorNeutralForeground1Pressed);
|
4
|
+
$colorNeutralForeground1Selected: var(--colorNeutralForeground1Selected);
|
5
|
+
$colorNeutralForeground2: var(--colorNeutralForeground2);
|
6
|
+
$colorNeutralForeground2Hover: var(--colorNeutralForeground2Hover);
|
7
|
+
$colorNeutralForeground2Pressed: var(--colorNeutralForeground2Pressed);
|
8
|
+
$colorNeutralForeground2Selected: var(--colorNeutralForeground2Selected);
|
9
|
+
$colorNeutralForeground2BrandHover: var(--colorNeutralForeground2BrandHover);
|
10
|
+
$colorNeutralForeground2BrandPressed: var(--colorNeutralForeground2BrandPressed);
|
11
|
+
$colorNeutralForeground2BrandSelected: var(--colorNeutralForeground2BrandSelected);
|
12
|
+
$colorNeutralForeground3: var(--colorNeutralForeground3);
|
13
|
+
$colorNeutralForeground3Hover: var(--colorNeutralForeground3Hover);
|
14
|
+
$colorNeutralForeground3Pressed: var(--colorNeutralForeground3Pressed);
|
15
|
+
$colorNeutralForeground3Selected: var(--colorNeutralForeground3Selected);
|
16
|
+
$colorNeutralForeground3BrandHover: var(--colorNeutralForeground3BrandHover);
|
17
|
+
$colorNeutralForeground3BrandPressed: var(--colorNeutralForeground3BrandPressed);
|
18
|
+
$colorNeutralForeground3BrandSelected: var(--colorNeutralForeground3BrandSelected);
|
19
|
+
$colorNeutralForeground4: var(--colorNeutralForeground4);
|
20
|
+
$colorNeutralForegroundDisabled: var(--colorNeutralForegroundDisabled);
|
21
|
+
$colorNeutralForegroundInvertedDisabled: var(--colorNeutralForegroundInvertedDisabled);
|
22
|
+
$colorBrandForegroundLink: var(--colorBrandForegroundLink);
|
23
|
+
$colorBrandForegroundLinkHover: var(--colorBrandForegroundLinkHover);
|
24
|
+
$colorBrandForegroundLinkPressed: var(--colorBrandForegroundLinkPressed);
|
25
|
+
$colorBrandForegroundLinkSelected: var(--colorBrandForegroundLinkSelected);
|
26
|
+
$colorNeutralForeground2Link: var(--colorNeutralForeground2Link);
|
27
|
+
$colorNeutralForeground2LinkHover: var(--colorNeutralForeground2LinkHover);
|
28
|
+
$colorNeutralForeground2LinkPressed: var(--colorNeutralForeground2LinkPressed);
|
29
|
+
$colorNeutralForeground2LinkSelected: var(--colorNeutralForeground2LinkSelected);
|
30
|
+
$colorCompoundBrandForeground1: var(--colorCompoundBrandForeground1);
|
31
|
+
$colorCompoundBrandForeground1Hover: var(--colorCompoundBrandForeground1Hover);
|
32
|
+
$colorCompoundBrandForeground1Pressed: var(--colorCompoundBrandForeground1Pressed);
|
33
|
+
$colorBrandForeground1: var(--colorBrandForeground1);
|
34
|
+
$colorBrandForeground2: var(--colorBrandForeground2);
|
35
|
+
$colorNeutralForeground1Static: var(--colorNeutralForeground1Static);
|
36
|
+
$colorNeutralForegroundInverted: var(--colorNeutralForegroundInverted);
|
37
|
+
$colorNeutralForegroundInvertedHover: var(--colorNeutralForegroundInvertedHover);
|
38
|
+
$colorNeutralForegroundInvertedPressed: var(--colorNeutralForegroundInvertedPressed);
|
39
|
+
$colorNeutralForegroundInvertedSelected: var(--colorNeutralForegroundInvertedSelected);
|
40
|
+
$colorNeutralForegroundOnBrand: var(--colorNeutralForegroundOnBrand);
|
41
|
+
$colorNeutralForegroundInvertedLink: var(--colorNeutralForegroundInvertedLink);
|
42
|
+
$colorNeutralForegroundInvertedLinkHover: var(--colorNeutralForegroundInvertedLinkHover);
|
43
|
+
$colorNeutralForegroundInvertedLinkPressed: var(--colorNeutralForegroundInvertedLinkPressed);
|
44
|
+
$colorNeutralForegroundInvertedLinkSelected: var(--colorNeutralForegroundInvertedLinkSelected);
|
45
|
+
$colorBrandForegroundInverted: var(--colorBrandForegroundInverted);
|
46
|
+
$colorBrandForegroundInvertedHover: var(--colorBrandForegroundInvertedHover);
|
47
|
+
$colorBrandForegroundInvertedPressed: var(--colorBrandForegroundInvertedPressed);
|
48
|
+
$colorBrandForegroundOnLight: var(--colorBrandForegroundOnLight);
|
49
|
+
$colorBrandForegroundOnLightHover: var(--colorBrandForegroundOnLightHover);
|
50
|
+
$colorBrandForegroundOnLightPressed: var(--colorBrandForegroundOnLightPressed);
|
51
|
+
$colorBrandForegroundOnLightSelected: var(--colorBrandForegroundOnLightSelected);
|
52
|
+
$colorNeutralBackground1: var(--colorNeutralBackground1);
|
53
|
+
$colorNeutralBackground1Hover: var(--colorNeutralBackground1Hover);
|
54
|
+
$colorNeutralBackground1Pressed: var(--colorNeutralBackground1Pressed);
|
55
|
+
$colorNeutralBackground1Selected: var(--colorNeutralBackground1Selected);
|
56
|
+
$colorNeutralBackground2: var(--colorNeutralBackground2);
|
57
|
+
$colorNeutralBackground2Hover: var(--colorNeutralBackground2Hover);
|
58
|
+
$colorNeutralBackground2Pressed: var(--colorNeutralBackground2Pressed);
|
59
|
+
$colorNeutralBackground2Selected: var(--colorNeutralBackground2Selected);
|
60
|
+
$colorNeutralBackground3: var(--colorNeutralBackground3);
|
61
|
+
$colorNeutralBackground3Hover: var(--colorNeutralBackground3Hover);
|
62
|
+
$colorNeutralBackground3Pressed: var(--colorNeutralBackground3Pressed);
|
63
|
+
$colorNeutralBackground3Selected: var(--colorNeutralBackground3Selected);
|
64
|
+
$colorNeutralBackground4: var(--colorNeutralBackground4);
|
65
|
+
$colorNeutralBackground4Hover: var(--colorNeutralBackground4Hover);
|
66
|
+
$colorNeutralBackground4Pressed: var(--colorNeutralBackground4Pressed);
|
67
|
+
$colorNeutralBackground4Selected: var(--colorNeutralBackground4Selected);
|
68
|
+
$colorNeutralBackground5: var(--colorNeutralBackground5);
|
69
|
+
$colorNeutralBackground5Hover: var(--colorNeutralBackground5Hover);
|
70
|
+
$colorNeutralBackground5Pressed: var(--colorNeutralBackground5Pressed);
|
71
|
+
$colorNeutralBackground5Selected: var(--colorNeutralBackground5Selected);
|
72
|
+
$colorNeutralBackground6: var(--colorNeutralBackground6);
|
73
|
+
$colorNeutralBackgroundInverted: var(--colorNeutralBackgroundInverted);
|
74
|
+
$colorSubtleBackground: var(--colorSubtleBackground);
|
75
|
+
$colorSubtleBackgroundHover: var(--colorSubtleBackgroundHover);
|
76
|
+
$colorSubtleBackgroundPressed: var(--colorSubtleBackgroundPressed);
|
77
|
+
$colorSubtleBackgroundSelected: var(--colorSubtleBackgroundSelected);
|
78
|
+
$colorSubtleBackgroundLightAlphaHover: var(--colorSubtleBackgroundLightAlphaHover);
|
79
|
+
$colorSubtleBackgroundLightAlphaPressed: var(--colorSubtleBackgroundLightAlphaPressed);
|
80
|
+
$colorSubtleBackgroundLightAlphaSelected: var(--colorSubtleBackgroundLightAlphaSelected);
|
81
|
+
$colorSubtleBackgroundInverted: var(--colorSubtleBackgroundInverted);
|
82
|
+
$colorSubtleBackgroundInvertedHover: var(--colorSubtleBackgroundInvertedHover);
|
83
|
+
$colorSubtleBackgroundInvertedPressed: var(--colorSubtleBackgroundInvertedPressed);
|
84
|
+
$colorSubtleBackgroundInvertedSelected: var(--colorSubtleBackgroundInvertedSelected);
|
85
|
+
$colorTransparentBackground: var(--colorTransparentBackground);
|
86
|
+
$colorTransparentBackgroundHover: var(--colorTransparentBackgroundHover);
|
87
|
+
$colorTransparentBackgroundPressed: var(--colorTransparentBackgroundPressed);
|
88
|
+
$colorTransparentBackgroundSelected: var(--colorTransparentBackgroundSelected);
|
89
|
+
$colorNeutralBackgroundDisabled: var(--colorNeutralBackgroundDisabled);
|
90
|
+
$colorNeutralBackgroundInvertedDisabled: var(--colorNeutralBackgroundInvertedDisabled);
|
91
|
+
$colorNeutralStencil1: var(--colorNeutralStencil1);
|
92
|
+
$colorNeutralStencil2: var(--colorNeutralStencil2);
|
93
|
+
$colorBackgroundOverlay: var(--colorBackgroundOverlay);
|
94
|
+
$colorScrollbarOverlay: var(--colorScrollbarOverlay);
|
95
|
+
$colorBrandBackground: var(--colorBrandBackground);
|
96
|
+
$colorBrandBackgroundHover: var(--colorBrandBackgroundHover);
|
97
|
+
$colorBrandBackgroundPressed: var(--colorBrandBackgroundPressed);
|
98
|
+
$colorBrandBackgroundSelected: var(--colorBrandBackgroundSelected);
|
99
|
+
$colorCompoundBrandBackground: var(--colorCompoundBrandBackground);
|
100
|
+
$colorCompoundBrandBackgroundHover: var(--colorCompoundBrandBackgroundHover);
|
101
|
+
$colorCompoundBrandBackgroundPressed: var(--colorCompoundBrandBackgroundPressed);
|
102
|
+
$colorBrandBackgroundStatic: var(--colorBrandBackgroundStatic);
|
103
|
+
$colorBrandBackground2: var(--colorBrandBackground2);
|
104
|
+
$colorBrandBackgroundInverted: var(--colorBrandBackgroundInverted);
|
105
|
+
$colorBrandBackgroundInvertedHover: var(--colorBrandBackgroundInvertedHover);
|
106
|
+
$colorBrandBackgroundInvertedPressed: var(--colorBrandBackgroundInvertedPressed);
|
107
|
+
$colorBrandBackgroundInvertedSelected: var(--colorBrandBackgroundInvertedSelected);
|
108
|
+
$colorNeutralStrokeAccessible: var(--colorNeutralStrokeAccessible);
|
109
|
+
$colorNeutralStrokeAccessibleHover: var(--colorNeutralStrokeAccessibleHover);
|
110
|
+
$colorNeutralStrokeAccessiblePressed: var(--colorNeutralStrokeAccessiblePressed);
|
111
|
+
$colorNeutralStrokeAccessibleSelected: var(--colorNeutralStrokeAccessibleSelected);
|
112
|
+
$colorNeutralStroke1: var(--colorNeutralStroke1);
|
113
|
+
$colorNeutralStroke1Hover: var(--colorNeutralStroke1Hover);
|
114
|
+
$colorNeutralStroke1Pressed: var(--colorNeutralStroke1Pressed);
|
115
|
+
$colorNeutralStroke1Selected: var(--colorNeutralStroke1Selected);
|
116
|
+
$colorNeutralStroke2: var(--colorNeutralStroke2);
|
117
|
+
$colorNeutralStroke3: var(--colorNeutralStroke3);
|
118
|
+
$colorNeutralStrokeOnBrand: var(--colorNeutralStrokeOnBrand);
|
119
|
+
$colorNeutralStrokeOnBrand2: var(--colorNeutralStrokeOnBrand2);
|
120
|
+
$colorNeutralStrokeOnBrand2Hover: var(--colorNeutralStrokeOnBrand2Hover);
|
121
|
+
$colorNeutralStrokeOnBrand2Pressed: var(--colorNeutralStrokeOnBrand2Pressed);
|
122
|
+
$colorNeutralStrokeOnBrand2Selected: var(--colorNeutralStrokeOnBrand2Selected);
|
123
|
+
$colorBrandStroke1: var(--colorBrandStroke1);
|
124
|
+
$colorBrandStroke2: var(--colorBrandStroke2);
|
125
|
+
$colorCompoundBrandStroke: var(--colorCompoundBrandStroke);
|
126
|
+
$colorCompoundBrandStrokeHover: var(--colorCompoundBrandStrokeHover);
|
127
|
+
$colorCompoundBrandStrokePressed: var(--colorCompoundBrandStrokePressed);
|
128
|
+
$colorNeutralStrokeDisabled: var(--colorNeutralStrokeDisabled);
|
129
|
+
$colorNeutralStrokeInvertedDisabled: var(--colorNeutralStrokeInvertedDisabled);
|
130
|
+
$colorTransparentStroke: var(--colorTransparentStroke);
|
131
|
+
$colorTransparentStrokeInteractive: var(--colorTransparentStrokeInteractive);
|
132
|
+
$colorTransparentStrokeDisabled: var(--colorTransparentStrokeDisabled);
|
133
|
+
$colorStrokeFocus1: var(--colorStrokeFocus1);
|
134
|
+
$colorStrokeFocus2: var(--colorStrokeFocus2);
|
135
|
+
$colorNeutralShadowAmbient: var(--colorNeutralShadowAmbient);
|
136
|
+
$colorNeutralShadowKey: var(--colorNeutralShadowKey);
|
137
|
+
$colorNeutralShadowAmbientLighter: var(--colorNeutralShadowAmbientLighter);
|
138
|
+
$colorNeutralShadowKeyLighter: var(--colorNeutralShadowKeyLighter);
|
139
|
+
$colorNeutralShadowAmbientDarker: var(--colorNeutralShadowAmbientDarker);
|
140
|
+
$colorNeutralShadowKeyDarker: var(--colorNeutralShadowKeyDarker);
|
141
|
+
$colorBrandShadowAmbient: var(--colorBrandShadowAmbient);
|
142
|
+
$colorBrandShadowKey: var(--colorBrandShadowKey);
|
@@ -0,0 +1,9 @@
|
|
1
|
+
$curveAccelerateMax: var(--curveAccelerateMax);
|
2
|
+
$curveAccelerateMid: var(--curveAccelerateMid);
|
3
|
+
$curveAccelerateMin: var(--curveAccelerateMin);
|
4
|
+
$curveDecelerateMax: var(--curveDecelerateMax);
|
5
|
+
$curveDecelerateMid: var(--curveDecelerateMid);
|
6
|
+
$curveDecelerateMin: var(--curveDecelerateMin);
|
7
|
+
$curveEasyEaseMax: var(--curveEasyEaseMax);
|
8
|
+
$curveEasyEase: var(--curveEasyEase);
|
9
|
+
$curveLinear: var(--curveLinear);
|
@@ -0,0 +1,7 @@
|
|
1
|
+
$durationUltraFast: var(--durationUltraFast);
|
2
|
+
$durationFaster: var(--durationFaster);
|
3
|
+
$durationFast: var(--durationFast);
|
4
|
+
$durationNormal: var(--durationNormal);
|
5
|
+
$durationSlow: var(--durationSlow);
|
6
|
+
$durationSlower: var(--durationSlower);
|
7
|
+
$durationUltraSlow: var(--durationUltraSlow);
|
@@ -0,0 +1,29 @@
|
|
1
|
+
$fontSizeBase100: var(--fontSizeBase100);
|
2
|
+
$fontSizeBase200: var(--fontSizeBase200);
|
3
|
+
$fontSizeBase300: var(--fontSizeBase300);
|
4
|
+
$fontSizeBase400: var(--fontSizeBase400);
|
5
|
+
$fontSizeBase500: var(--fontSizeBase500);
|
6
|
+
$fontSizeBase600: var(--fontSizeBase600);
|
7
|
+
$fontSizeHero700: var(--fontSizeHero700);
|
8
|
+
$fontSizeHero800: var(--fontSizeHero800);
|
9
|
+
$fontSizeHero900: var(--fontSizeHero900);
|
10
|
+
$fontSizeHero1000: var(--fontSizeHero1000);
|
11
|
+
|
12
|
+
$lineHeightBase100: var(--lineHeightBase100);
|
13
|
+
$lineHeightBase200: var(--lineHeightBase200);
|
14
|
+
$lineHeightBase300: var(--lineHeightBase300);
|
15
|
+
$lineHeightBase400: var(--lineHeightBase400);
|
16
|
+
$lineHeightBase500: var(--lineHeightBase500);
|
17
|
+
$lineHeightBase600: var(--lineHeightBase600);
|
18
|
+
$lineHeightHero700: var(--lineHeightHero700);
|
19
|
+
$lineHeightHero800: var(--lineHeightHero800);
|
20
|
+
$lineHeightHero900: var(--lineHeightHero900);
|
21
|
+
$lineHeightHero1000: var(--lineHeightHero1000);
|
22
|
+
|
23
|
+
$fontWeightRegular: var(--fontWeightRegular);
|
24
|
+
$fontWeightMedium: var(--fontWeightMedium);
|
25
|
+
$fontWeightSemibold: var(--fontWeightSemibold);
|
26
|
+
|
27
|
+
$fontFamilyBase: var(--fontFamilyBase);
|
28
|
+
$fontFamilyMonospace: var(--fontFamilyMonospace);
|
29
|
+
$fontFamilyNumeric: var(--fontFamilyNumeric);
|
@@ -0,0 +1,13 @@
|
|
1
|
+
$shadow2: var(--shadow2);
|
2
|
+
$shadow4: var(--shadow4);
|
3
|
+
$shadow8: var(--shadow8);
|
4
|
+
$shadow16: var(--shadow16);
|
5
|
+
$shadow28: var(--shadow28);
|
6
|
+
$shadow64: var(--shadow64);
|
7
|
+
|
8
|
+
$shadow2Brand: var(--shadow2Brand);
|
9
|
+
$shadow4Brand: var(--shadow4Brand);
|
10
|
+
$shadow8Brand: var(--shadow8Brand);
|
11
|
+
$shadow16Brand: var(--shadow16Brand);
|
12
|
+
$shadow28Brand: var(--shadow28Brand);
|
13
|
+
$shadow64Brand: var(--shadow64Brand);
|
@@ -0,0 +1,22 @@
|
|
1
|
+
$spacingHorizontalNone: var(--spacingHorizontalNone);
|
2
|
+
$spacingHorizontalXXS: var(--spacingHorizontalXXS);
|
3
|
+
$spacingHorizontalXS: var(--spacingHorizontalXS);
|
4
|
+
$spacingHorizontalSNudge: var(--spacingHorizontalSNudge);
|
5
|
+
$spacingHorizontalS: var(--spacingHorizontalS);
|
6
|
+
$spacingHorizontalMNudge: var(--spacingHorizontalMNudge);
|
7
|
+
$spacingHorizontalM: var(--spacingHorizontalM);
|
8
|
+
$spacingHorizontalL: var(--spacingHorizontalL);
|
9
|
+
$spacingHorizontalXL: var(--spacingHorizontalXL);
|
10
|
+
$spacingHorizontalXXL: var(--spacingHorizontalXXL);
|
11
|
+
$spacingHorizontalXXXL: var(--spacingHorizontalXXXL);
|
12
|
+
$spacingVerticalNone: var(--spacingVerticalNone);
|
13
|
+
$spacingVerticalXXS: var(--spacingVerticalXXS);
|
14
|
+
$spacingVerticalXS: var(--spacingVerticalXS);
|
15
|
+
$spacingVerticalSNudge: var(--spacingVerticalSNudge);
|
16
|
+
$spacingVerticalS: var(--spacingVerticalS);
|
17
|
+
$spacingVerticalMNudge: var(--spacingVerticalMNudge);
|
18
|
+
$spacingVerticalM: var(--spacingVerticalM);
|
19
|
+
$spacingVerticalL: var(--spacingVerticalL);
|
20
|
+
$spacingVerticalXL: var(--spacingVerticalXL);
|
21
|
+
$spacingVerticalXXL: var(--spacingVerticalXXL);
|
22
|
+
$spacingVerticalXXXL: var(--spacingVerticalXXXL);
|
package/sass/tokens.scss
ADDED