@primer/css 18.0.0-rc.3668ea64 → 18.0.0-rc.4925a48c

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 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
- * [#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
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
 
@@ -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";
@@ -0,0 +1,7 @@
1
+ @import "../../support/index.scss";
2
+
3
+ @import "@primer/primitives/dist/scss/colors/_dark_protanopia.scss";
4
+
5
+ @include color-mode-theme(dark_protanopia) {
6
+ @include primer-colors-dark_protanopia;
7
+ }
@@ -0,0 +1,7 @@
1
+ @import "../../support/index.scss";
2
+
3
+ @import "@primer/primitives/dist/scss/colors/_light_protanopia.scss";
4
+
5
+ @include color-mode-theme(light_protanopia) {
6
+ @include primer-colors-light_protanopia;
7
+ }