aboutsummaryrefslogtreecommitdiff
path: root/src/configuration.rs
diff options
context:
space:
mode:
authorRuben Beltran del Rio <jj@r.bdr.sh>2025-12-16 16:35:08 +0100
committerRuben Beltran del Rio <jj@r.bdr.sh>2025-12-16 17:38:30 +0100
commitbf4b51af43005415deac6ba475992c83b5f2f82e (patch)
tree4bdc419138a070096735a45a74ea5eaf8822c691 /src/configuration.rs
parentafd0794104228cd20e177f41dc68e9ae7ecaabda (diff)
Adapt to edition 2024
Diffstat (limited to 'src/configuration.rs')
-rw-r--r--src/configuration.rs22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/configuration.rs b/src/configuration.rs
index bc99781..715e4a7 100644
--- a/src/configuration.rs
+++ b/src/configuration.rs
@@ -32,19 +32,19 @@ impl Default for Colors {
fn default() -> Self {
Self {
background: (1.0, 1.0, 1.0),
- axis: (0.058824, 0.149020, 0.121569), // Deep Slate Green
- vertex: (0.058824, 0.149020, 0.121569),
- label: (0.058824, 0.149020, 0.121569),
- stage_foreground: (0.854901, 0.901960, 0.890196),
+ axis: (0.058_824, 0.149_020, 0.121_569), // Deep Slate Green
+ vertex: (0.058_824, 0.149_020, 0.121_569),
+ label: (0.058_824, 0.149_020, 0.121_569),
+ stage_foreground: (0.854_901, 0.901_960, 0.890_196),
stage_background: (1.0, 1.0, 1.0),
- inertia: (0.980392, 0.168627, 0.0),
- evolution: (0.309804, 0.560784, 0.901961),
+ inertia: (0.980_392, 0.168_627, 0.0),
+ evolution: (0.309_804, 0.560_784, 0.901_961),
groups: vec![
- (0.227451, 0.356863, 0.627451), // Olympic Blue
- (0.768627, 0.270588, 0.211765), // Jasper Red
- (0.560784, 0.745098, 0.572549), // Light Porcelain Green
- (0.980392, 0.835294, 0.360784), // Naples Yellow
- (0.925490, 0.611765, 0.670588), // Hermosa Pink
+ (0.227_451, 0.356_863, 0.627_451), // Olympic Blue
+ (0.768_627, 0.270_588, 0.211_765), // Jasper Red
+ (0.560_784, 0.745_098, 0.572_549), // Light Porcelain Green
+ (0.980_392, 0.835_294, 0.360_784), // Naples Yellow
+ (0.925_490, 0.611_765, 0.670_588), // Hermosa Pink
],
}
}