diff options
| author | Akshay Nair <phenax5@gmail.com> | 2024-12-15 20:27:53 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2024-12-15 20:50:52 +0530 |
| commit | 2cb08c5e64c53eb16ea8436fb6490db72d885426 (patch) | |
| tree | 332a10ba2f95fcb74bf0c80f704955f2bd1dc02d /src/Chelleport/Draw.hs | |
| parent | 2feff9170ade1b68d70bfd0b6ff6f2528f7a862c (diff) | |
| download | chelleport-2cb08c5e64c53eb16ea8436fb6490db72d885426.tar.gz chelleport-2cb08c5e64c53eb16ea8436fb6490db72d885426.zip | |
Add shift to accelerate hjkl movement
Diffstat (limited to 'src/Chelleport/Draw.hs')
| -rw-r--r-- | src/Chelleport/Draw.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Chelleport/Draw.hs b/src/Chelleport/Draw.hs index 9ace9da..4ee5b31 100644 --- a/src/Chelleport/Draw.hs +++ b/src/Chelleport/Draw.hs @@ -23,7 +23,10 @@ colorHighlight :: SDL.V4 Word8 colorHighlight = colorAccent colorGridLines :: SDL.V4 Word8 -colorGridLines = SDL.V4 127 29 29 150 +colorGridLines = colorGray -- SDL.V4 127 29 29 150 + +colorFocusLines :: SDL.V4 Word8 +colorFocusLines = colorLightGray colorAxisLines :: SDL.V4 Word8 colorAxisLines = colorAccent |
