summaryrefslogtreecommitdiffstats
path: root/core/css/variables.scss
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-03-20 19:49:53 +0100
committerGitHub <noreply@github.com>2017-03-20 19:49:53 +0100
commit21cf1b22e9efa17aa4b9fcd4575c891c309c30df (patch)
treeee0dff452a18a887baaed583d081cf03c2608d57 /core/css/variables.scss
parent03a92eaf74ea3898f67a12e3c19216683abb44d8 (diff)
parenta0f7d4b6888466600698a31a50a551f915c69045 (diff)
downloadnextcloud-server-21cf1b22e9efa17aa4b9fcd4575c891c309c30df.tar.gz
nextcloud-server-21cf1b22e9efa17aa4b9fcd4575c891c309c30df.zip
Merge pull request #3530 from nextcloud/scss-variables
Implement scss variables
Diffstat (limited to 'core/css/variables.scss')
-rw-r--r--core/css/variables.scss22
1 files changed, 22 insertions, 0 deletions
diff --git a/core/css/variables.scss b/core/css/variables.scss
new file mode 100644
index 00000000000..47c8e1a27f8
--- /dev/null
+++ b/core/css/variables.scss
@@ -0,0 +1,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.jpg?v=1';
+
+$color-loading: #969696;
+$color-loading-dark: #bbbbbb;
+$color-box-shadow: rgba(nc-lighten($color-main-text, 20%), 0.75); \ No newline at end of file