-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8b732e4
commit 3c6adc8
Showing
4 changed files
with
79 additions
and
26 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
use raylib::prelude::*; | ||
|
||
pub static COLOR_RED: Color = Color::new(232, 57, 53, 255); | ||
pub static COLOR_GREEN: Color = Color::new(54, 184, 62, 255); | ||
pub static COLOR_YELLOW: Color = Color::new(227, 210, 70, 255); | ||
pub static COLOR_BLUE: Color = Color::new(67, 130, 232, 255); | ||
pub static COLOR_DARK: Color = Color::new(0, 0, 0, 255); | ||
pub static COLOR_BLACK: Color = Color::new(0, 0, 0, 255); | ||
pub static COLOR_LIGHT: Color = Color::new(247, 251, 252, 255); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters