From af4ec320d3caf4520384b4c41bfcfa52c2f53c1b Mon Sep 17 00:00:00 2001 From: ANKeshri Date: Mon, 29 Jul 2024 15:27:56 +0530 Subject: [PATCH] made dark mode according to theme --- pricing/style.css | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/pricing/style.css b/pricing/style.css index d4e0352d..e56ac595 100644 --- a/pricing/style.css +++ b/pricing/style.css @@ -224,9 +224,8 @@ header { padding-top: 12px; padding-bottom: 12px; width: auto; - background-color: transparent; - border: 2px solid slateblue; - color: red; + background-color: #6a5acd; + color:white; font-weight: 500; font-size: 14px; letter-spacing: 2px; @@ -567,9 +566,13 @@ header img { --btn-color: #fdbb2dbf; --footer-text-color: #ffffff; } +.dark-mode{ + --secondary-color: #0e1525; + --btn-border: red; +} /* Dark Mode Styles */ body.dark-mode { - background-color: #121212; + background-color:#002152; color: #ffffff; } @@ -582,7 +585,7 @@ body.dark-mode .navLinks li a { } body.dark-mode .btn { - background-color: #333333; + background-color: red; color: #ffffff; } @@ -612,13 +615,13 @@ body.dark-mode .table .package-name::before{ background: #1e1e1e; } body.dark-mode .wrapper .table { - background-color: #1e1e1e; - border: 1px solid #444444; + background-color: black; + border: 1px solid black; box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2); } body.dark-mode .wrapper .table .price-section { - background-color: #2e2e2e; + background-color: black; } body.dark-mode .wrapper .table .purchase-btn button {