@transferwise/neptune-tokens 8.0.0-next.9 → 8.0.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 +7 -1
- package/colors-base.css +1 -1
- package/colors-base.less +1 -1
- package/colors.json +1328 -0
- package/package.json +5 -5
- package/themes/dark/tokens.css +37 -18
- package/themes/dark/tokens.less +37 -18
- package/themes/light/tokens.css +37 -18
- package/themes/light/tokens.less +37 -18
- package/themes/navy/tokens.css +37 -18
- package/themes/navy/tokens.less +37 -18
- package/themes/personal/tokens.css +135 -0
- package/themes/personal/tokens.less +132 -0
- package/tokens.css +38 -19
- package/tokens.less +38 -19
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Tokens always start with a `base` layer that directly accesses the values, and c
|
|
|
9
9
|
For npm environments, install the package and consume the bundles below.
|
|
10
10
|
|
|
11
11
|
```shell
|
|
12
|
-
npm
|
|
12
|
+
npm install @transferwise/neptune-tokens
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
### Web
|
|
@@ -36,6 +36,12 @@ We currently only have one theme on web, so the bundles directly reference the c
|
|
|
36
36
|
}
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
+
Too add the new personal theme please add our new tokens
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
@import "@transferwise/neptune-tokens/dist/themes/persona/tokens.css";
|
|
43
|
+
```
|
|
44
|
+
|
|
39
45
|
### Figma
|
|
40
46
|
|
|
41
47
|
To import or update colours on the Figma libraries for Neptune:
|
package/colors-base.css
CHANGED