@primer/css 0.0.0-20220401071424 → 0.0.0-20220404025617

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
@@ -1,12 +1,20 @@
1
1
  # @primer/css
2
2
 
3
- ## 0.0.0-20220401071424
3
+ ## 0.0.0-20220404025617
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - [#2002](https://github.com/primer/css/pull/2002) [`82cbde89`](https://github.com/primer/css/commit/82cbde89280d9521ec9398e91f9f48a048501c38) Thanks [@simurai](https://github.com/simurai)! - Always break long `branch-name`s
7
+ - Fake entry to force publishing
8
8
 
9
- * Fake entry to force publishing
9
+ ## 19.8.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#1997](https://github.com/primer/css/pull/1997) [`9806b54b`](https://github.com/primer/css/commit/9806b54b3829219c9ad141efd2fcd99fc5c08751) Thanks [@simurai](https://github.com/simurai)! - Add Tritanopia theme
14
+
15
+ ### Patch Changes
16
+
17
+ - [#2002](https://github.com/primer/css/pull/2002) [`a3bc51f6`](https://github.com/primer/css/commit/a3bc51f6c4af0d45a9ce39f00c3cf3297b090067) Thanks [@simurai](https://github.com/simurai)! - Always break long `branch-name`s
10
18
 
11
19
  ## 19.7.1
12
20
 
@@ -3,8 +3,10 @@
3
3
  @import './themes/light.scss';
4
4
  @import './themes/light_colorblind.scss';
5
5
  @import './themes/light_high_contrast.scss';
6
+ @import './themes/light_tritanopia.scss';
6
7
  @import './themes/dark.scss';
7
8
  @import './themes/dark_dimmed.scss';
8
9
  @import './themes/dark_high_contrast.scss';
9
10
  @import './themes/dark_colorblind.scss';
11
+ @import './themes/dark_tritanopia.scss';
10
12
  @import './native.scss';
@@ -0,0 +1,6 @@
1
+ @import '../../support/index.scss';
2
+ @import '@primer/primitives/dist/scss/colors/_dark_tritanopia.scss';
3
+
4
+ @include color-mode-theme(dark_tritanopia) {
5
+ @include primer-colors-dark_tritanopia;
6
+ }
@@ -0,0 +1,6 @@
1
+ @import '../../support/index.scss';
2
+ @import '@primer/primitives/dist/scss/colors/_light_tritanopia.scss';
3
+
4
+ @include color-mode-theme(light_tritanopia) {
5
+ @include primer-colors-light_tritanopia;
6
+ }