From 4b6c1e101386edb8e08c8534afa70dacba3cd56f Mon Sep 17 00:00:00 2001 From: VijaySamant4368 Date: Tue, 16 Jul 2024 09:50:29 +0530 Subject: [PATCH] Added dark-theme in testimonials --- styles.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/styles.css b/styles.css index 9dbae098..5be7c14f 100644 --- a/styles.css +++ b/styles.css @@ -2507,6 +2507,25 @@ body { top: 45px; } +/* Light theme */ +.testimonials .testimonial-user{ + background-color: #efefef; +} +.testimonials .testimonial-user p{ + color: #2a2e31; +} +/* Dark theme */ +body.dark-theme .testimonials { + background-color: #002152; +} + +body.dark-theme .testimonials .testimonial-user{ + background-color: black; +} +body.dark-theme .testimonials .testimonial-user p{ + color: white; +} + .swiper-slide { background-position: center; background-size: cover;