From 38a6f7c786071663342873c0e3fe6dbb760eed8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Wahlberg?= Date: Fri, 27 Nov 2020 16:16:28 +0100 Subject: [PATCH] Add new color --- src/components/css/StopTitle.css | 2 +- src/variables.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/css/StopTitle.css b/src/components/css/StopTitle.css index 7cbffdd..d03dcb0 100644 --- a/src/components/css/StopTitle.css +++ b/src/components/css/StopTitle.css @@ -20,7 +20,7 @@ } #stopTitle h3 { - color: rgba(0, 0, 0, 0.4); + color: var(--colorDiscrete); } #stopTitle button { diff --git a/src/variables.css b/src/variables.css index ca613a4..eb22949 100644 --- a/src/variables.css +++ b/src/variables.css @@ -3,6 +3,7 @@ --colorVT2: rgb(25, 212, 245); --colorBg: rgb(240, 248, 250); --colorLine: rgb(0, 108, 144); + --colorDiscrete: rgba(0, 0, 0, 0.4); --topMenuHeight: 15vh; --borderRadius: calc(var(--topMenuHeight) / 15);