@plumeria/core 0.8.13 → 0.8.14
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -155,14 +155,14 @@ const tokens = css.defineThemeVars({
|
|
|
155
155
|
});
|
|
156
156
|
```
|
|
157
157
|
|
|
158
|
-
### css.
|
|
158
|
+
### css.color
|
|
159
159
|
|
|
160
160
|
Mixes #000 or #FFF into the color.
|
|
161
161
|
The first argument takes the color and the second argument takes the same value as opacity (string % or number).
|
|
162
162
|
|
|
163
163
|
```ts
|
|
164
|
-
color: css.
|
|
165
|
-
color: css.
|
|
164
|
+
color: css.color.darken('skyblue', 0.12),
|
|
165
|
+
color: css.color.lighten('navy', 0.6),
|
|
166
166
|
```
|
|
167
167
|
|
|
168
168
|
## ESLint
|