How to configure a custom.css for dark theme? #323
Unanswered
ArvindRSingh
asked this question in
Q&A
Replies: 2 comments
-
Referring to #189, ".mode-dark" isn't working either.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
@ArvindRSingh Sorry for the late reply. Yep, the answer of #189 won't work, since the theme use [data-mode=light] {
--hbs-background: red;
}
[data-mode=dark] {
--hbs-background: green;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I can override the default colors of a light theme by modifying assets\css\custom.css with
But how to specify similar overrides for a dark theme?
I have tried
and
--hbs-primary-text-on-navbar-dark: #ff0000;
but doesn't make any difference in the dark theme.
Beta Was this translation helpful? Give feedback.
All reactions