Updated default colors

This commit is contained in:
Sasha Koshka 2023-04-20 19:57:55 -04:00
parent c1046b1bcb
commit f88268bb0e

View File

@ -244,25 +244,28 @@ func (Default) Color (id tomo.Color, state tomo.State, c tomo.Case) color.RGBA {
if state.Disabled { return artist.Hex(0x444444FF) } if state.Disabled { return artist.Hex(0x444444FF) }
return artist.Hex (map[tomo.Color] uint32 { return artist.Hex (map[tomo.Color] uint32 {
tomo.ColorBlack: 0x000000FF, tomo.ColorBlack: 0x272d24FF,
tomo.ColorRed: 0x880000FF, tomo.ColorRed: 0x8c4230FF,
tomo.ColorGreen: 0x008800FF, tomo.ColorGreen: 0x69905fFF,
tomo.ColorYellow: 0x888800FF, tomo.ColorYellow: 0x9a973dFF,
tomo.ColorBlue: 0x000088FF, tomo.ColorBlue: 0x3d808fFF,
tomo.ColorPurple: 0x880088FF, tomo.ColorPurple: 0x8c608bFF,
tomo.ColorCyan: 0x008888FF, tomo.ColorCyan: 0x3d8f84FF,
tomo.ColorWhite: 0x888888FF, tomo.ColorWhite: 0xaea894FF,
tomo.ColorBrightBlack: 0x888888FF, tomo.ColorBrightBlack: 0x4f5142FF,
tomo.ColorBrightRed: 0xFF0000FF, tomo.ColorBrightRed: 0xbd6f59FF,
tomo.ColorBrightGreen: 0x00FF00FF, tomo.ColorBrightGreen: 0x8dad84FF,
tomo.ColorBrightYellow: 0xFFFF00FF, tomo.ColorBrightYellow: 0xe2c558FF,
tomo.ColorBrightBlue: 0x0000FFFF, tomo.ColorBrightBlue: 0x77b1beFF,
tomo.ColorBrightPurple: 0xFF00FFFF, tomo.ColorBrightPurple: 0xc991c8FF,
tomo.ColorBrightCyan: 0x00FFFFFF, tomo.ColorBrightCyan: 0x74c7b7FF,
tomo.ColorBrightWhite: 0xFFFFFFFF, tomo.ColorBrightWhite: 0xcfd7d2FF,
tomo.ColorForeground: 0x000000FF, tomo.ColorForeground: 0x000000FF,
tomo.ColorMidground: 0x97A09BFF,
tomo.ColorBackground: 0xAAAAAAFF, tomo.ColorBackground: 0xAAAAAAFF,
tomo.ColorShadow: 0x445754FF,
tomo.ColorShine: 0xCFD7D2FF,
tomo.ColorAccent: 0x408090FF, tomo.ColorAccent: 0x408090FF,
} [id]) } [id])
} }