aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/colour.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/utils/colour.rs b/src/utils/colour.rs
index c62630a..47ed7e8 100644
--- a/src/utils/colour.rs
+++ b/src/utils/colour.rs
@@ -304,10 +304,9 @@ colour! {
impl Default for Colour {
/// Creates a default value for a `Colour`, setting the inner value to `0`.
- /// This is equivilant to setting the RGB value to `(153, 170, 181)`.
fn default() -> Colour {
Colour {
- value: 0x99AAB5,
+ value: 0,
}
}
}