Skip to content

Commit cbd12c7

Browse files
committed
Update cheatsheet/kr/raylib_colors.c
1 parent 2c73d6f commit cbd12c7

File tree

2 files changed

+31
-28
lines changed

2 files changed

+31
-28
lines changed

cheatsheet/cheatsheet_kr.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
font-style: normal;
3535
font-size-adjust:0.49;
3636
}
37+
3738
/* 둥근모꼴+ Fixedsys, Public Domain License (https://cactus.tistory.com/193) */
3839
@font-face {
3940
font-family: 'DungGeunMo';
@@ -42,6 +43,7 @@
4243
font-style: normal;
4344
size-adjust: 125%
4445
}
46+
4547
body{background-color:#f5f5f5;}
4648

4749
.eximage img{margin: 0 auto; border: 1px solid; border-color: black; width:770px; height:auto;}
@@ -162,7 +164,7 @@
162164
<p id="version">v5.0 레퍼런스 카드 [<a id="downpdf" href="https://www.raylib.com/cheatsheet/raylib_cheatsheet_v5.0.pdf">PDF 다운로드</a>]</p>
163165
</div>
164166
<br>
165-
<p>> 한국어 번역 기여: 순천향대학교 오픈 소스 SW 동아리 '6PM' (<a href="https://github.com/jdeokkim">Jaedeok Kim</a>, <a href="https://github.com/dennis0324">Dennis Ko</a>, <a href="https://github.com/minsubak">Minsu Bak</a>)</p>
167+
<p>> 한국어 번역 기여: 순천향대학교 오픈 소스 SW 동아리 <a href="https://github.com/6pm-crew">'6PM'</a> (<a href="https://github.com/jdeokkim">Jaedeok Kim</a>, <a href="https://github.com/dennis0324">Dennis Ko</a>, <a href="https://github.com/minsubak">Minsu Bak</a>)</p>
166168
<div id="fulldata">
167169
<p id="pcore">module: rcore <a href="#pcore"></a></p>
168170
<div id="core"><pre><code class="cpp"></code></pre></div>

cheatsheet/kr/raylib_colors.c

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
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
231

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

Comments
 (0)