2018-06-03 19:06:27 +00:00
|
|
|
// SCSS darken/lighten function override
|
|
|
|
@function nc-darken($color, $value) {
|
|
|
|
@return darken($color, $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
@function nc-lighten($color, $value) {
|
|
|
|
@return lighten($color, $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
// SCSS variables
|
2018-06-05 14:06:01 +00:00
|
|
|
// DEPRECATED, please use CSS4 vars
|
|
|
|
$color-main-text: #000;
|
|
|
|
$color-main-background: #fff;
|
2018-06-03 19:06:27 +00:00
|
|
|
|
|
|
|
// used for different active/disabled states
|
|
|
|
$color-background-dark: nc-darken($color-main-background, 7%);
|
|
|
|
$color-background-darker: nc-darken($color-main-background, 14%);
|
|
|
|
|
2017-02-17 10:45:08 +00:00
|
|
|
$color-primary: #0082c9;
|
|
|
|
$color-primary-text: #ffffff;
|
2018-06-03 19:06:27 +00:00
|
|
|
$color-primary-text-dark: nc-darken($color-primary-text, 7%);
|
|
|
|
$color-primary-element: $color-primary;
|
2018-06-05 14:06:01 +00:00
|
|
|
$color-primary-element-light: nc-lighten($color-primary-element, 15%);
|
2018-06-03 19:06:27 +00:00
|
|
|
|
2017-02-17 10:45:08 +00:00
|
|
|
$color-error: #e9322d;
|
2018-04-17 17:15:05 +00:00
|
|
|
$color-warning: #eca700;
|
2017-02-19 18:47:13 +00:00
|
|
|
$color-success: #46ba61;
|
|
|
|
|
2018-04-18 13:38:30 +00:00
|
|
|
// rgb(118, 118, 118) / #767676
|
|
|
|
// min. color contrast for normal text on white background according to WCAG AA
|
|
|
|
// (Works as well: color: #000; opacity: 0.57;)
|
2018-06-03 19:06:27 +00:00
|
|
|
$color-text-maxcontrast: nc-lighten($color-main-text, 46.2%);
|
|
|
|
$color-text-light: nc-lighten($color-main-text, 15%);
|
|
|
|
$color-text-lighter: nc-lighten($color-main-text, 30%);
|
2018-04-18 13:38:30 +00:00
|
|
|
|
2018-06-03 09:47:45 +00:00
|
|
|
$image-logo: url('../img/logo.svg?v=1');
|
|
|
|
$image-login-background: url('../img/background.png?v=2');
|
2017-02-19 18:47:13 +00:00
|
|
|
|
2018-06-05 14:06:01 +00:00
|
|
|
$color-loading-light: #777;
|
|
|
|
$color-loading-dark: #ccc;
|
2018-06-03 08:46:35 +00:00
|
|
|
|
2018-06-03 19:06:27 +00:00
|
|
|
$color-box-shadow: rgba(nc-darken($color-main-background, 70%), 0.75);
|
2018-06-03 08:46:35 +00:00
|
|
|
|
2018-06-03 19:06:27 +00:00
|
|
|
// light border like file table or app-content list
|
|
|
|
$color-border: nc-darken($color-main-background, 7%);
|
|
|
|
// darker border like inputs or very visible elements
|
|
|
|
$color-border-dark: nc-darken($color-main-background, 14%);
|
|
|
|
$border-radius: 3px;
|