about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-04-29 16:27:43 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-04-29 16:27:43 -0700
commit650352962787e526c1f7a74035175d61a7e71337 (patch)
tree409030b7dbebaa366d23f6bd58ae3c5260aa8812
parent5124feb31efd11c097ce6fb73e5fc261c948d85a (diff)
downloadmu-650352962787e526c1f7a74035175d61a7e71337.tar.gz
white text everywhere by default
-rw-r--r--shell/sandbox.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/sandbox.mu b/shell/sandbox.mu
index 9af1637f..a42d2000 100644
--- a/shell/sandbox.mu
+++ b/shell/sandbox.mu
@@ -92,7 +92,7 @@ fn render-sandbox screen: (addr screen), _self: (addr sandbox), xmin: int, ymin:
   y <- maybe-render-empty-screen screen, self, xmin, y
   y <- maybe-render-keyboard screen, self, xmin, y
   var cursor-in-sandbox?/ebx: (addr boolean) <- get self, cursor-in-data?
-  x, y <- render-gap-buffer-wrapping-right-then-down screen, data, x, y, xmax, ymax, *cursor-in-sandbox?, 3/fg, 0/bg
+  x, y <- render-gap-buffer-wrapping-right-then-down screen, data, x, y, xmax, ymax, *cursor-in-sandbox?, 0xf/fg, 0/bg
   y <- increment
   # trace
   var trace-ah/eax: (addr handle trace) <- get self, trace