From 55afc5090daac30c2899ec7ff7c2abbdc118b364 Mon Sep 17 00:00:00 2001 From: Dyakov Roman Date: Fri, 14 Oct 2022 12:24:09 +0300 Subject: [PATCH] Opacity primary colors --- static/default.css | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/static/default.css b/static/default.css index 069ce60..aedc245 100644 --- a/static/default.css +++ b/static/default.css @@ -1,7 +1,16 @@ :root { - --bs-primary: #00004b; - --bs-on-primary: #ffffff; - --bs-secondary: #ff8b00; + --bs-primary: rgba(0, 0, 75, 1); + --bs-primary-90: rgba(0, 0, 75, 0.9); + --bs-primary-80: rgba(0, 0, 75, 0.8); + --bs-primary-70: rgba(0, 0, 75, 0.7); + --bs-primary-60: rgba(0, 0, 75, 0.6); + --bs-primary-50: rgba(0, 0, 75, 0.5); + --bs-primary-40: rgba(0, 0, 75, 0.4); + --bs-primary-30: rgba(0, 0, 75, 0.3); + --bs-primary-20: rgba(0, 0, 75, 0.2); + --bs-primary-10: rgba(0, 0, 75, 0.1); + --bs-on-primary: rgba(255, 255, 255, 1); + --bs-secondary: rgba(255, 139, 0, 1); --bs-font-sans-serif: "Roboto", sans-serif; } @@ -41,4 +50,4 @@ html { 100% { transform: rotate(360deg); } -} \ No newline at end of file +}