Skip to content
This repository was archived by the owner on Apr 25, 2025. It is now read-only.

Commit 82ac2a4

Browse files
authored
fix: theme black and white colors (#8)
1 parent 250cebf commit 82ac2a4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

root/usr/lib/wsl/oobe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ systemctl enable chronyd.service
1515
# https://wiki.archlinux.org/title/Pacman/Package_signing#Initializing_the_keyring
1616
pacman-key --init
1717
pacman-key --populate archlinux
18-
pacman -S --noconfirm --needed archlinux-keyring
18+
pacman -Sy --noconfirm --needed archlinux-keyring
1919

2020
DEFAULT_UID='1000'
2121

terminal-profile/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,22 +67,22 @@ class Scheme {
6767
this.background = hexFromArgb(scheme.surface);
6868
this.selectionBackground = hexFromArgb(scheme.surfaceVariant);
6969
this.foreground = hexFromArgb(scheme.onSurface);
70-
this.black = Scheme.findColor(theme.customColors, ColorName.black, isDark);
70+
this.black = hexFromArgb(theme.palettes.neutral.tone(5));
7171
this.red = Scheme.findColor(theme.customColors, ColorName.red, isDark);
7272
this.green = Scheme.findColor(theme.customColors, ColorName.green, isDark);
7373
this.yellow = Scheme.findColor(theme.customColors, ColorName.yellow, isDark);
7474
this.blue = Scheme.findColor(theme.customColors, ColorName.blue, isDark);
7575
this.purple = Scheme.findColor(theme.customColors, ColorName.purple, isDark);
7676
this.cyan = Scheme.findColor(theme.customColors, ColorName.cyan, isDark);
77-
this.white = Scheme.findColor(theme.customColors, ColorName.white, isDark);
78-
this.brightBlack = Scheme.findColor(theme.customColors, ColorName.brightBlack, isDark);
77+
this.white = hexFromArgb(theme.palettes.neutral.tone(80));
78+
this.brightBlack = hexFromArgb(theme.palettes.neutral.tone(20));
7979
this.brightRed = Scheme.findColor(theme.customColors, ColorName.brightRed, isDark);
8080
this.brightGreen = Scheme.findColor(theme.customColors, ColorName.brightGreen, isDark);
8181
this.brightYellow = Scheme.findColor(theme.customColors, ColorName.brightYellow, isDark);
8282
this.brightBlue = Scheme.findColor(theme.customColors, ColorName.brightBlue, isDark);
8383
this.brightPurple = Scheme.findColor(theme.customColors, ColorName.brightPurple, isDark);
8484
this.brightCyan = Scheme.findColor(theme.customColors, ColorName.brightCyan, isDark);
85-
this.brightWhite = Scheme.findColor(theme.customColors, ColorName.brightWhite, isDark);
85+
this.brightWhite = hexFromArgb(theme.palettes.neutral.tone(95));
8686
}
8787

8888
/**

0 commit comments

Comments
 (0)