Add missing dark/light variables

Fixes things like "bg-dark", "bg-light"
This commit is contained in:
Eli Ribble 2026-01-30 15:13:38 +00:00
parent 38d492e9da
commit db9d4e05b7
No known key found for this signature in database

View file

@ -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
);