Skip to content

Commit 9602337

Browse files
docs: update README.md
1 parent ea7a0fd commit 9602337

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

plugins/postcss-rgb-mapping/README.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# postcss-rgb-mapping
22

33
> Remaps rgb(a) values to an `rgb` postfixed variable. If an opacity is found, creates a separate `opacity` postfixed variable.
4+
> Also remaps values that reference a transparent token (for example, `transparent-black-300`) to `rgb` and `opacity` postfixed variables.
45
56
## Installation
67

@@ -17,6 +18,15 @@ This plugin turns this:
1718
.spectrum--lightest {
1819
--spectrum-seafoam-100: rgba(206, 247, 243);
1920
--spectrum-seafoam-200: rgba(170, 241, 234, 0.5);
21+
--spectrum-transparent-white-100-rgb: 100, 100, 100;
22+
--spectrum-transparent-white-100-opacity: 0.5;
23+
--spectrum-transparent-white-100: rgba(
24+
var(--spectrum-transparent-white-100-rgb),
25+
var(--spectrum-transparent-white-100-opacity)
26+
);
27+
--disabled-static-white-background-color: var(
28+
--spectrum-transparent-white-100
29+
);
2030
}
2131
```
2232

@@ -32,5 +42,21 @@ Into this:
3242
var(--spectrum-seafoam-200-rgb),
3343
var(--spectrum-seafoam-200-opacity)
3444
);
45+
--spectrum-transparent-white-100-rgb: 100, 100, 100;
46+
--spectrum-transparent-white-100-opacity: 0.5;
47+
--spectrum-transparent-white-100: rgba(
48+
var(--spectrum-transparent-white-100-rgb),
49+
var(--spectrum-transparent-white-100-opacity)
50+
);
51+
--disabled-static-white-background-color-rgb: var(
52+
--spectrum-transparent-white-100-rgb
53+
);
54+
--disabled-static-white-background-color-opacity: var(
55+
--spectrum-transparent-white-100-opacity
56+
);
57+
--disabled-static-white-background-color: rgba(
58+
var(--disabled-static-white-background-color-rgb),
59+
var(--disabled-static-white-background-color-opacity)
60+
);
3561
}
3662
```

0 commit comments

Comments
 (0)