Add missing dark/light variables
Fixes things like "bg-dark", "bg-light"
This commit is contained in:
parent
38d492e9da
commit
db9d4e05b7
1 changed files with 5 additions and 1 deletions
|
|
@ -5,6 +5,8 @@ $success: #8BAE67;
|
|||
$warning: #FFC01B;
|
||||
$danger: #6b2737;
|
||||
$info: #D7B26D;
|
||||
$dark: #3b1002;
|
||||
$light: #fde1d8;
|
||||
|
||||
$off-white: #F8F9FA;
|
||||
$off-black: #495057;
|
||||
|
|
@ -29,7 +31,9 @@ $theme-colors: map-merge(
|
|||
"success": $success,
|
||||
"danger": $danger,
|
||||
"warning": $warning,
|
||||
"info": $info
|
||||
"info": $info,
|
||||
"dark": $dark,
|
||||
"light": $light
|
||||
),
|
||||
$custom-colors
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue