@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 +11 -3
- package/color-modes/index.scss +2 -0
- package/color-modes/themes/dark_tritanopia.scss +6 -0
- package/color-modes/themes/light_tritanopia.scss +6 -0
- package/dist/color-modes.css +1 -1
- package/dist/color-modes.css.map +1 -1
- package/dist/meta.json +86 -86
- package/dist/primer.css +1 -1
- package/dist/primer.css.map +1 -1
- package/dist/stats/color-modes.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# @primer/css
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-20220404025617
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- Fake entry to force publishing
|
|
8
8
|
|
|
9
|
-
|
|
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
|
|
package/color-modes/index.scss
CHANGED
|
@@ -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';
|