diff options
| author | Arne Dußin | 2021-01-05 12:43:46 +0100 |
|---|---|---|
| committer | Arne Dußin | 2021-01-05 12:43:46 +0100 |
| commit | 99107c0be8675177547e7a25263da0c0dffb66f3 (patch) | |
| tree | 92cc295b43ba89f0e6bd51e1e32411e42d0d6c81 /src/colours.rs | |
| parent | b42ddaa4bf86b782bdbc619f7d66ded41c909465 (diff) | |
| parent | 9b5762cf3716503819e2cf06f3c335bbfd3b0a3c (diff) | |
| download | graf_karto-99107c0be8675177547e7a25263da0c0dffb66f3.tar.gz graf_karto-99107c0be8675177547e7a25263da0c0dffb66f3.zip | |
Merge branch 'master' into snapping
Diffstat (limited to 'src/colours.rs')
| -rw-r--r-- | src/colours.rs | 16 |
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, |
