aboutsummaryrefslogtreecommitdiff
path: root/src/colours.rs
diff options
context:
space:
mode:
authorArne Dußin2020-12-20 03:58:46 +0100
committerArne Dußin2020-12-20 16:41:52 +0100
commit48f321a80970ebeb8374072b1d2e0a4d297aa348 (patch)
tree8f6dbffef7ed507ae118919917fd69a7a9528c39 /src/colours.rs
parentc073618d9773216ab4a2dcd7944589f38b1df751 (diff)
downloadgraf_karto-48f321a80970ebeb8374072b1d2e0a4d297aa348.tar.gz
graf_karto-48f321a80970ebeb8374072b1d2e0a4d297aa348.zip
Add dimensional indicator with scaling
Diffstat (limited to 'src/colours.rs')
-rw-r--r--src/colours.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/colours.rs b/src/colours.rs
index 8d69869..bafb53c 100644
--- a/src/colours.rs
+++ b/src/colours.rs
@@ -13,6 +13,8 @@ pub struct Colours {
pub wall_selected: Color,
pub icon_normal: Color,
pub icon_selected: Color,
+ pub dimension_indicators: Color,
+ pub dimension_text: Color,
}
impl Colours {
@@ -81,6 +83,18 @@ impl Colours {
b: 150,
a: 255,
},
+ dimension_indicators: Color {
+ r: 200,
+ g: 200,
+ b: 200,
+ a: 255,
+ },
+ dimension_text: Color {
+ r: 200,
+ g: 200,
+ b: 200,
+ a: 255,
+ },
}
}
}