@abgov/design-tokens 1.1.1 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -11
- package/data/global-ddi.json +4 -0
- package/dist/tokens.css +2 -1
- package/dist/tokens.scss +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,17 +6,8 @@
|
|
|
6
6
|
npm i --save-dev @abgov/design-tokens
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
add the following
|
|
11
|
-
|
|
12
|
-
SCSS
|
|
9
|
+
Add the following to your top level *.css file:
|
|
13
10
|
|
|
14
11
|
```scss
|
|
15
|
-
@import "@abgov/design-tokens/
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
CSS
|
|
19
|
-
|
|
20
|
-
```css
|
|
21
|
-
@import "@abgov/design-tokens/css/tokens";
|
|
12
|
+
@import "@abgov/design-tokens/dist/tokens";
|
|
22
13
|
```
|
package/data/global-ddi.json
CHANGED
package/dist/tokens.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 11 Jun 2024 15:00:35 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
--goa-color-success-light: #cce4dc;
|
|
33
33
|
--goa-color-success-dark: #00563a;
|
|
34
34
|
--goa-color-success-background: #eef9f3;
|
|
35
|
+
--goa-color-greyscale-50: #f8f8f8;
|
|
35
36
|
--goa-color-greyscale-100: #f1f1f1;
|
|
36
37
|
--goa-color-greyscale-200: #dcdcdc;
|
|
37
38
|
--goa-color-greyscale-400: #adadad;
|
package/dist/tokens.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Tue, 11 Jun 2024 15:00:35 GMT
|
|
4
4
|
|
|
5
5
|
$goa-color-brand-default: #0081a2;
|
|
6
6
|
$goa-color-brand-dark: #005072;
|
|
@@ -30,6 +30,7 @@ $goa-color-success-default: #006f4c;
|
|
|
30
30
|
$goa-color-success-light: #cce4dc;
|
|
31
31
|
$goa-color-success-dark: #00563a;
|
|
32
32
|
$goa-color-success-background: #eef9f3;
|
|
33
|
+
$goa-color-greyscale-50: #f8f8f8;
|
|
33
34
|
$goa-color-greyscale-100: #f1f1f1;
|
|
34
35
|
$goa-color-greyscale-200: #dcdcdc;
|
|
35
36
|
$goa-color-greyscale-400: #adadad;
|