From cd1f0b28399f7767b11f40f3c2198daf65b6d643 Mon Sep 17 00:00:00 2001 From: Tyler Hawkins <3319104+tyzbit@users.noreply.github.com> Date: Mon, 23 Jun 2025 10:31:27 -0400 Subject: [PATCH 1/2] feat(vaporwave): add vaporwave theme Signed-off-by: Tyler Hawkins <3319104+tyzbit@users.noreply.github.com> --- data/vaporwave/Custom.css | 6 +++++ data/vaporwave/Preset.toml | 45 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 data/vaporwave/Custom.css create mode 100644 data/vaporwave/Preset.toml diff --git a/data/vaporwave/Custom.css b/data/vaporwave/Custom.css new file mode 100644 index 0000000..ef7e4a5 --- /dev/null +++ b/data/vaporwave/Custom.css @@ -0,0 +1,6 @@ +div[data-style=\"unread\"] { + background: var(--secondary-foreground); +} +circle[fill=\"white\"] { + fill: var(--secondary-foreground); +} \ No newline at end of file diff --git a/data/vaporwave/Preset.toml b/data/vaporwave/Preset.toml new file mode 100644 index 0000000..3820df3 --- /dev/null +++ b/data/vaporwave/Preset.toml @@ -0,0 +1,45 @@ +slug = "vaporwave" +name = "Vaporwave" +creator = "tyzbit" +description = "a purple and turquoise theme with vaporwave vibes" + +[variables] +light = false +accent = "#D6008F" +background = "#220C32" +foreground = "#00D0FF" +block = "#35114F" +message-box = "#0D203F" +mention = "rgba(2, 175, 233, 0.5)" +success = "#65E572" +warning = "#FAA352" +tooltip = "#000000" +error = "#ED4245" +hover = "rgba(72, 19, 120, 0.5)" + +[variables.scrollbar] +thumb = "#02BBE4" +track = "#D50091" + +[variables.primary] +background = "#13081C" +header = "#35114F" + +[variables.secondary] +background = "#1F0C2C" +foreground = "#BF2BA9" +header = "#5A8FDC" + +[variables.tertiary] +background = "#31104A" +foreground = "#5A1D85" + +[variables.status] +online = "#3ABF7E" +away = "#F39F00" +focus = "#4799F0" +busy = "#F84848" +streaming = "#977EFF" +invisible = "#A5A5A5" +font = "Poppins" +monospaceFont = "Space Mono" From 9ec94662d5d62e812b906784fe217615dc377b73 Mon Sep 17 00:00:00 2001 From: tyzbit <3319104+tyzbit@users.noreply.github.com> Date: Fri, 11 Jul 2025 00:20:28 -0400 Subject: [PATCH 2/2] fix(vaporwave): increase contrast between secondary background and tertiary foreground --- data/vaporwave/Custom.css | 7 +++++-- data/vaporwave/Preset.toml | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/data/vaporwave/Custom.css b/data/vaporwave/Custom.css index ef7e4a5..c7a56db 100644 --- a/data/vaporwave/Custom.css +++ b/data/vaporwave/Custom.css @@ -1,6 +1,9 @@ -div[data-style=\"unread\"] { +div[data-style="unread"] { background: var(--secondary-foreground); } -circle[fill=\"white\"] { +circle[fill="white"] { fill: var(--secondary-foreground); +} +div:has(span[class*="UserShort__Name"]) { + color: unset; } \ No newline at end of file diff --git a/data/vaporwave/Preset.toml b/data/vaporwave/Preset.toml index 3820df3..c908b8d 100644 --- a/data/vaporwave/Preset.toml +++ b/data/vaporwave/Preset.toml @@ -26,13 +26,13 @@ background = "#13081C" header = "#35114F" [variables.secondary] -background = "#1F0C2C" +background = "#1A0826" foreground = "#BF2BA9" header = "#5A8FDC" [variables.tertiary] background = "#31104A" -foreground = "#5A1D85" +foreground = "#AA33FF" [variables.status] online = "#3ABF7E"