Skip to content

Commit 3fe47ca

Browse files
committed
add yellow text and bg utilities and variables
1 parent 5e3f7eb commit 3fe47ca

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/support/variables/colors.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ $bg-red-light: $red-100 !default;
5454
$bg-white: $white !default;
5555
$bg-yellow: $yellow-500 !default;
5656
$bg-yellow-light: $yellow-200 !default;
57+
$bg-yellow-dark: $yellow-700 !default;
5758

5859
// Text colors
5960
$text-blue: $blue-500 !default;
@@ -66,3 +67,4 @@ $text-orange-light: $orange-600 !default;
6667
$text-purple: $purple !default;
6768
$text-red: $red-600 !default;
6869
$text-white: $white !default;
70+
$text-yellow: $yellow-800 !default;

src/utilities/colors.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
.bg-yellow { background-color: $bg-yellow !important; }
2828
/* Set the background to $bg-yellow-light */
2929
.bg-yellow-light { background-color: $bg-yellow-light !important; }
30+
/* Set the background to $bg-yellow-dark */
31+
.bg-yellow-dark { background-color: $yellow-700 !important; }
3032
/* Set the background to $bg-purple */
3133
.bg-purple { background-color: $bg-purple !important; }
3234
/* Set the background to $bg-purple-light */
@@ -51,6 +53,8 @@
5153
.text-gray-dark { color: $text-gray-dark !important; }
5254
/* Set the text color to $text-green */
5355
.text-green { color: $text-green !important; }
56+
/* Set the text color to $text-yellow */
57+
.text-yellow { color: $yellow-800 !important; }
5458
/* Set the text color to $text-orange */
5559
.text-orange { color: $text-orange !important; }
5660
/* Set the text color to $text-orange-light */

0 commit comments

Comments
 (0)