diff options
Diffstat (limited to 'liust-50/cmd/liustsim/simulator.go')
| -rw-r--r-- | liust-50/cmd/liustsim/simulator.go | 4 |
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) } |
