about summary refs log tree commit diff stats
path: root/shell/main.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-05-01 15:37:55 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-05-01 15:37:55 -0700
commit2b616894fdedcb40d2907272567377ce073fbc54 (patch)
tree1052304e1d425e0f65f838ab088ddbdd24d1d371 /shell/main.mu
parente3290a6c1a8dbdf386e6763b8beedf0ac3092e88 (diff)
downloadmu-2b616894fdedcb40d2907272567377ce073fbc54.tar.gz
move color scheme closer to Solarized dark
sed -i 's,0x12/bg=almost-black,0xdc/bg=green-bg,g' shell/*.mu
sed -i 's, 0/bg, 0xc5/bg=blue-bg,g' shell/*.mu
sed -i 's, 7/fg=trace, 0x38/fg=trace,g' shell/*.mu
sed -i 's, 7/bg=grey, 0x5c/bg=black,g' shell/*.mu

Still a few issues.

Thanks Adrian Cochrane and Zach DeCook.
  https://floss.social/@alcinnz/106152068473019933
  https://social.librem.one/@zachdecook/106159988837603417
Diffstat (limited to 'shell/main.mu')
-rw-r--r--shell/main.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/main.mu b/shell/main.mu
index e4a90aac..259fd7ab 100644
--- a/shell/main.mu
+++ b/shell/main.mu
@@ -82,7 +82,7 @@ fn load-state data-disk: (addr disk), _sandbox: (addr sandbox), globals: (addr g
   var s-storage: (stream byte 0x1000)  # space for 8/sectors
   var s/ebx: (addr stream byte) <- address s-storage
   load-sectors data-disk, 0/lba, 8/sectors, s
-#?   draw-stream-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, s, 7/fg, 0/bg
+#?   draw-stream-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, s, 7/fg, 0xc5/bg=blue-bg
   # stream -> gap-buffer
   load-gap-buffer-from-stream data, s
   clear-stream s