From 638732931677b38042dda40846e6c7b13320c8ce Mon Sep 17 00:00:00 2001 From: Přemysl Eric Janouch Date: Sun, 7 Dec 2025 16:39:45 +0100 Subject: liustsim: adjust colours --- liust-50/cmd/liustsim/simulator.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/liust-50/cmd/liustsim/simulator.go b/liust-50/cmd/liustsim/simulator.go index 3aa4157..c7a9716 100644 --- a/liust-50/cmd/liustsim/simulator.go +++ b/liust-50/cmd/liustsim/simulator.go @@ -73,9 +73,9 @@ func (d *Display) drawCharacter( var c color.RGBA if r, _, _, _ := character.At( bounds.Min.X+dx, bounds.Min.Y+dy).RGBA(); r >= 0x8000 { - c = color.RGBA{0x00, 0xFF, 0xC0, 0xFF} + c = color.RGBA{0x00, 0xFF, 0xB0, 0xFF} } else { - c = color.RGBA{0x20, 0x20, 0x20, 0xFF} + c = color.RGBA{0x18, 0x18, 0x18, 0xFF} } img.SetRGBA(1+cx*charWidth+dx, 1+cy*charHeight+dy, c) } -- cgit v1.2.3-70-g09d2