diff options
| author | Isaac Dickinson <[email protected]> | 2016-12-01 21:40:25 +0000 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-12-01 14:00:24 -0800 |
| commit | 49a684134df32427e9502192122c4fb22ef1a735 (patch) | |
| tree | 64d489da62485d0fc149c7375447324bdcf8293e /src/utils | |
| parent | Add fabled_pink to Colour struct (diff) | |
| download | serenity-49a684134df32427e9502192122c4fb22ef1a735.tar.xz serenity-49a684134df32427e9502192122c4fb22ef1a735.zip | |
Add 'fooyoo' to Colour struct
Diffstat (limited to 'src/utils')
| -rw-r--r-- | src/utils/colour.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/utils/colour.rs b/src/utils/colour.rs index 5a7f6ea..7a323df 100644 --- a/src/utils/colour.rs +++ b/src/utils/colour.rs @@ -264,7 +264,9 @@ colour! { /// Creates a new `Colour`, setting its RGB value to `(84, 110, 122)`. darker_grey, 0x546E7A; /// Creates a new `Colour`, setting its RGB value to `(250, 177, 237)`. - fabled_pink, 0xFAB1ED + fabled_pink, 0xFAB1ED; + /// Creates a new `Colour`, setting its RGB value to `(17, 202, 128)`. + fooyoo, 0x11CA80; /// Creates a new `Colour`, setting its RGB value to `(241, 196, 15)`. gold, 0xF1C40F; /// Creates a new `Colour`, setting its RGB value to `(186, 218, 85)`. |