summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLogan Hunt <logan.hunt@usu.edu>2023-01-13 17:02:11 -0700
committerLogan Hunt <logan.hunt@usu.edu>2023-01-13 17:02:11 -0700
commit3a6c603b0b12964d8a04ae4f78fb61bc094adf12 (patch)
tree6fa3b6e8d7e9219decda28948bf3f02c3cf2dab2
parent80843947e05cc464f54df7ad6838f5a16d9e7133 (diff)
downloadchessh-3a6c603b0b12964d8a04ae4f78fb61bc094adf12.tar.gz
chessh-3a6c603b0b12964d8a04ae4f78fb61bc094adf12.zip
Change some colors around
-rw-r--r--lib/chessh/ssh/client/board/renderer.ex6
-rw-r--r--priv/ascii_chars.json2
2 files changed, 4 insertions, 4 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
diff --git a/priv/ascii_chars.json b/priv/ascii_chars.json
index 1be31f8..fe7d12e 100644
--- a/priv/ascii_chars.json
+++ b/priv/ascii_chars.json
@@ -7,7 +7,7 @@
"e": [" __ ", "|_ ", "|__ "],
"f": [" __ ", "|_ ", "| "],
"g": [" __ ", "/ _ ", "\\__\\"],
- "h": ["| |", "|__|", "| |"]
+ "h": [". .", "|__|", "| |"]
},
"numbers": {
"0": [" _ ", "| |", "|_|"],