Extract app theme scss to external files (#524)

This commit is contained in:
Kobi Zaltzberg
2024-12-26 15:50:09 +02:00
committed by GitHub
parent 52859b6137
commit d8fb33fae9
5 changed files with 203 additions and 196 deletions

View File

@@ -0,0 +1,22 @@
// Primary color
$primary: #34B891;
$primary-invert: findColorInvert($primary);
$colors: (
"primary": ($primary, $primary-invert),
"info": ($info, $info-invert),
"success": ($success, $success-invert),
"warning": ($warning, $warning-invert),
"danger": ($danger, $danger-invert),
);
// Links
$link: $primary;
$link-invert: $primary-invert;
$link-focus-border: $primary;
// Disable the widescreen breakpoint
$widescreen-enabled: false;
// Disable the fullhd breakpoint
$fullhd-enabled: false;