2017-02-17 10:45:08 +00:00
|
|
|
$color-main-text: #000000;
|
|
|
|
$color-main-background: #ffffff;
|
|
|
|
$color-primary: #0082c9;
|
|
|
|
$color-primary-text: #ffffff;
|
|
|
|
$color-error: #e9322d;
|
|
|
|
$color-warning: #ffcc44;
|
2017-02-19 18:47:13 +00:00
|
|
|
$color-success: #46ba61;
|
|
|
|
|
2017-03-05 21:09:36 +00:00
|
|
|
@function nc-darken($color, $value) {
|
|
|
|
@return darken($color, $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
@function nc-lighten($color, $value) {
|
|
|
|
@return lighten($color, $value);
|
|
|
|
}
|
2017-02-19 18:47:13 +00:00
|
|
|
|
|
|
|
$image-logo: '../img/logo-icon.svg?v=1';
|
|
|
|
$image-login-background: '../img/background.jpg?v=1';
|
|
|
|
|
2017-02-21 16:28:48 +00:00
|
|
|
$color-loading: #969696;
|
|
|
|
$color-loading-dark: #bbbbbb;
|
|
|
|
|
2017-03-05 21:09:36 +00:00
|
|
|
$color-main-old-f8f8f8: nc-darken($color-main-background, 3%);
|
|
|
|
$color-main-old-eeeeee: nc-lighten($color-main-text, 93%);
|
|
|
|
$color-main-old-dddddd: nc-lighten($color-main-text, 86%);
|
|
|
|
$color-main-old-bbbbbb: nc-lighten($color-main-text, 73%);
|
|
|
|
$color-main-old-888888: nc-lighten($color-main-text, 53%);
|
|
|
|
$color-main-old-555555: nc-lighten($color-main-text, 33%);
|
|
|
|
$color-main-old-333333: nc-lighten($color-main-text, 20%);
|
2017-02-21 15:50:45 +00:00
|
|
|
|
2017-03-05 21:09:36 +00:00
|
|
|
$color-box-shadow: rgba($color-main-old-333333, 0.75);
|