@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 CHANGED
@@ -6,17 +6,8 @@
6
6
  npm i --save-dev @abgov/design-tokens
7
7
  ```
8
8
 
9
- Within your one of your application top level js/ts file
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/scss/tokens";
16
- ```
17
-
18
- CSS
19
-
20
- ```css
21
- @import "@abgov/design-tokens/css/tokens";
12
+ @import "@abgov/design-tokens/dist/tokens";
22
13
  ```
@@ -147,6 +147,10 @@
147
147
  }
148
148
  },
149
149
  "greyscale": {
150
+ "50": {
151
+ "value": "#F8F8F8",
152
+ "type": "color"
153
+ },
150
154
  "100": {
151
155
  "value": "#F1F1F1",
152
156
  "type": "color"
package/dist/tokens.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 20 Apr 2023 14:59:37 GMT
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 Thu, 20 Apr 2023 14:59:37 GMT
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abgov/design-tokens",
3
- "version": "1.1.1",
3
+ "version": "1.2.0",
4
4
  "main": "./index.js",
5
5
  "repository": {
6
6
  "type": "git",