From f70c15be2d3cfc596947602dd6bb97a533f81886 Mon Sep 17 00:00:00 2001 From: Konstantinos Triantafyllou Date: Thu, 22 Apr 2021 18:17:26 +0000 Subject: [PATCH] [Dashbpard | Theme]: Move global variables to library git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-monitor-portal/trunk/monitor_dashboard@60961 d315682c-612b-4755-9ff5-7f18f6832af3 --- src/assets/dashboard-theme/variables.css | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/src/assets/dashboard-theme/variables.css b/src/assets/dashboard-theme/variables.css index ffc3bac..3fe0430 100644 --- a/src/assets/dashboard-theme/variables.css +++ b/src/assets/dashboard-theme/variables.css @@ -1,28 +1,9 @@ :root { - --portal-main-color: #8DCA26; + --portal-main-color: var(--monitor-portal-color); --portal-main-contrast: white; - --portal-dark-color: #7c9144; + --portal-dark-color: var(--monitor-portal-lower-tone); --primary-color: var(--theme-primary-color); --secondary-color: var(--theme-secondary-color); --primary-color-rgb: var(--theme-primary-color-rgb); --secondary-color-rgb: var(--theme-secondary-color-rgb); - --contrast-color: white; - - /* Portable Variables*/ - --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; }