mirror of
https://github.com/filegator/filegator.git
synced 2025-08-18 13:41:18 +02:00
23 lines
505 B
SCSS
23 lines
505 B
SCSS
// 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;
|