Mirage Source
Colors - Printable Version

+- Mirage Source (https://mirage-engine.uk/forums)
+-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61)
+--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18)
+---- Forum: Resources (https://mirage-engine.uk/forums/forumdisplay.php?fid=49)
+---- Thread: Colors (/showthread.php?tid=2107)



Colors - Egon - 17-09-2008

Just because I'm lazy and don't want to keep getting the colors RGB everytime I need them, I'm sharing this.

Code:
Color = (RGB(0, 0, 0))      ' Black
Color = (RGB(128, 128, 128))' Dark Gray
Color = (RGB(192, 192, 192))' Light Gray
Color = (RGB(255, 255, 255))' White
Color = (RGB(230, 115, 0))  ' Dark Orange
Color = (RGB(255, 128, 0))  ' Orange
Color = (RGB(230, 230, 0))  ' Dark Yellow
Color = (RGB(255, 255, 0))  ' Yellow
Color = (RGB(0, 0, 128))    ' Dark Blue
Color = (RGB(0, 0, 255))    ' Blue
Color = (RGB(0, 255, 255))  ' Light Blue [Ice]
Color = (RGB(128, 0, 0))    ' Dark Red
Color = (RGB(255, 0, 128))  ' Red
Color = (RGB(0, 128, 0))    ' Dark Green
Color = (RGB(0, 255, 128))  ' Green
Color = (RGB(128, 0, 128))  ' Dark Purple
Color = (RGB(255, 0, 255))  ' Pink
Color = (RGB(116, 85, 12))  ' Dark Brown
Color = (RGB(219, 159, 21)) ' Brown
Color = (RGB(235, 198, 120))' Light Brown