From 74ee6dd5f924c1c97ea517e381dd02771e7e1f1c Mon Sep 17 00:00:00 2001 From: Gaurav Date: Sun, 22 Oct 2023 14:27:10 +0530 Subject: [PATCH] Make changes in theme color --- src/App.css | 5 +++-- src/components/ThemeButton/ThemeButton.css | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/App.css b/src/App.css index 379b4ce..fc29969 100644 --- a/src/App.css +++ b/src/App.css @@ -7,6 +7,7 @@ list-style: none; text-decoration: none; font-family: "Poppins", sans-serif; + /* background-image: url('https://st5.depositphotos.com/35914836/63547/i/450/depositphotos_635479512-stock-photo-brown-wooden-wall-texture-background.jpg'); */ } html, @@ -193,12 +194,12 @@ body { .blue-theme { color: rgb(45, 43, 43); - background-color: #1370a3; + background-color: #a0c5d8; transition: 0.5s ease-in-out; } .yellow-theme { color: rgb(29, 28, 28); - background-color: #d29117; + background-color: #f2d49b; transition: 0.5s ease-in-out; } diff --git a/src/components/ThemeButton/ThemeButton.css b/src/components/ThemeButton/ThemeButton.css index 9cb4cf5..8464761 100644 --- a/src/components/ThemeButton/ThemeButton.css +++ b/src/components/ThemeButton/ThemeButton.css @@ -49,7 +49,7 @@ } .blue { - background-color: #3a799b; + background-color: #5330e3; border-color: rgb(1, 0, 0); transition: 0.5s ease-in-out; }