@nswds/tokens 2.0.0 → 2.1.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/.github/workflows/opencommit.yml +36 -0
- package/.github/workflows/release.yml +30 -0
- package/.prettierignore +18 -0
- package/.prettierrc +8 -0
- package/CHANGELOG.md +37 -0
- package/README.md +2 -1
- package/dist/css/colors/global/hex.css +191 -191
- package/dist/css/colors/global/hsl.css +191 -191
- package/dist/css/colors/global/oklch.css +191 -191
- package/dist/css/colors/global/rgb.css +191 -191
- package/dist/css/colors/themes/masterbrand/hex.css +1 -2
- package/dist/css/colors/themes/masterbrand/hsl.css +1 -2
- package/dist/css/colors/themes/masterbrand/oklch.css +1 -2
- package/dist/css/colors/themes/masterbrand/rgb.css +1 -2
- package/dist/js/colors/global/hex.js +191 -191
- package/dist/js/colors/global/hsl.js +191 -191
- package/dist/js/colors/global/oklch.js +191 -191
- package/dist/js/colors/global/rgb.js +191 -191
- package/dist/js/colors/themes/masterbrand/hex.js +57 -57
- package/dist/js/colors/themes/masterbrand/hsl.js +57 -57
- package/dist/js/colors/themes/masterbrand/oklch.js +57 -57
- package/dist/js/colors/themes/masterbrand/rgb.js +57 -57
- package/dist/scss/colors/global/hex.scss +1 -1
- package/dist/scss/colors/global/hsl.scss +1 -1
- package/dist/scss/colors/global/oklch.scss +1 -1
- package/dist/scss/colors/global/rgb.scss +1 -1
- package/dist/scss/colors/themes/masterbrand/hex.scss +1 -1
- package/dist/scss/colors/themes/masterbrand/hsl.scss +1 -1
- package/dist/scss/colors/themes/masterbrand/oklch.scss +1 -1
- package/dist/scss/colors/themes/masterbrand/rgb.scss +1 -1
- package/dist/tailwind/colors/global/hex.css +191 -191
- package/dist/tailwind/colors/global/hsl.css +191 -191
- package/dist/tailwind/colors/global/oklch.css +191 -191
- package/dist/tailwind/colors/global/rgb.css +191 -191
- package/dist/tailwind/colors/themes/masterbrand/hex.css +1 -1
- package/dist/tailwind/colors/themes/masterbrand/hsl.css +1 -1
- package/dist/tailwind/colors/themes/masterbrand/oklch.css +1 -1
- package/dist/tailwind/colors/themes/masterbrand/rgb.css +1 -1
- package/dist/ts/colors/global/hex.ts +1 -1
- package/dist/ts/colors/global/hsl.ts +1 -1
- package/dist/ts/colors/global/oklch.ts +1 -1
- package/dist/ts/colors/global/rgb.ts +1 -1
- package/dist/ts/colors/themes/masterbrand/hex.ts +57 -57
- package/dist/ts/colors/themes/masterbrand/hsl.ts +57 -57
- package/dist/ts/colors/themes/masterbrand/oklch.ts +57 -57
- package/dist/ts/colors/themes/masterbrand/rgb.ts +57 -57
- package/eslint.config.js +20 -0
- package/package.json +17 -32
- package/release.config.mjs +24 -0
- package/tokens/global/color/hex.json +1 -1
- package/tokens/global/color/hsl.json +191 -951
- package/tokens/global/color/oklch.json +191 -951
- package/tokens/global/color/rgb.json +1541 -2301
- package/tokens/themes/masterbrand/color/hex.json +1 -1
- package/tokens/themes/masterbrand/color/hsl.json +465 -689
- package/tokens/themes/masterbrand/color/oklch.json +57 -281
- package/tokens/themes/masterbrand/color/rgb.json +465 -689
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
name: 'OpenCommit Action'
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches-ignore: [main master dev development release]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
opencommit:
|
|
9
|
+
timeout-minutes: 10
|
|
10
|
+
name: OpenCommit
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
permissions: write-all
|
|
13
|
+
steps:
|
|
14
|
+
- name: Setup Node.js Environment
|
|
15
|
+
uses: actions/setup-node@v2
|
|
16
|
+
with:
|
|
17
|
+
node-version: '16'
|
|
18
|
+
- uses: actions/checkout@v3
|
|
19
|
+
with:
|
|
20
|
+
fetch-depth: 0
|
|
21
|
+
- uses: di-sukharev/opencommit@github-action-v1.0.4
|
|
22
|
+
with:
|
|
23
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
24
|
+
|
|
25
|
+
env:
|
|
26
|
+
OCO_OPENAI_API_KEY: ${{ secrets.OCO_API_KEY }}
|
|
27
|
+
|
|
28
|
+
# customization
|
|
29
|
+
OCO_TOKENS_MAX_INPUT: 4096
|
|
30
|
+
OCO_TOKENS_MAX_OUTPUT: 500
|
|
31
|
+
OCO_OPENAI_BASE_PATH: ''
|
|
32
|
+
OCO_DESCRIPTION: false
|
|
33
|
+
OCO_EMOJI: false
|
|
34
|
+
OCO_MODEL: gpt-4o
|
|
35
|
+
OCO_LANGUAGE: en
|
|
36
|
+
OCO_PROMPT_MODULE: conventional-commit
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
release:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
steps:
|
|
11
|
+
- uses: actions/checkout@v4
|
|
12
|
+
|
|
13
|
+
- uses: actions/setup-node@v4
|
|
14
|
+
with:
|
|
15
|
+
node-version: 20
|
|
16
|
+
registry-url: https://registry.npmjs.org/
|
|
17
|
+
|
|
18
|
+
- run: npm ci
|
|
19
|
+
|
|
20
|
+
- name: Create .npmrc
|
|
21
|
+
run: |
|
|
22
|
+
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
|
|
23
|
+
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > $NPM_CONFIG_USERCONFIG
|
|
24
|
+
env:
|
|
25
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
26
|
+
|
|
27
|
+
- run: npx semantic-release
|
|
28
|
+
env:
|
|
29
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
30
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
package/.prettierignore
ADDED
package/.prettierrc
ADDED
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
## [2.1.1](https://github.com/digitalnsw/nswds-tokens/compare/v2.1.0...v2.1.1) (2025-03-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workflow:** rename environment variable OCO_API_KEY to OCO_OPENAI_API_KEY for clarity and consistency ([6c162b1](https://github.com/digitalnsw/nswds-tokens/commit/6c162b1e0c7d0509321d064d3c18d2bf00428dd7))
|
|
7
|
+
* **workflow:** rename OCO_API_KEY to OCO_OPENAI_API_KEY for clarity ([b980c42](https://github.com/digitalnsw/nswds-tokens/commit/b980c425dbc69e940b8e71fd60d142d2570c57ef))
|
|
8
|
+
|
|
9
|
+
# [2.1.0](https://github.com/digitalnsw/nswds-tokens/compare/v2.0.0...v2.1.0) (2025-03-25)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **workflow:** add OpenCommit GitHub Action workflow for automated commit messages generation ([5ba4c6c](https://github.com/digitalnsw/nswds-tokens/commit/5ba4c6cf9e429f4776c6ade072adf1fe9818fd69))
|
|
15
|
+
|
|
16
|
+
# 1.0.0 (2025-03-25)
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
- add GitHub Actions workflow for autofilling PR descriptions ([6304e82](https://github.com/digitalnsw/nswds-tokens/commit/6304e822759e8ebd60bc146f5871e7eaf31bcaee))
|
|
21
|
+
- add GitHub Actions workflow for automated releases and semantic-release configuration ([0b600a1](https://github.com/digitalnsw/nswds-tokens/commit/0b600a1e1d398e17bfc1ebbd7837d77bb614d015))
|
|
22
|
+
- **colors:** add new color definitions for various themes in hex, hsl, oklch, and rgb formats to enhance design consistency across the application ([74b4def](https://github.com/digitalnsw/nswds-tokens/commit/74b4defec3d7e552de453852b14de47d157c38e6))
|
|
23
|
+
- **colors:** add new color definitions in hex, hsl, oklch, and rgb formats for global and masterbrand themes to enhance design consistency across the application ([a113b2d](https://github.com/digitalnsw/nswds-tokens/commit/a113b2daccbf67ecfc66c96fb77b3c772f17eb3a))
|
|
24
|
+
- **release:** add GitHub Actions workflow for automated releases on main branch ([8ebd9f3](https://github.com/digitalnsw/nswds-tokens/commit/8ebd9f37003af25caaba62f97f455ce07bcc93fa))
|
|
25
|
+
- **release:** add GitHub Actions workflow for automated releases on main branch ([0ad84c0](https://github.com/digitalnsw/nswds-tokens/commit/0ad84c0d3676006be55e519d425cbae499174dd3))
|
|
26
|
+
- **tokens:** add new color tokens in various formats (json, js, css, scss, less) for improved design consistency across the application ([c8cf2d9](https://github.com/digitalnsw/nswds-tokens/commit/c8cf2d9e4eab87b9ec026e92a80067a28fbb7e30))
|
|
27
|
+
|
|
28
|
+
# 2.0.0 (2025-03-24)
|
|
29
|
+
|
|
30
|
+
### Features
|
|
31
|
+
|
|
32
|
+
- add GitHub Actions workflow for autofilling PR descriptions ([6304e82](https://github.com/digitalnsw/nswds-tokens/commit/6304e822759e8ebd60bc146f5871e7eaf31bcaee))
|
|
33
|
+
- **colors:** add new color definitions for various themes in hex, hsl, oklch, and rgb formats to enhance design consistency across the application ([74b4def](https://github.com/digitalnsw/nswds-tokens/commit/74b4defec3d7e552de453852b14de47d157c38e6))
|
|
34
|
+
- **colors:** add new color definitions in hex, hsl, oklch, and rgb formats for global and masterbrand themes to enhance design consistency across the application ([a113b2d](https://github.com/digitalnsw/nswds-tokens/commit/a113b2daccbf67ecfc66c96fb77b3c772f17eb3a))
|
|
35
|
+
- **release:** add GitHub Actions workflow for automated releases on main branch ([8ebd9f3](https://github.com/digitalnsw/nswds-tokens/commit/8ebd9f37003af25caaba62f97f455ce07bcc93fa))
|
|
36
|
+
- **release:** add GitHub Actions workflow for automated releases on main branch ([0ad84c0](https://github.com/digitalnsw/nswds-tokens/commit/0ad84c0d3676006be55e519d425cbae499174dd3))
|
|
37
|
+
- **tokens:** add new color tokens in various formats (json, js, css, scss, less) for improved design consistency across the application ([c8cf2d9](https://github.com/digitalnsw/nswds-tokens/commit/c8cf2d9e4eab87b9ec026e92a80067a28fbb7e30))
|
package/README.md
CHANGED
|
@@ -1,192 +1,192 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
}
|
|
2
|
+
--nsw-grey-50: #fafafa;
|
|
3
|
+
--nsw-grey-100: #f5f5f5;
|
|
4
|
+
--nsw-grey-150: #f0f0f0;
|
|
5
|
+
--nsw-grey-200: #ebebeb;
|
|
6
|
+
--nsw-grey-250: #e5e4e5;
|
|
7
|
+
--nsw-grey-300: #dedee1;
|
|
8
|
+
--nsw-grey-350: #d6d8dc;
|
|
9
|
+
--nsw-grey-400: #cdd3d6;
|
|
10
|
+
--nsw-grey-450: #aab0b4;
|
|
11
|
+
--nsw-grey-500: #888f92;
|
|
12
|
+
--nsw-grey-550: #686f72;
|
|
13
|
+
--nsw-grey-600: #495054;
|
|
14
|
+
--nsw-grey-650: #3f4549;
|
|
15
|
+
--nsw-grey-700: #353b3f;
|
|
16
|
+
--nsw-grey-750: #2b3135;
|
|
17
|
+
--nsw-grey-800: #22272b;
|
|
18
|
+
--nsw-grey-850: #181c1f;
|
|
19
|
+
--nsw-grey-900: #0e1113;
|
|
20
|
+
--nsw-grey-950: #050709;
|
|
21
|
+
--nsw-green-50: #f5fff6;
|
|
22
|
+
--nsw-green-100: #ecfdee;
|
|
23
|
+
--nsw-green-150: #e4fce7;
|
|
24
|
+
--nsw-green-200: #dbfadf;
|
|
25
|
+
--nsw-green-250: #cff7d4;
|
|
26
|
+
--nsw-green-300: #c2f4c9;
|
|
27
|
+
--nsw-green-350: #b5f0be;
|
|
28
|
+
--nsw-green-400: #a8edb3;
|
|
29
|
+
--nsw-green-450: #8adc98;
|
|
30
|
+
--nsw-green-500: #6acc7d;
|
|
31
|
+
--nsw-green-550: #45bb62;
|
|
32
|
+
--nsw-green-600: #00aa45;
|
|
33
|
+
--nsw-green-650: #078e32;
|
|
34
|
+
--nsw-green-700: #077320;
|
|
35
|
+
--nsw-green-750: #03590f;
|
|
36
|
+
--nsw-green-800: #004000;
|
|
37
|
+
--nsw-green-850: #003000;
|
|
38
|
+
--nsw-green-900: #002000;
|
|
39
|
+
--nsw-green-950: #001100;
|
|
40
|
+
--nsw-teal-50: #f2fbfa;
|
|
41
|
+
--nsw-teal-100: #e7f7f5;
|
|
42
|
+
--nsw-teal-150: #dcf2ef;
|
|
43
|
+
--nsw-teal-200: #d1eeea;
|
|
44
|
+
--nsw-teal-250: #c1eae7;
|
|
45
|
+
--nsw-teal-300: #b0e5e5;
|
|
46
|
+
--nsw-teal-350: #9ee0e5;
|
|
47
|
+
--nsw-teal-400: #8cdbe5;
|
|
48
|
+
--nsw-teal-450: #75c4cf;
|
|
49
|
+
--nsw-teal-500: #5eacb9;
|
|
50
|
+
--nsw-teal-550: #4696a3;
|
|
51
|
+
--nsw-teal-600: #2e808e;
|
|
52
|
+
--nsw-teal-650: #256f7b;
|
|
53
|
+
--nsw-teal-700: #1c5f69;
|
|
54
|
+
--nsw-teal-750: #144e58;
|
|
55
|
+
--nsw-teal-800: #0b3f47;
|
|
56
|
+
--nsw-teal-850: #042f35;
|
|
57
|
+
--nsw-teal-900: #011f24;
|
|
58
|
+
--nsw-teal-950: #001114;
|
|
59
|
+
--nsw-blue-50: #f0fbff;
|
|
60
|
+
--nsw-blue-100: #e4f6ff;
|
|
61
|
+
--nsw-blue-150: #d7f2fe;
|
|
62
|
+
--nsw-blue-200: #cbedfd;
|
|
63
|
+
--nsw-blue-250: #bceafe;
|
|
64
|
+
--nsw-blue-300: #ade7ff;
|
|
65
|
+
--nsw-blue-350: #9de3ff;
|
|
66
|
+
--nsw-blue-400: #8ce0ff;
|
|
67
|
+
--nsw-blue-450: #5ac9ff;
|
|
68
|
+
--nsw-blue-500: #26aeff;
|
|
69
|
+
--nsw-blue-550: #008fff;
|
|
70
|
+
--nsw-blue-600: #146cfd;
|
|
71
|
+
--nsw-blue-650: #0c5ad4;
|
|
72
|
+
--nsw-blue-700: #0548ad;
|
|
73
|
+
--nsw-blue-750: #023688;
|
|
74
|
+
--nsw-blue-800: #002664;
|
|
75
|
+
--nsw-blue-850: #001a4d;
|
|
76
|
+
--nsw-blue-900: #001037;
|
|
77
|
+
--nsw-blue-950: #000622;
|
|
78
|
+
--nsw-purple-50: #f9f7ff;
|
|
79
|
+
--nsw-purple-100: #f2f0ff;
|
|
80
|
+
--nsw-purple-150: #ece8fe;
|
|
81
|
+
--nsw-purple-200: #e6e1fd;
|
|
82
|
+
--nsw-purple-250: #e0d9fe;
|
|
83
|
+
--nsw-purple-300: #dad0fe;
|
|
84
|
+
--nsw-purple-350: #d4c8ff;
|
|
85
|
+
--nsw-purple-400: #cebfff;
|
|
86
|
+
--nsw-purple-450: #baa6fc;
|
|
87
|
+
--nsw-purple-500: #a68df9;
|
|
88
|
+
--nsw-purple-550: #9372f5;
|
|
89
|
+
--nsw-purple-600: #8055f1;
|
|
90
|
+
--nsw-purple-650: #7243cf;
|
|
91
|
+
--nsw-purple-700: #6432ae;
|
|
92
|
+
--nsw-purple-750: #54218e;
|
|
93
|
+
--nsw-purple-800: #441170;
|
|
94
|
+
--nsw-purple-850: #330856;
|
|
95
|
+
--nsw-purple-900: #23023e;
|
|
96
|
+
--nsw-purple-950: #130027;
|
|
97
|
+
--nsw-fuchsia-50: #fff6fd;
|
|
98
|
+
--nsw-fuchsia-100: #ffeef9;
|
|
99
|
+
--nsw-fuchsia-150: #fee6f5;
|
|
100
|
+
--nsw-fuchsia-200: #fddef2;
|
|
101
|
+
--nsw-fuchsia-250: #fbd4ef;
|
|
102
|
+
--nsw-fuchsia-300: #f9c9eb;
|
|
103
|
+
--nsw-fuchsia-350: #f7bfe9;
|
|
104
|
+
--nsw-fuchsia-400: #f4b5e6;
|
|
105
|
+
--nsw-fuchsia-450: #ef96da;
|
|
106
|
+
--nsw-fuchsia-500: #e975cc;
|
|
107
|
+
--nsw-fuchsia-550: #e150be;
|
|
108
|
+
--nsw-fuchsia-600: #d912ae;
|
|
109
|
+
--nsw-fuchsia-650: #bb0c94;
|
|
110
|
+
--nsw-fuchsia-700: #9d067b;
|
|
111
|
+
--nsw-fuchsia-750: #810264;
|
|
112
|
+
--nsw-fuchsia-800: #65004d;
|
|
113
|
+
--nsw-fuchsia-850: #4d003a;
|
|
114
|
+
--nsw-fuchsia-900: #370028;
|
|
115
|
+
--nsw-fuchsia-950: #220017;
|
|
116
|
+
--nsw-red-50: #fff8f9;
|
|
117
|
+
--nsw-red-100: #fff2f4;
|
|
118
|
+
--nsw-red-150: #ffecef;
|
|
119
|
+
--nsw-red-200: #ffe6ea;
|
|
120
|
+
--nsw-red-250: #ffdbe0;
|
|
121
|
+
--nsw-red-300: #ffcfd6;
|
|
122
|
+
--nsw-red-350: #ffc4cc;
|
|
123
|
+
--nsw-red-400: #ffb8c1;
|
|
124
|
+
--nsw-red-450: #f897a2;
|
|
125
|
+
--nsw-red-500: #ef7581;
|
|
126
|
+
--nsw-red-550: #e44f5f;
|
|
127
|
+
--nsw-red-600: #d7153a;
|
|
128
|
+
--nsw-red-650: #b90e32;
|
|
129
|
+
--nsw-red-700: #9b072a;
|
|
130
|
+
--nsw-red-750: #7e0322;
|
|
131
|
+
--nsw-red-800: #630019;
|
|
132
|
+
--nsw-red-850: #4c0010;
|
|
133
|
+
--nsw-red-900: #360008;
|
|
134
|
+
--nsw-red-950: #210003;
|
|
135
|
+
--nsw-orange-50: #fffaf6;
|
|
136
|
+
--nsw-orange-100: #fff6ee;
|
|
137
|
+
--nsw-orange-150: #fef1e7;
|
|
138
|
+
--nsw-orange-200: #fdeddf;
|
|
139
|
+
--nsw-orange-250: #fee5ce;
|
|
140
|
+
--nsw-orange-300: #ffddbd;
|
|
141
|
+
--nsw-orange-350: #ffd6ab;
|
|
142
|
+
--nsw-orange-400: #ffce99;
|
|
143
|
+
--nsw-orange-450: #fdb678;
|
|
144
|
+
--nsw-orange-500: #fb9d58;
|
|
145
|
+
--nsw-orange-550: #f78139;
|
|
146
|
+
--nsw-orange-600: #f3631b;
|
|
147
|
+
--nsw-orange-650: #db5115;
|
|
148
|
+
--nsw-orange-700: #c33f0e;
|
|
149
|
+
--nsw-orange-750: #ab2e06;
|
|
150
|
+
--nsw-orange-800: #941b00;
|
|
151
|
+
--nsw-orange-850: #730f00;
|
|
152
|
+
--nsw-orange-900: #530400;
|
|
153
|
+
--nsw-orange-950: #350000;
|
|
154
|
+
--nsw-yellow-50: #fffcf0;
|
|
155
|
+
--nsw-yellow-100: #fffae5;
|
|
156
|
+
--nsw-yellow-150: #fff7da;
|
|
157
|
+
--nsw-yellow-200: #fff4cf;
|
|
158
|
+
--nsw-yellow-250: #fff1c2;
|
|
159
|
+
--nsw-yellow-300: #feeeb5;
|
|
160
|
+
--nsw-yellow-350: #feeaa8;
|
|
161
|
+
--nsw-yellow-400: #fde79a;
|
|
162
|
+
--nsw-yellow-450: #fbda80;
|
|
163
|
+
--nsw-yellow-500: #facd63;
|
|
164
|
+
--nsw-yellow-550: #fabe42;
|
|
165
|
+
--nsw-yellow-600: #faaf05;
|
|
166
|
+
--nsw-yellow-650: #d49402;
|
|
167
|
+
--nsw-yellow-700: #af7a01;
|
|
168
|
+
--nsw-yellow-750: #8b6000;
|
|
169
|
+
--nsw-yellow-800: #694800;
|
|
170
|
+
--nsw-yellow-850: #503500;
|
|
171
|
+
--nsw-yellow-900: #392400;
|
|
172
|
+
--nsw-yellow-950: #221300;
|
|
173
|
+
--nsw-brown-50: #fbf8f4;
|
|
174
|
+
--nsw-brown-100: #f6f1ea;
|
|
175
|
+
--nsw-brown-150: #f2eae1;
|
|
176
|
+
--nsw-brown-200: #ede3d7;
|
|
177
|
+
--nsw-brown-250: #ecdece;
|
|
178
|
+
--nsw-brown-300: #eadac6;
|
|
179
|
+
--nsw-brown-350: #e9d5bd;
|
|
180
|
+
--nsw-brown-400: #e8d0b5;
|
|
181
|
+
--nsw-brown-450: #dbbf9f;
|
|
182
|
+
--nsw-brown-500: #cfae89;
|
|
183
|
+
--nsw-brown-550: #c29d73;
|
|
184
|
+
--nsw-brown-600: #b68d5d;
|
|
185
|
+
--nsw-brown-650: #9c764b;
|
|
186
|
+
--nsw-brown-700: #82603a;
|
|
187
|
+
--nsw-brown-750: #6a4b29;
|
|
188
|
+
--nsw-brown-800: #523719;
|
|
189
|
+
--nsw-brown-850: #3e280f;
|
|
190
|
+
--nsw-brown-900: #2b1a07;
|
|
191
|
+
--nsw-brown-950: #190d02;
|
|
192
|
+
}
|