Welcome to mirror list, hosted at ThFree Co, Russian Federation.

variables.scss « css « core - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b7783a888a08ccd08bb0d737869263cfc3a6af4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$color-main-text: #000000;
$color-main-background: #ffffff;
$color-primary: #0082c9;
$color-primary-text: #ffffff;
$color-error: #e9322d;
$color-warning: #ffcc44;
$color-success: #46ba61;

@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-lighten($color-main-text, 20%), 0.75);