Skip to content

Commit 901c925

Browse files
authored
Add missing white and black palette definitions for light mode
1 parent 9c42a4b commit 901c925

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ArchipelagoDebugClient/Resources/ThemedPaletteDictionary.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ public class ThemedPaletteDictionary : ResourceDictionary
1414
// experimentally, meeting WCAG AAA tends to bring the colors indistinguishable from black text
1515
public static Palette<Color> LightPalette { get; } = new Palette<Color>(Colors.Black, new()
1616
{
17+
[PaletteColor.White] = Colors.White,
18+
[PaletteColor.Black] = Colors.Black,
1719
[PaletteColor.Red] = new Color(0xFF, 0xEE, 0x00, 0x00),
1820
[PaletteColor.Green] = new Color(0xFF, 0x00, 0x80, 0x00),
1921
[PaletteColor.Blue] = new Color(0xFF, 0x00, 0x00, 0xFF),

0 commit comments

Comments
 (0)