@primer/css 0.0.0-2021101804717 → 0.0.0-2021101902851
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 +3 -1
- package/color-modes/index.scss +1 -0
- package/color-modes/themes/dark.scss +2 -2
- package/color-modes/themes/dark_colorblind.scss +2 -2
- package/color-modes/themes/dark_dimmed.scss +2 -2
- package/color-modes/themes/dark_high_contrast.scss +2 -2
- package/color-modes/themes/light.scss +2 -2
- package/color-modes/themes/light_colorblind.scss +2 -2
- package/color-modes/themes/light_high_contrast.scss +7 -0
- package/dist/color-modes.css +1 -1
- package/dist/color-modes.css.map +1 -1
- package/dist/marketing-buttons.css +1 -1
- package/dist/marketing-buttons.css.map +1 -1
- package/dist/marketing.css +1 -1
- package/dist/marketing.css.map +1 -1
- package/dist/meta.json +38 -51
- package/dist/primer.css +2 -2
- package/dist/primer.css.map +1 -1
- package/dist/stats/color-modes.json +1 -1
- package/dist/stats/marketing-buttons.json +1 -1
- package/dist/stats/marketing.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/dist/variables.json +6 -6
- package/index.scss +4 -4
- package/marketing/buttons/button.scss +7 -7
- package/marketing/buttons/index.scss +2 -2
- package/marketing/support/index.scss +2 -2
- package/marketing/support/variables.scss +4 -4
- package/marketing/type/index.scss +2 -2
- package/marketing/type/typography.scss +23 -23
- package/marketing/utilities/index.scss +5 -5
- package/marketing/utilities/layout.scss +1 -1
- package/package.json +2 -2
- package/support/mixins/layout.scss +5 -5
- package/support/mixins/misc.scss +1 -1
- package/support/variables/layout.scss +5 -5
- package/support/variables/typography.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @primer/css
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-2021101902851
|
|
4
4
|
|
|
5
5
|
### Major Changes
|
|
6
6
|
|
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
|
|
11
11
|
- [#1754](https://github.com/primer/css/pull/1754) [`3838e174`](https://github.com/primer/css/commit/3838e1743aa63bacf0ca241c2a3c4983ba92c5e6) Thanks [@simurai](https://github.com/simurai)! - Add `Box--overlay` styles
|
|
12
12
|
|
|
13
|
+
* [#1755](https://github.com/primer/css/pull/1755) [`1714778a`](https://github.com/primer/css/commit/1714778af72f5647894fca9561c56dfbccac62df) Thanks [@jonrohan](https://github.com/jonrohan)! - Updating primer/primitives@7.1.0 and adding Light High Contrast theme
|
|
14
|
+
|
|
13
15
|
### Patch Changes
|
|
14
16
|
|
|
15
17
|
- Fake entry to force publishing
|
package/color-modes/index.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@import
|
|
1
|
+
@import '../../support/index.scss';
|
|
2
2
|
|
|
3
|
-
@import
|
|
3
|
+
@import '@primer/primitives/dist/scss/colors/_dark_colorblind.scss';
|
|
4
4
|
|
|
5
5
|
@include color-mode-theme(dark_colorblind) {
|
|
6
6
|
@include primer-colors-dark_colorblind;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@import
|
|
1
|
+
@import '../../support/index.scss';
|
|
2
2
|
|
|
3
|
-
@import
|
|
3
|
+
@import '@primer/primitives/dist/scss/colors/_dark_dimmed.scss';
|
|
4
4
|
|
|
5
5
|
@include color-mode-theme(dark_dimmed) {
|
|
6
6
|
@include primer-colors-dark_dimmed;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@import
|
|
1
|
+
@import '../../support/index.scss';
|
|
2
2
|
|
|
3
|
-
@import
|
|
3
|
+
@import '@primer/primitives/dist/scss/colors/_dark_high_contrast.scss';
|
|
4
4
|
|
|
5
5
|
@include color-mode-theme(dark_high_contrast) {
|
|
6
6
|
@include primer-colors-dark_high_contrast;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@import
|
|
1
|
+
@import '../../support/index.scss';
|
|
2
2
|
|
|
3
|
-
@import
|
|
3
|
+
@import '@primer/primitives/dist/scss/colors/_light.scss';
|
|
4
4
|
|
|
5
5
|
@include color-mode-theme(light, true) {
|
|
6
6
|
@include primer-colors-light;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@import
|
|
1
|
+
@import '../../support/index.scss';
|
|
2
2
|
|
|
3
|
-
@import
|
|
3
|
+
@import '@primer/primitives/dist/scss/colors/_light_colorblind.scss';
|
|
4
4
|
|
|
5
5
|
@include color-mode-theme(light_colorblind) {
|
|
6
6
|
@include primer-colors-light_colorblind;
|