-
Hello. I've become quite comfortable with Material for MkDocs over time. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Most of the colors are deduced from CSS variables. If you want to break out, you can always target specific colors via selectors. For example, the text color of the navigation tabs can be changed with: .md-tabs__link {
color: red;
}
.md-tabs__link:hover {
color: green;
}
.md-tabs__link:focus {
color: blue;
} This can be similarily applied for |
Beta Was this translation helpful? Give feedback.
Most of the colors are deduced from CSS variables. If you want to break out, you can always target specific colors via selectors. For example, the text color of the navigation tabs can be changed with:
This can be similarily applied for
:hover
and:focus
styles. Feel free to share your final adjustments with other users here!