Files
test/frontend/static/themes/dualshot.css
Benjamin Falch 2bc741fb78
Some checks failed
Mark Stale PRs / stale (push) Has been cancelled
adding monkeytype
2026-04-23 13:53:44 +02:00

39 lines
709 B
CSS

[data-nav-item="test"] {
color: #2884bb;
&:hover {
color: color-mix(in srgb, #2884bb 75%, white 25%);
}
}
[data-nav-item="leaderboards"] {
color: #25a5a9;
&:hover {
color: color-mix(in srgb, #25a5a9 75%, white 25%);
}
}
[data-nav-item="about"] {
color: #de9c24;
&:hover {
color: color-mix(in srgb, #de9c24 75%, white 25%);
}
}
[data-nav-item="settings"] {
color: #d82231;
&:hover {
color: color-mix(in srgb, #d82231 75%, white 25%);
}
}
[data-nav-item="alerts"],
[data-nav-item="account"],
[data-nav-item="login"] {
--themable-button-text: #212222;
--themable-button-hover-text: color-mix(
in srgb,
var(--themable-button-text) 75%,
white 20%
);
}