@volue/design-colors 3.0.18 → 3.1.0-next.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
@@ -19,7 +19,7 @@ Tokens are exported as nested object structure.
19
19
 
20
20
  ```js
21
21
  const tokens = require('@volue/design-colors');
22
- console.log(tokens.core.blue100); // rgb(0, 133, 159)
22
+ console.log(tokens.core.solarMist60); // rgb(159, 227, 215)
23
23
  console.log(tokens.background.neutral.default);
24
24
  ```
25
25
 
@@ -51,7 +51,7 @@ Sass variables and map keys are formatted in [kebab-case](https://en.wikipedia.o
51
51
  @import '~@volue/design-colors/dist/index';
52
52
 
53
53
  a {
54
- color: $color-accent90;
54
+ color: $color-solarMist100;
55
55
  }
56
56
  ```
57
57
 
@@ -63,6 +63,6 @@ CSS variables/custom properties are formatted in [kebab-case](https://en.wikiped
63
63
  @import '~@volue/design-colors/dist/index.custom-properties.css';
64
64
 
65
65
  a {
66
- color: var(--color-accent90);
66
+ color: var(--color-solarMist100);
67
67
  }
68
68
  ```