Hello. Please, help to change a tooltip color (now it’s black)
You can add this CSS rule to your snippets and change the color and other properties:
.notice-container .notice {
background-color: var(--background-modifier-message);
}
1 Like
Try this:
.tooltip {
background-color: var(--background-modifier-message);
color: #FAFAFA;
}
Actually, there is a CSS variable for this:
body {
--background-modifier-message: hotpink;
}
2 Likes
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.