diff --git a/pricing/index.html b/pricing/index.html index 2c4f9ac6..1f5bc0d3 100644 --- a/pricing/index.html +++ b/pricing/index.html @@ -208,6 +208,26 @@ list.classList.toggle('activeHamburger'); }) + diff --git a/pricing/style.css b/pricing/style.css index 819c0374..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; @@ -555,4 +554,77 @@ header img { } +} +.dark-theme { + --secondary-color: #0e1525; + --text-dark: #ffffff; + --arr-light: white; + --body-light: #0e1525; + --img-color: red; + --head-text: red; + --btn-border: red; + --btn-color: #fdbb2dbf; + --footer-text-color: #ffffff; +} +.dark-mode{ + --secondary-color: #0e1525; + --btn-border: red; +} +/* Dark Mode Styles */ +body.dark-mode { + background-color:#002152; + color: #ffffff; +} + +body.dark-mode .nav-container { + background-color: #1e1e1e; +} + +body.dark-mode .navLinks li a { + color: #ffffff; +} + +body.dark-mode .btn { + background-color: red; + color: #ffffff; +} + +body.dark-mode .wrapper .table { + background-color: #1e1e1e; + border: 1px solid #444444; +} + +body.dark-mode .wrapper .table .price-section { + background-color: #2e2e2e; +} + +body.dark-mode .wrapper .table .purchase-btn button { + background-color: #333333; + color: #ffffff; +} + +/* Additional styles */ +.hamburger .line { + background-color: #000000; +} + +body.dark-mode .hamburger .line { + background-color: #ffffff; +} +body.dark-mode .table .package-name::before{ + background: #1e1e1e; +} +body.dark-mode .wrapper .table { + 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: black; +} + +body.dark-mode .wrapper .table .purchase-btn button { + background-color: #333333; + color: #ffffff; } \ No newline at end of file