Update more Discord css variables

This commit is contained in:
Vendicated 2025-06-28 03:56:49 +02:00
parent a25d26e921
commit f6d92e5024
No known key found for this signature in database
GPG key ID: D66986BAF75ECF18
6 changed files with 6 additions and 6 deletions

View file

@ -148,7 +148,7 @@ function ReplacementComponent({ module, match, replacement, setReplacementError
)}
{compileResult &&
<Forms.FormText style={{ color: compileResult[0] ? "var(--text-positive)" : "var(--text-danger)" }}>
<Forms.FormText style={{ color: compileResult[0] ? "var(--status-positive)" : "var(--text-danger)" }}>
{compileResult[1]}
</Forms.FormText>
}

View file

@ -69,7 +69,7 @@ function Validator({ link }: { link: string; }) {
: "Valid!";
return <Forms.FormText style={{
color: pending ? "var(--text-muted)" : err ? "var(--text-danger)" : "var(--text-positive)"
color: pending ? "var(--text-muted)" : err ? "var(--text-danger)" : "var(--status-positive)"
}}>{text}</Forms.FormText>;
}

View file

@ -23,7 +23,7 @@
.vc-backup-restore-card {
background-color: var(--info-warning-background);
border-color: var(--info-warning-foreground);
color: var(--info-warning-text);
color: var(--info-warning-foreground);
}
.vc-settings-theme-links {