diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/utils/colour.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/colour.rs b/src/utils/colour.rs index 4e0b3ca..ae4d212 100644 --- a/src/utils/colour.rs +++ b/src/utils/colour.rs @@ -291,10 +291,10 @@ 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 `(0, 0, 0)`. + /// This is equivilant to setting the RGB value to `(153, 170, 181)`. fn default() -> Colour { Colour { - value: 0, + value: 0x99AAB5, } } } |