Fix Status Palette

This commit is contained in:
2026-04-24 18:10:22 +02:00
parent f8cf524bbc
commit dc9a9ee510
2 changed files with 38 additions and 0 deletions
+33
View File
@@ -172,6 +172,39 @@ li[component="category/topic"] .user-icon {
border-radius: 999px !important; border-radius: 999px !important;
} }
.status {
box-shadow:
0 0 0 2px var(--wg-status-ring),
0 0 0 3px rgba(216, 194, 138, 0.14),
0 0 12px rgba(0, 0, 0, 0.34);
&.online {
color: var(--wg-status-online) !important;
background-color: var(--wg-status-online) !important;
}
&.away {
color: var(--wg-status-away) !important;
background-color: var(--wg-status-away) !important;
}
&.dnd {
color: var(--wg-status-dnd) !important;
background-color: var(--wg-status-dnd) !important;
}
&.offline {
color: var(--wg-status-offline) !important;
background-color: var(--wg-status-offline) !important;
}
}
.fa-circle.status {
text-shadow:
0 0 0 2px var(--wg-status-ring),
0 0 10px rgba(0, 0, 0, 0.34);
}
.account, .account,
.account .profile, .account .profile,
.account .cover, .account .cover,
+5
View File
@@ -61,6 +61,11 @@
--wg-gold: #c2a35a; --wg-gold: #c2a35a;
--wg-gold-soft: #a8893f; --wg-gold-soft: #a8893f;
--wg-red: #8e3438; --wg-red: #8e3438;
--wg-status-online: #7fb86a;
--wg-status-away: #d9b44a;
--wg-status-dnd: #c55a5f;
--wg-status-offline: #b7b0a6;
--wg-status-ring: rgba(9, 8, 11, 0.9);
--wg-text: #e6e0d6; --wg-text: #e6e0d6;
--wg-text-soft: #b9b2a6; --wg-text-soft: #b9b2a6;
--wg-text-muted: #9a9086; --wg-text-muted: #9a9086;