-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtui_colors.toml
More file actions
23 lines (18 loc) · 929 Bytes
/
tui_colors.toml
File metadata and controls
23 lines (18 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# TUI Color Configuration
# Edit this file to customize chess board colors without rebuilding.
# Colors are specified as RGB values "R, G, B" where each value is 0-255.
# If this file is missing or invalid, default colors will be used.
#
# Design principles:
# - Light squares: Medium-light tone (not too light, so white pieces contrast)
# - Dark squares: Medium-dark tone (not too dark, so black pieces contrast)
# - White pieces: Very light/white (visible on dark squares)
# - Black pieces: Very dark/black (visible on light squares)
# Light squares (medium-light beige - provides contrast for both piece colors)
light_square = 200, 180, 150
# Dark squares (medium-dark brown - provides contrast for both piece colors)
dark_square = 120, 90, 60
# White pieces (very light - clearly visible on dark squares)
piece_white = 255, 255, 255
# Black pieces (very dark - clearly visible on light squares)
piece_black = 30, 30, 30