diff options
author | Logan Hunt <logan.hunt@usu.edu> | 2023-01-13 17:02:11 -0700 |
---|---|---|
committer | Logan Hunt <logan.hunt@usu.edu> | 2023-01-13 17:02:11 -0700 |
commit | 3a6c603b0b12964d8a04ae4f78fb61bc094adf12 (patch) | |
tree | 6fa3b6e8d7e9219decda28948bf3f02c3cf2dab2 /lib/chessh/ssh/client | |
parent | 80843947e05cc464f54df7ad6838f5a16d9e7133 (diff) | |
download | chessh-3a6c603b0b12964d8a04ae4f78fb61bc094adf12.tar.gz chessh-3a6c603b0b12964d8a04ae4f78fb61bc094adf12.zip |
Change some colors around
Diffstat (limited to 'lib/chessh/ssh/client')
-rw-r--r-- | lib/chessh/ssh/client/board/renderer.ex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chessh/ssh/client/board/renderer.ex b/lib/chessh/ssh/client/board/renderer.ex index 845e538..fa8648f 100644 --- a/lib/chessh/ssh/client/board/renderer.ex +++ b/lib/chessh/ssh/client/board/renderer.ex @@ -10,10 +10,10 @@ defmodule Chessh.SSH.Client.Board.Renderer do @tile_width 7 @tile_height 4 - @from_select_background ANSI.green_background() + @from_select_background ANSI.light_blue_background() @to_select_background ANSI.blue_background() - @dark_piece_color ANSI.red() - @light_piece_color ANSI.magenta() + @dark_piece_color ANSI.light_red() + @light_piece_color ANSI.light_magenta() def chess_board_height(), do: @chess_board_height def chess_board_width(), do: @chess_board_width |