-
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.
Merge pull request #11 from RealDoigt/other-lib-colors
Other lib colors
- Loading branch information
Showing
3 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
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,54 @@ | ||
module raylib_misc.colors.other; | ||
import raylib_misc.colors.web; | ||
import raylib; | ||
|
||
// Qt Colors | ||
alias qtWhite = white; | ||
alias qtBlack = black; | ||
alias qtCyan = aqua; | ||
alias qtDarkCyan = teal; | ||
alias qtRed = red; | ||
alias qtDarkRed = maroon; | ||
alias qtMagenta = fuchsia; | ||
alias qtDarkMagenta = purple; | ||
alias qtGreen = lime; | ||
alias qtDarkGreen = green; | ||
alias qtYellow = yellow; | ||
alias qtDarkYellow = olive; | ||
alias qtBlue = blue; | ||
alias qtDarkBlue = navy; | ||
enum Color qtGray = {160, 160, 164, 255}; | ||
alias qtDarkGray = gray; | ||
alias qtLightGray = silver; | ||
alias qtTransparent = transparent; | ||
|
||
// SFML Colors | ||
alias sfWhite = white; | ||
alias sfBlack = black; | ||
alias sfCyan = aqua; | ||
alias sfRed = red; | ||
alias sfMagenta = fuchsia; | ||
alias sfGreen = lime; | ||
alias sfYellow = yellow; | ||
alias sfBlue = blue; | ||
alias sfGray = gray; | ||
alias sfTransparent = transparent; | ||
|
||
// EFL Colors | ||
alias eflWhite = white; | ||
alias eflBlack = black; | ||
alias eflRed = red; | ||
alias eflGreen = green; | ||
alias eflBlue = blue; | ||
enum Color eflDarkBlue = { 0, 0, 160}; | ||
alias eflYellow = yellow; | ||
alias eflMagenta = fuchsia; | ||
alias eflCyan = aqua; | ||
alias eflDarkMagenta = purple; | ||
alias eflBrown = brown; | ||
alias eflMaroon = maroon; | ||
alias eflLime = lime; | ||
alias eflGray = gray; | ||
alias eflSilver = silver; | ||
alias eflOlive = olive; | ||
alias eflInvisible = transparent; |
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,29 @@ | ||
module raylib_misc.colors.raylib; | ||
import raylib; | ||
|
||
alias rLightGray = Colors.LIGHTGRAY; | ||
alias rGray = Colors.GRAY; | ||
alias rDarkGray = Colors.DARKGRAY; | ||
alias rYellow = Colors.YELLOW; | ||
alias rGold = Colors.GOLD; | ||
alias rOrange = Colors.ORANGE; | ||
alias rPink = Colors.PINK; | ||
alias rRed = Colors.RED; | ||
alias rMaroon = Colors.MAROON; | ||
alias rGreen = Colors.GREEN; | ||
alias rLime = Colors.LIME; | ||
alias rDarkGreen = Colors.DARKGREEN; | ||
alias rSkyBlue = Colors.SKYBLUE; | ||
alias rBlue = Colors.BLUE; | ||
alias rDarkBlue = Colors.DARKBLUE; | ||
alias rPurple = Colors.PURPLE; | ||
alias rViolet = Colors.VIOLET; | ||
alias rDarkPurple = Colors.DARKPURPLE; | ||
alias rBeige = Colors.BEIGE; | ||
alias rBrown = Colors.BROWN; | ||
alias rDarkBrown = Colors.DARKBROWN; | ||
alias rWhite = Colors.WHITE; | ||
alias rBlack = Colors.BLACK; | ||
alias rBlank = Colors.BLANK; | ||
alias rMagenta = Colors.MAGENTA; | ||
alias rRayWhite = Colors.RAYWHITE; |