Navigation Tabs Colors #4122
Answered
by
squidfunk
andynameistaken
asked this question in
Q&A
-
Hi is it possible to manually set different color for navigation tabs for light and dark theme? |
Beta Was this translation helpful? Give feedback.
Answered by
squidfunk
Jul 13, 2022
Replies: 1 comment 1 reply
-
Sure, just scope your styles accordingly: /* Default, light theme */
.md-tabs {
background-color: red;
}
/* Slate theme */
[data-md-color-scheme=slate] .md-tabs {
background-color: green;
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
squidfunk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sure, just scope your styles accordingly: