colors for themes

This commit is contained in:
Sharwin24 2024-12-29 13:31:27 -08:00
parent 1f6b13d09b
commit 786a25ea91

View file

@ -22,8 +22,7 @@ $box-shadow: 0px 8px 56px rgba(15, 80, 100, 0.16);
// themes
$themes: (
'light': (
// cyan 600
'light': ( // cyan 600
'accent-color': #0891b2,
// cyan 500
'hover-over-accent-color': #06b6d4,
@ -51,8 +50,7 @@ $themes: (
// slate 900
'footer-color': #0f172a,
),
'dark': (
// cyan 600
'dark': ( // cyan 600
'accent-color': #0891b2,
// cyan 500
'hover-over-accent-color': #06b6d4,
@ -95,28 +93,24 @@ $brand-colors: (
);
$alerts: (
'success': (
// green 100
'success': ( // green 100
'bg-color': #dcfce7,
// green 800
'text-color': #166534,
),
'info': (
// sky 100
'info': ( // sky 100
'bg-color': #e0f2fe,
// sky 800
'text-color': #075985,
),
'warning': (
// yellow 100
'warning': ( // yellow 100
'bg-color': #fef9c3,
// yellow 800
'text-color': #854d0e,
),
'danger': (
// red 100
'danger': ( // red 100
'bg-color': #fee2e2,
// red 800
'text-color': #991b1b,
),
);
);