diff options
| author | Mei <[email protected]> | 2017-05-13 17:48:11 -0400 |
|---|---|---|
| committer | zeyla <[email protected]> | 2017-05-13 14:48:11 -0700 |
| commit | d676e6eed07607f16c51673c7b3f724336e8e4ce (patch) | |
| tree | f038d6733a1d58aae27cbecab9195fb5659b9006 /src/utils | |
| parent | Framework: trim content before parsing args (diff) | |
| download | serenity-d676e6eed07607f16c51673c7b3f724336e8e4ce.tar.xz serenity-d676e6eed07607f16c51673c7b3f724336e8e4ce.zip | |
Add faded_purple to colour list
Add `faded_purple` as a Colour, and rename `meibi_pink` to `meibe_pink`.
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 dea6ff9..1a4e856 100644 --- a/src/utils/colour.rs +++ b/src/utils/colour.rs @@ -297,6 +297,8 @@ colour! { darker_grey, 0x546E7A; /// Creates a new `Colour`, setting its RGB value to `(250, 177, 237)`. fabled_pink, 0xFAB1ED; + /// Creates a new `Colour`, setting its RGB value to `(136, 130, 196)`.` + faded_purple, 0x8882C4; /// 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)`. @@ -310,7 +312,7 @@ colour! { /// Creates a new `Colour`, setting its RGB value to `(233, 30, 99)`. magenta, 0xE91E63; /// Creates a new `Colour`, setting its RGB value to `(230, 131, 151)`. - meibi_pink, 0xE68397; + meibe_pink, 0xE68397; /// Creates a new `Colour`, setting its RGB value to `(230, 126, 34)`. orange, 0xE67E22; /// Creates a new `Colour`, setting its RGB value to `(155, 89, 182)`. |