diff options
| author | Fuwn <[email protected]> | 2020-10-26 19:03:53 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-10-26 19:03:53 -0700 |
| commit | 9742614a1dc4699c1f2c69d923d402237672335d (patch) | |
| tree | a49f7d834372f37cef06b30a28ff1b40bdfaa079 /src/core/colours.rs | |
| parent | Create README.md (diff) | |
| download | dep-core-next-9742614a1dc4699c1f2c69d923d402237672335d.tar.xz dep-core-next-9742614a1dc4699c1f2c69d923d402237672335d.zip | |
repo: push main from local to remote
Diffstat (limited to 'src/core/colours.rs')
| -rw-r--r-- | src/core/colours.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/colours.rs b/src/core/colours.rs new file mode 100644 index 0000000..0d90e0e --- /dev/null +++ b/src/core/colours.rs @@ -0,0 +1,8 @@ +use serenity::utils::Colour; + +lazy_static! { + pub static ref MAIN: Colour = Colour::new(0xfebe50); // 0x5da9ff + pub static ref BLUE: Colour = Colour::new(0x6969ff); + pub static ref RED: Colour = Colour::new(0xff4040); + pub static ref GREEN: Colour = Colour::new(0x00ff7f); +} |