aboutsummaryrefslogtreecommitdiff
path: root/src/colours.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/colours.rs')
-rw-r--r--src/colours.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/colours.rs b/src/colours.rs
index 4a3b799..d381266 100644
--- a/src/colours.rs
+++ b/src/colours.rs
@@ -32,6 +32,10 @@ pub struct Colours {
pub dimension_indicators: Color,
/// Colour of the text used to display the size of the dimension indicators dimensions.
pub dimension_text: Color,
+ /// Colour the point to show where something is will be drawn in.
+ pub position_indicator: Color,
+ /// Colour that is used for the text stating the position of the position indicator in meters.
+ pub position_text: Color,
/// The colour used for drawing the lines of the grid which divides the map into chunks of evenly
/// spaced cells.
pub grid_lines: Color,
@@ -115,6 +119,18 @@ impl Colours {
b: 200,
a: 255,
},
+ position_indicator: Color {
+ r: 200,
+ g: 200,
+ b: 200,
+ a: 255,
+ },
+ position_text: Color {
+ r: 200,
+ g: 200,
+ b: 200,
+ a: 255,
+ },
grid_lines: Color {
r: 255,
g: 255,