From 5e54624aca146a779f56f601479142e70cab9ec4 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Thu, 22 Apr 2021 18:18:04 +0000 Subject: [PATCH] [Library | Trunk]: Move global variables to library git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/assets@60962 d315682c-612b-4755-9ff5-7f18f6832af3 --- library-css/library.scss | 1 + library-css/variables.scss | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 library-css/variables.scss diff --git a/library-css/library.scss b/library-css/library.scss index 313c801..54e9ee2 100644 --- a/library-css/library.scss +++ b/library-css/library.scss @@ -1,3 +1,4 @@ +@import "variables.scss"; @import "portal.scss"; @import "pagination.scss"; @import "labels.scss"; diff --git a/library-css/variables.scss b/library-css/variables.scss new file mode 100644 index 0000000..26f8e83 --- /dev/null +++ b/library-css/variables.scss @@ -0,0 +1,18 @@ +:root { + --contrast-color: white; + --theme-primary-color: #222080; + --theme-secondary-color: #4686e5; + --theme-primary-color-rgb: 34,31,128; + --theme-secondary-color-rgb: 70,134,229; + --openaire-main-color: #313179; + --explore-portal-color: #D95F2D; + --provide-portal-color: #37C7E9; + --monitor-portal-color: #8DCA26; + --connect-portal-color: #EBB13E; + --develop-portal-color: #DA65AB; + --explore-portal-lower-tone: #a0462c; + --provide-portal-lower-tone: #3A8FA3; + --monitor-portal-lower-tone: #7c9144; + --connect-portal-lower-tone: #b48536; + --develop-portal-lower-tone: #9f4e7e; +}