From 0f9789fa693377cda760a9f8c5220ca056ca5d45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Mau=C3=9F?= <lukas.mauss@mni.thm.de> Date: Wed, 22 May 2019 20:15:59 +0200 Subject: [PATCH] Rename colors --- .../shared/comment-list/comment-list.component.scss | 4 ++-- src/theme/dark-Theme/darkTheme.const.ts | 4 ++-- src/theme/default-Theme/defaultTheme.const.ts | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/components/shared/comment-list/comment-list.component.scss b/src/app/components/shared/comment-list/comment-list.component.scss index 60184789e..3b05a842c 100644 --- a/src/app/components/shared/comment-list/comment-list.component.scss +++ b/src/app/components/shared/comment-list/comment-list.component.scss @@ -17,7 +17,7 @@ input { box-sizing: border-box; padding: 0 10px 0 5px; width: 100%; - background-color: var(--light); + background-color: var(--primary-variant); border: none; outline: none; min-height: 60px; @@ -27,7 +27,7 @@ input { #search-container { border-radius: 5px; - background-color: var(--light); + background-color: var(--primary-variant); margin-bottom: 10px; } diff --git a/src/theme/dark-Theme/darkTheme.const.ts b/src/theme/dark-Theme/darkTheme.const.ts index 2e7e84297..577567847 100644 --- a/src/theme/dark-Theme/darkTheme.const.ts +++ b/src/theme/dark-Theme/darkTheme.const.ts @@ -1,9 +1,9 @@ export const dark = { '--primary' : '#37474F', - '--light': '#455a64', + '--primary-variant': '#455a64', - '--accent': '#FFE0B2', + '--secondary': '#FFE0B2', '--background': '#616161', '--background-2': '#757575', diff --git a/src/theme/default-Theme/defaultTheme.const.ts b/src/theme/default-Theme/defaultTheme.const.ts index 8628823c5..76d36a338 100644 --- a/src/theme/default-Theme/defaultTheme.const.ts +++ b/src/theme/default-Theme/defaultTheme.const.ts @@ -1,9 +1,9 @@ export const defaultTheme = { '--primary' : '#4DB6AC', - '--light': '#80cbc4', + '--primary-variant': '#80cbc4', - '--accent': '#FFE0B2', + '--secondary': '#FFE0B2', '--background': '#B2DFDB', '--background-2': '#BBDEFB', -- GitLab