From 7236813f1a2ca570222ca22b0ec7490febcd4308 Mon Sep 17 00:00:00 2001 From: Bestin Lalu Date: Sat, 31 Oct 2020 13:23:53 +0530 Subject: [PATCH] Changed colors to a more suitable tone to spotify theme --- static/css/custom.css | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/static/css/custom.css b/static/css/custom.css index 3cde60b..06acfaa 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -1,29 +1,31 @@ /* change the background color */ .navbar-custom { - background-color: #D3D3D3; + background-color: #1d3b37; } /* change the brand and text color */ .navbar-custom .navbar-brand, .navbar-custom .navbar-text { - color: #000000; - padding: 0.8rem 1rem; + color: #000000; + padding: 0.8rem 1rem; } /* change the link color and add padding for height */ .navbar-custom .navbar-nav .nav-link { - color: #4F8AC7; - padding: 1rem 1rem; + color: #37f770; + padding: 1rem 1rem; } /* change the color of active or hovered links */ .navbar-custom .nav-item.active .nav-link, .navbar-custom .nav-item:hover .nav-link { - color: #FFFFFF; - background-color: #4F8AC7; /* add background-color to active links */ + color: #1a1a1a; + background-color: #133611; /* add background-color to active links */ } .card-custom { - background-color: #4F8AC7; - color: #FFFFFF; + background-color: #4f8ac7; + color: #271515; padding: 1rem 1rem; } -body { background: #D3D3D3;} +body { + background: #0ca53f; +}