@primer/css 18.0.0-rc.3668ea64 → 18.0.0-rc.90140124
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/CHANGELOG.md +9 -1
- package/color-modes/index.scss +2 -0
- package/color-modes/themes/dark_protanopia.scss +7 -0
- package/color-modes/themes/light_protanopia.scss +7 -0
- package/dist/color-modes.css +1 -1
- package/dist/color-modes.css.map +1 -1
- package/dist/core.css +1 -1
- package/dist/core.css.map +1 -1
- package/dist/meta.json +143 -143
- package/dist/primer.css +2 -2
- package/dist/primer.css.map +1 -1
- package/dist/stats/color-modes.json +1 -1
- package/dist/stats/core.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/dist/stats/utilities.json +1 -1
- package/dist/utilities.css +1 -1
- package/dist/utilities.css.map +1 -1
- package/package.json +7 -7
- package/utilities/colors.scss +0 -52
package/CHANGELOG.md
CHANGED
|
@@ -10,7 +10,15 @@
|
|
|
10
10
|
|
|
11
11
|
- [#1599](https://github.com/primer/css/pull/1599) [`13de16c7`](https://github.com/primer/css/commit/13de16c7d6787d221216d8ff21afccf6f73f4221) Thanks [@jonrohan](https://github.com/jonrohan)! - Moving color modes to their own bundle, `./color-modes/` and separates color mode themes into their own scss file.
|
|
12
12
|
|
|
13
|
-
* [#
|
|
13
|
+
* [#1602](https://github.com/primer/css/pull/1602) [`852da9d5`](https://github.com/primer/css/commit/852da9d5e34a0ac622f089f34d314913282bda67) Thanks [@simurai](https://github.com/simurai)! - Remove V1 color utilities
|
|
14
|
+
|
|
15
|
+
- [#1599](https://github.com/primer/css/pull/1599) [`13de16c7`](https://github.com/primer/css/commit/13de16c7d6787d221216d8ff21afccf6f73f4221) Thanks [@jonrohan](https://github.com/jonrohan)! - Remove break-word from utilities
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [#1601](https://github.com/primer/css/pull/1601) [`410c1d63`](https://github.com/primer/css/commit/410c1d638b7bec92798268dcf815f94b1dca7cff) Thanks [@jonrohan](https://github.com/jonrohan)! - Add light & dark colorblind themes
|
|
20
|
+
|
|
21
|
+
* [#1603](https://github.com/primer/css/pull/1603) [`21c5ebc0`](https://github.com/primer/css/commit/21c5ebc01be58454735eb671e3adace0228ef548) Thanks [@simurai](https://github.com/simurai)! - Update docs with V2 colors
|
|
14
22
|
|
|
15
23
|
## 17.11.0
|
|
16
24
|
|
package/color-modes/index.scss
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
// All themes
|
|
2
2
|
|
|
3
3
|
@import "./themes/light.scss";
|
|
4
|
+
@import "./themes/light_protanopia.scss";
|
|
4
5
|
@import "./themes/dark.scss";
|
|
5
6
|
@import "./themes/dark_dimmed.scss";
|
|
6
7
|
@import "./themes/dark_high_contrast.scss";
|
|
8
|
+
@import "./themes/dark_protanopia.scss";
|
|
7
9
|
@import "./native.scss";
|