Matugen/Discord: make slowmode easier to read

This commit is contained in:
Ly-sec
2025-11-03 18:50:52 +01:00
parent 81fbba4a01
commit 982f78971b
+25
View File
@@ -120,4 +120,29 @@ span[class*="timestamp"] time {
span[class*="timestamp"]:hover time {
color: var(--text-2) !important; /* Use heading color on hover */
opacity: 1 !important;
}
/* Improve slowmode cooldown and typing indicator readability */
[class*="cooldownText"],
[class*="cooldownWrapper"],
[class*="cooldownText"] svg,
.cooldownText_b21699,
.cooldownWrapper_b21699 {
color: var(--text-3) !important; /* Use normal text color for better contrast */
opacity: 0.85 !important; /* Slightly muted but still readable */
}
/* Slowmode icon color */
[class*="slowModeIcon"],
.slowModeIcon_b21699 {
color: var(--text-3) !important;
opacity: 0.85 !important;
}
/* Typing indicator text */
[class*="typing"] [class*="text"],
[class*="typingDots"] [class*="text"],
.typing_b88801 .text_b88801 {
color: var(--text-3) !important;
opacity: 0.85 !important;
}