summaryrefslogtreecommitdiffstats
path: root/core/css/variables.scss
blob: 86a348c24f7aa942194aee4820bdbbc107643bfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$color-main-text: #000000;
$color-main-background: #ffffff;
$color-primary: #0082c9;
$color-primary-text: #ffffff;
$color-error: #e9322d;
$color-warning: #ffcc44;
$color-success: #46ba61;
$color-primary-element: $color-primary;

@function nc-darken($color, $value) {
  @return darken($color, $value);
}

@function nc-lighten($color, $value) {
  @return lighten($color, $value);
}

$image-logo: '../img/logo-icon.svg?v=1';
$image-login-background: '../img/background.png?v=2';

$color-loading: #969696;
$color-loading-dark: #bbbbbb;
$color-box-shadow: rgba(nc-darken($color-main-background, 30%), 0.75);
$color-border: nc-darken($color-main-background, 8%);
$border-radius: 3px;