|
1 | | - // Custom raylib color palette for amazing visuals on WHITE background |
2 | | - #define LIGHTGRAY (Color){ 200, 200, 200, 255 } // Light Gray |
3 | | - #define GRAY (Color){ 130, 130, 130, 255 } // Gray |
4 | | - #define DARKGRAY (Color){ 80, 80, 80, 255 } // Dark Gray |
5 | | - #define YELLOW (Color){ 253, 249, 0, 255 } // Yellow |
6 | | - #define GOLD (Color){ 255, 203, 0, 255 } // Gold |
7 | | - #define ORANGE (Color){ 255, 161, 0, 255 } // Orange |
8 | | - #define PINK (Color){ 255, 109, 194, 255 } // Pink |
9 | | - #define RED (Color){ 230, 41, 55, 255 } // Red |
10 | | - #define MAROON (Color){ 190, 33, 55, 255 } // Maroon |
11 | | - #define GREEN (Color){ 0, 228, 48, 255 } // Green |
12 | | - #define LIME (Color){ 0, 158, 47, 255 } // Lime |
13 | | - #define DARKGREEN (Color){ 0, 117, 44, 255 } // Dark Green |
14 | | - #define SKYBLUE (Color){ 102, 191, 255, 255 } // Sky Blue |
15 | | - #define BLUE (Color){ 0, 121, 241, 255 } // Blue |
16 | | - #define DARKBLUE (Color){ 0, 82, 172, 255 } // Dark Blue |
17 | | - #define PURPLE (Color){ 200, 122, 255, 255 } // Purple |
18 | | - #define VIOLET (Color){ 135, 60, 190, 255 } // Violet |
19 | | - #define DARKPURPLE (Color){ 112, 31, 126, 255 } // Dark Purple |
20 | | - #define BEIGE (Color){ 211, 176, 131, 255 } // Beige |
21 | | - #define BROWN (Color){ 127, 106, 79, 255 } // Brown |
22 | | - #define DARKBROWN (Color){ 76, 63, 47, 255 } // Dark Brown |
23 | 1 |
|
24 | | - #define WHITE (Color){ 255, 255, 255, 255 } // White |
25 | | - #define BLACK (Color){ 0, 0, 0, 255 } // Black |
26 | | - #define BLANK (Color){ 0, 0, 0, 0 } // Blank (Transparent) |
27 | | - #define MAGENTA (Color){ 255, 0, 255, 255 } // Magenta |
28 | | - #define RAYWHITE (Color){ 245, 245, 245, 255 } // My own White (raylib logo) |
| 2 | + // 흰색 배경에서 환상적인 시각 효과를 제공하는 raylib 기본 색상 팔레트 |
| 3 | + #define LIGHTGRAY (Color){ 200, 200, 200, 255 } // 밝은 회색 |
| 4 | + #define GRAY (Color){ 130, 130, 130, 255 } // 회색 |
| 5 | + #define DARKGRAY (Color){ 80, 80, 80, 255 } // 짙은 회색 |
| 6 | + #define YELLOW (Color){ 253, 249, 0, 255 } // 노란색 |
| 7 | + #define GOLD (Color){ 255, 203, 0, 255 } // 금색 |
| 8 | + #define ORANGE (Color){ 255, 161, 0, 255 } // 주황색 |
| 9 | + #define PINK (Color){ 255, 109, 194, 255 } // 분홍색 |
| 10 | + #define RED (Color){ 230, 41, 55, 255 } // 빨간색 |
| 11 | + #define MAROON (Color){ 190, 33, 55, 255 } // 적갈색 |
| 12 | + #define GREEN (Color){ 0, 228, 48, 255 } // 초록색 |
| 13 | + #define LIME (Color){ 0, 158, 47, 255 } // 라임색 |
| 14 | + #define DARKGREEN (Color){ 0, 117, 44, 255 } // 짙은 초록색 |
| 15 | + #define SKYBLUE (Color){ 102, 191, 255, 255 } // 하늘색 |
| 16 | + #define BLUE (Color){ 0, 121, 241, 255 } // 파란색 |
| 17 | + #define DARKBLUE (Color){ 0, 82, 172, 255 } // 짙은 파란색 |
| 18 | + #define PURPLE (Color){ 200, 122, 255, 255 } // 보라색 |
| 19 | + #define VIOLET (Color){ 135, 60, 190, 255 } // 남보라색 |
| 20 | + #define DARKPURPLE (Color){ 112, 31, 126, 255 } // 짙은 보라색 |
| 21 | + #define BEIGE (Color){ 211, 176, 131, 255 } // 베이지색 |
| 22 | + #define BROWN (Color){ 127, 106, 79, 255 } // 갈색 |
| 23 | + #define DARKBROWN (Color){ 76, 63, 47, 255 } // 짙은 갈색 |
| 24 | + |
| 25 | + #define WHITE (Color){ 255, 255, 255, 255 } // 흰색 |
| 26 | + #define BLACK (Color){ 0, 0, 0, 255 } // 검은색 |
| 27 | + #define BLANK (Color){ 0, 0, 0, 0 } // 색상 없음 (투명) |
| 28 | + #define MAGENTA (Color){ 255, 0, 255, 255 } // 자홍색 |
| 29 | + #define RAYWHITE (Color){ 245, 245, 245, 255 } // raylib 고유 색상 (raylib 로고) |
0 commit comments