diff options
author | Đỗ Văn Hoài Tuân <htuan03@gmail.com> | 2023-03-24 17:42:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-25 00:42:18 +0000 |
commit | 644c5c4faa95c4979b15b6b89bcbe4f61876db8c (patch) | |
tree | 7a87ec46e1728537b87065bb56d9713880087410 | |
parent | 8d8cedd72cf8eebd456dd0ea4d78ed022cb133e8 (diff) | |
download | Vencord-644c5c4faa95c4979b15b6b89bcbe4f61876db8c.tar.gz Vencord-644c5c4faa95c4979b15b6b89bcbe4f61876db8c.tar.bz2 Vencord-644c5c4faa95c4979b15b6b89bcbe4f61876db8c.zip |
Make Vencord title look consistent with Discord (#685)
closes (#649)
-rw-r--r-- | src/components/VencordSettings/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/VencordSettings/index.tsx b/src/components/VencordSettings/index.tsx index 6c946a1..0171979 100644 --- a/src/components/VencordSettings/index.tsx +++ b/src/components/VencordSettings/index.tsx @@ -59,7 +59,7 @@ function Settings(props: SettingsProps) { const CurrentTab = SettingsTabs[tab]?.component; return <Forms.FormSection> - <Text variant="heading-md/normal" tag="h2">Vencord Settings</Text> + <Text variant="heading-lg/semibold" style={{ color: "var(--header-primary)" }} tag="h2">Vencord Settings</Text> <TabBar type="top" |