aboutsummaryrefslogtreecommitdiff
path: root/liust-50/cmd/liustsim
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2025-12-07 16:39:45 +0100
committerPřemysl Eric Janouch <p@janouch.name>2025-12-07 16:39:45 +0100
commit638732931677b38042dda40846e6c7b13320c8ce (patch)
tree91106cf95e12eeb0d0e7ff51a6138261edc75282 /liust-50/cmd/liustsim
parent4c51a7f3250824556863c1f8fec65cc00b3f9e09 (diff)
downloaddesktop-tools-638732931677b38042dda40846e6c7b13320c8ce.tar.gz
desktop-tools-638732931677b38042dda40846e6c7b13320c8ce.tar.xz
desktop-tools-638732931677b38042dda40846e6c7b13320c8ce.zip
liustsim: adjust coloursHEADorigin/masterorigin/HEADmaster
Diffstat (limited to 'liust-50/cmd/liustsim')
-rw-r--r--liust-50/cmd/liustsim/simulator.go4
1 files 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)
}