diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-04-29 16:14:47 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-04-29 16:14:47 -0700 |
commit | 5124feb31efd11c097ce6fb73e5fc261c948d85a (patch) | |
tree | 0d35cf1323d1dd7c097ba04c9145ce9090b093a9 | |
parent | e13fd3e0a1d7042ef8267ac9ebb04ed5ed24887f (diff) | |
download | mu-5124feb31efd11c097ce6fb73e5fc261c948d85a.tar.gz |
tweak colors for definitions
-rw-r--r-- | shell/global.mu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/global.mu b/shell/global.mu index dc403d21..6b6f42c1 100644 --- a/shell/global.mu +++ b/shell/global.mu @@ -159,7 +159,7 @@ fn render-globals screen: (addr screen), _self: (addr global-table) { compare curr-input, 0 break-if-= var x/eax: int <- copy 1/padding-left - x, y <- render-gap-buffer-wrapping-right-then-down screen, curr-input, x, y, 0x2a/xmax, 0x2f/ymax, 0/no-cursor, 3/fg=cyan, 0x14/bg=definition + x, y <- render-gap-buffer-wrapping-right-then-down screen, curr-input, x, y, 0x2a/xmax, 0x2f/ymax, 0/no-cursor, 7/fg=definition, 0/bg y <- increment } curr-index <- decrement |