mirror of
https://github.com/filegator/filegator.git
synced 2025-08-25 16:30:53 +02:00
Extract app theme scss to external files (#524)
This commit is contained in:
22
frontend/assets/scss/theme/variables.scss
Normal file
22
frontend/assets/scss/theme/variables.scss
Normal 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;
|
Reference in New Issue
Block a user