@gitlab/ui 67.0.0 → 67.1.0
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 +7 -0
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/css/tokens.dark.css +1 -1
- package/dist/tokens/js/tokens.dark.js +1 -1
- package/dist/tokens/js/tokens.js +1 -1
- package/dist/tokens/scss/_tokens.dark.scss +1 -1
- package/dist/tokens/scss/_tokens.scss +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +1 -1
- package/src/scss/utilities.scss +8 -0
- package/src/scss/utility-mixins/color.scss +4 -0
package/package.json
CHANGED
package/src/scss/utilities.scss
CHANGED
|
@@ -2448,6 +2448,14 @@ $gl-animate-skeleton-loader-max-width: 64 * $grid-size;
|
|
|
2448
2448
|
color: $black-normal !important;
|
|
2449
2449
|
}
|
|
2450
2450
|
|
|
2451
|
+
.gl-text-gray-100 {
|
|
2452
|
+
color: $gray-100;
|
|
2453
|
+
}
|
|
2454
|
+
|
|
2455
|
+
.gl-text-gray-100\! {
|
|
2456
|
+
color: $gray-100 !important;
|
|
2457
|
+
}
|
|
2458
|
+
|
|
2451
2459
|
.gl-text-gray-200 {
|
|
2452
2460
|
color: $gray-200;
|
|
2453
2461
|
}
|