diff --git a/_assets/css/components/content-card.css b/_assets/css/components/content-card.css index edeedf08..ffec62cb 100644 --- a/_assets/css/components/content-card.css +++ b/_assets/css/components/content-card.css @@ -4,6 +4,12 @@ grid-gap: 2rem; } +.dark .content-card { + border: 0.5px solid rgba(255, 255, 255, 0.20); +background: #242933; +box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.10), 0px 34px 24px -20px rgba(0, 0, 0, 0.04); +} + .content-card { padding: 24px !important; display: flex; @@ -32,6 +38,11 @@ margin-bottom: 24px !important; } +.dark .content-card p.content-card-label { + color: white; + opacity: 0.7; +} + .content-card p.content-card-label { font-size: 18px; font-weight: 600; @@ -40,6 +51,11 @@ margin-bottom: 16px !important; } +.dark .content-card p.content-card-description { + color: white !important; + opacity: 0.5 !important; +} + .content-card p.content-card-description { padding-bottom: 32px !important; opacity: 0.6; @@ -58,3 +74,7 @@ text-transform: uppercase; text-decoration: none !important; } + +.dark .content-card-link { + color: rgba(255, 255, 255, 0.70) !important; +} \ No newline at end of file diff --git a/_assets/css/components/dark-light-image.css b/_assets/css/components/dark-light-image.css new file mode 100644 index 00000000..6b0b6f01 --- /dev/null +++ b/_assets/css/components/dark-light-image.css @@ -0,0 +1,8 @@ + +html.dark .dark-light-image .light { + display: none; +} + +html:not(.dark) .dark-light-image .dark { + display: none; +} \ No newline at end of file diff --git a/_assets/css/components/hero.css b/_assets/css/components/hero.css index 3f2f7120..35baaa95 100644 --- a/_assets/css/components/hero.css +++ b/_assets/css/components/hero.css @@ -20,3 +20,11 @@ line-height: normal; letter-spacing: -0.68px; } + +.dark .hero h1 { + color: white !important; +} + +.dark .hero h1 em { + opacity: 0.7 +} \ No newline at end of file diff --git a/_assets/css/components/product-card.css b/_assets/css/components/product-card.css index 0f02d0b4..e89583f6 100644 --- a/_assets/css/components/product-card.css +++ b/_assets/css/components/product-card.css @@ -13,6 +13,13 @@ flex-direction: column; } +.dark .product-grid-item { + border: 0.5px solid rgba(255, 255, 255, 0.2); + background: #242933; + box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1), + 0px 34px 24px -20px rgba(0, 0, 0, 0.1); +} + .product-grid-item-header * { margin: 0 !important; color: #fff !important; @@ -75,6 +82,11 @@ height: 100%; } +.dark .product-grid-item-body-description p { + color: #FFF; + opacity: 0.6; +} + .product-grid-item-body-description p { flex: 1; opacity: 0.6; @@ -107,6 +119,11 @@ text-decoration: none !important; } +.dark .product-grid-item-body p a { + color: #FFF !important; + background: rgba(255, 255, 255, 0.15); +} + .product-grid-item-body a:hover { background: rgb(250, 91, 48, 0.3); } diff --git a/_assets/css/components/quick-link.css b/_assets/css/components/quick-link.css index d31b63f2..53916827 100644 --- a/_assets/css/components/quick-link.css +++ b/_assets/css/components/quick-link.css @@ -5,6 +5,12 @@ margin-bottom: 2em; } +.dark .quick-links-item { + border: 0.5px solid rgba(255, 255, 255, 0.20); + background: #242933; + box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.10), 0px 34px 24px -20px rgba(0, 0, 0, 0.04); +} + .quick-links-item { border-radius: 4px; background: #fff; @@ -13,6 +19,11 @@ padding: 0 24px; } +.dark .quick-links-item h4 { + color: rgba(255, 255, 255, 0.70) !important; + +} + .quick-links-item h4 { color: var(--AV_Primary_Blue_Dark, #202d47) !important; font-size: 18px !important; @@ -45,15 +56,25 @@ background: linear-gradient(90deg, #414f6e 0%, #2773aa 100%); } +.dark .quick-links-item > p { + border-top: 1px solid rgba(255,255,255,0.1) !important; +} + .quick-links-item > p { border-top: 1px solid #efefef !important; padding-top: 18px !important; } +.dark .quick-links-item > p > a.quick-links-item-line { + color: rgba(255, 255, 255, 0.50) !important; + +} + .quick-links-item > p > a.quick-links-item-line { display: flex !important; gap: 16px !important; align-items: center !important; + font-size: 14px; text-decoration: none !important; color: var(--AV_Primary_Blue, #414f6e) !important; diff --git a/_assets/css/components/support-card.css b/_assets/css/components/support-card.css index 2b3abeba..af2f2771 100644 --- a/_assets/css/components/support-card.css +++ b/_assets/css/components/support-card.css @@ -3,6 +3,13 @@ gap: 56px; } +.dark .support-cards .support-card { + border: 0.5px solid rgba(255, 255, 255, 0.2); + background: #242933; + box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1), + 0px 34px 24px -20px rgba(0, 0, 0, 0.04); +} + .support-cards .support-card { flex: 1; display: flex; @@ -22,6 +29,10 @@ letter-spacing: -0.36px !important; } +.dark .support-card p.support-card-label { + color: rgba(255, 255, 255, 0.50) !important; +} + .support-card p.support-card-label { flex: 1; } diff --git a/_assets/css/style.css b/_assets/css/style.css index 35a69723..1ba9c0df 100644 --- a/_assets/css/style.css +++ b/_assets/css/style.css @@ -335,6 +335,11 @@ border-top: 1px dashed var(--doctave-theme-content-bg-secondary); } +.dark .section-header hr { + border-top: 1px dashed white !important; + opacity: 0.6 !important; +} + .section-header h3 { color: var(--AV_Primary_Blue_06, rgba(65, 79, 110, 0.60)) !important; font-family: JetBrains Mono, sans-serif; @@ -347,4 +352,12 @@ font-size: 34px !important; line-height: 34px !important; font-weight: 500 !important; +} + +p { + font-size: 18px; +} + +.dark p { + color: rgba(255, 255, 255, 0.70); } \ No newline at end of file diff --git a/_assets/getting-started-diagram-dark.png b/_assets/getting-started-diagram-dark.png new file mode 100644 index 00000000..57f98b93 Binary files /dev/null and b/_assets/getting-started-diagram-dark.png differ diff --git a/_assets/getting-started-diagram-light.png b/_assets/getting-started-diagram-light.png new file mode 100644 index 00000000..b78c9576 Binary files /dev/null and b/_assets/getting-started-diagram-light.png differ diff --git a/_partials/dark-light-image.md b/_partials/dark-light-image.md new file mode 100644 index 00000000..9facb17c --- /dev/null +++ b/_partials/dark-light-image.md @@ -0,0 +1,6 @@ +