diff options
| author | khazhyk <[email protected]> | 2016-11-30 23:32:38 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-12-01 10:44:43 -0800 |
| commit | 4a14b92ff58173acb98c7e0a135b4989a87a7529 (patch) | |
| tree | 6d800249940a8cdc363c335f2a542bdcbcac7d7b /src/utils | |
| parent | Capitalize the hex value for blitz_blue (diff) | |
| download | serenity-4a14b92ff58173acb98c7e0a135b4989a87a7529.tar.xz serenity-4a14b92ff58173acb98c7e0a135b4989a87a7529.zip | |
Re-order dark_green colour alphabetically
Diffstat (limited to 'src/utils')
| -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 939a200..3ba479d 100644 --- a/src/utils/colour.rs +++ b/src/utils/colour.rs @@ -246,10 +246,10 @@ colour! { blurple, 0x7289DA; /// Creates a new `Colour`, setting its RGB value to `(32, 102, 148)`. dark_blue, 0x206694; - /// Creates a new `Colour`, setting its RGB value to `(31, 139, 76)`. - dark_green, 0x1F8B4C; /// Creates a new `Colour`, setting its RGB value to `(194, 124, 14)`. dark_gold, 0xC27C0E; + /// Creates a new `Colour`, setting its RGB value to `(31, 139, 76)`. + dark_green, 0x1F8B4C; /// Creates a new `Colour`, setting its RGB value to `(96, 125, 139)`. dark_grey, 0x607D8B; /// Creates a new `Colour`, setting its RGB value to `(173, 20, 87)`. |