[13:19:21] /* forced night mode */ [13:19:22] ``` [13:19:24] html.skin-theme-clientpref-night #topHeader, #topHeader2, .cards, .potdCard, #otherlang, #otherproject { [13:19:25] box-shadow:none; [13:19:27] border:1px solid; [13:19:28] } [13:19:30] }``` [13:19:31] /* automatic mode */ [13:19:33] ``` [13:19:34] html.skin-theme-clientpref-os #topHeader, #topHeader2, .cards, .potdCard, #otherlang, #otherproject { [13:19:36] box-shadow:none; [13:19:37] border:1px solid; [13:19:39] } [13:19:40] }``` [13:19:42] (re @Jdlrobson: Use a css variable for the colours of add a rule that overrides the rule entirely when the dark mode classes are detected https...) [13:21:54] I have added this to remove box shadow and it works but it has removed the box shadow for light version for all classes and ids (except #topHeader). Am i missing something? (re @Kuldeepburjbhalaike: /* forced night mode */ [13:21:55] html.skin-theme-clientpref-night #topHeader, #topHeader2, .cards, .potdCard, #otherlang, #otherproject ...) [13:23:49] You need to repeat the html.skin part again if you have multiple elements after a comma [13:32:17] Thank you:) (re @sjoerddebruin: You need to repeat the html.skin part again if you have multiple elements after a comma)