2017-02-17 13:45:08 +03: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 21:47:13 +03:00
|
|
|
$color-success: #46ba61;
|
|
|
|
|
2017-03-06 00:09:36 +03:00
|
|
|
@function nc-darken($color, $value) {
|
|
|
|
@return darken($color, $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
@function nc-lighten($color, $value) {
|
|
|
|
@return lighten($color, $value);
|
|
|
|
}
|
2017-02-19 21:47:13 +03:00
|
|
|
|
|
|
|
$image-logo: '../img/logo-icon.svg?v=1';
|
|
|
|
$image-login-background: '../img/background.jpg?v=1';
|
|
|
|
|
2017-02-21 19:28:48 +03:00
|
|
|
$color-loading: #969696;
|
|
|
|
$color-loading-dark: #bbbbbb;
|
|
|
|
|
2017-03-06 00:09:36 +03: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 18:50:45 +03:00
|
|
|
|
2017-03-06 00:09:36 +03:00
|
|
|
$color-box-shadow: rgba($color-main-old-333333, 0.75);
|