Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Hunt <rhunt@gitlab.com>2022-03-16 16:15:32 +0300
committerClayton Cornell <ccornell@gitlab.com>2022-03-23 17:17:20 +0300
commit2fac980129aded92abff29543e5db7503422a9cc (patch)
tree46828ef628926726ce1a3e25a72391e610589fb2
parent099c8a8f530a9e8b1a09976d3258e96ae5c8c4a1 (diff)
Add gl-text color support
Add some gl-text colors to the docs SCSS so they can be used by SVG icons.
-rw-r--r--content/assets/stylesheets/_typography.scss22
1 files changed, 21 insertions, 1 deletions
diff --git a/content/assets/stylesheets/_typography.scss b/content/assets/stylesheets/_typography.scss
index b2379526..55ffedfc 100644
--- a/content/assets/stylesheets/_typography.scss
+++ b/content/assets/stylesheets/_typography.scss
@@ -1,5 +1,5 @@
---
-version: 12
+version: 13
---
@import 'variables';
@@ -730,3 +730,23 @@ version: 12
}
}
}
+
+.gl-text-red-800 {
+ color: $red-800;
+}
+
+.gl-text-red-600 {
+ color: $red-600;
+}
+
+.gl-text-orange-400 {
+ color: $orange-400;
+}
+
+.gl-text-orange-300 {
+ color: $orange-300;
+}
+
+.gl-text-blue-400 {
+ color: $blue-400;
+}