From 61d255a420c9d977b46670e7fa9e7735d2acf819 Mon Sep 17 00:00:00 2001 From: Arne Dußin Date: Wed, 6 Jan 2021 21:32:48 +0100 Subject: Add CLI with save feature --- src/colours.rs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/colours.rs') diff --git a/src/colours.rs b/src/colours.rs index d381266..d7c728c 100644 --- a/src/colours.rs +++ b/src/colours.rs @@ -39,6 +39,10 @@ pub struct Colours { /// The colour used for drawing the lines of the grid which divides the map into chunks of evenly /// spaced cells. pub grid_lines: Color, + /// Color used to draw the background of the Command Line Interface + pub cli_background: Color, + /// Color used to draw the normal text of the Command Line Interface + pub cli_foreground: Color, } impl Colours { @@ -137,6 +141,18 @@ impl Colours { b: 255, a: 75, }, + cli_background: Color { + r: 100, + g: 100, + b: 100, + a: 150, + }, + cli_foreground: Color { + r: 255, + g: 255, + b: 255, + a: 200, + }, } } } -- cgit v1.2.3-70-g09d2