1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
|
---
title: <color>
slug: Web/CSS/color_value
tags:
- CSS
- CSS Date Type
- Layout
- Reference
- Web
translation_of: Web/CSS/color_value
---
<div>{{CSSRef}}</div>
<p><a href="/ko/docs/Web/CSS">CSS</a> <strong><code><color></code></strong> <a href="/ko/docs/Web/CSS/CSS_Types">자료형</a>은 <a href="https://ko.wikipedia.org/wiki/SRGB">sRGB 색 공간</a>의 한 색을 표현하며, 추가로 <a href="https://ko.wikipedia.org/wiki/%EC%95%8C%ED%8C%8C_%EC%B1%84%EB%84%90">알파 채널</a> 투명도 값도 가질 수 있어 자신이 가리키는 색상과 배경이 <a href="https://www.w3.org/TR/2003/REC-SVG11-20030114/masking.html#SimpleAlphaBlending">어떻게 합성되어야 하는지</a> 지정할 수 있습니다.</p>
<p><code><color></code>는 다음 방법으로 정의할 수 있습니다.</p>
<ul>
<li>키워드 사용 (<code>blue</code>, <code>transparent</code> 등)</li>
<li>RGB 3차원 좌표계 사용 (# + 16진수 표기법 또는 <code>rgb()</code>, <code>rgba()</code>의 함수형 표기법)</li>
<li>HSL 실린더형 좌표계 사용 (<code>hsl()</code>, <code>hsla()</code>의 함수형 표기법)</li>
</ul>
<div class="note">
<p><strong>참고:</strong> 이 글은 <code><color></code> 자료형에 대해 상세히 기술합니다. HTML에서 실제로 색을 쓰는 법이 더 알고 싶으시면 <a href="/ko/docs/Web/HTML/Applying_color">CSS로 HTML 요소에 색 입히기</a>를 참고하세요.</p>
</div>
<h2 id="구문">구문</h2>
<p><code><color></code> 자료형은 아래 나열된 선택지 중 하나를 사용해 지정합니다.</p>
<div class="note">
<p><strong>참고:</strong> <code><color></code> 값은 정확하게 정의할 수 있지만 실제로 화면에 표시될 때는 기기별로 차이가 있을 수도 있습니다. 대부분의 화면 색이 제대로 조정되지 않았으며 일부 브라우저는 기기의 <a href="https://ko.wikipedia.org/wiki/ICC_%ED%94%84%EB%A1%9C%ED%8C%8C%EC%9D%BC">색상 프로필</a>을 지원하지 않기 때문입니다.</p>
</div>
<h3 id="색상_키워드">색상 키워드</h3>
<p>색상 키워드는 대소문자를 구분하지 않는 식별자로, <code>red</code>, <code>blue</code>, <code>black</code>, <code>lightseagreen</code>처럼 특정 색을 나타냅니다. 이름이 표현하는 색을 그럭저럭 가리키고 있긴 하지만 모든 키워드의 본질은 인위적이며 어떤 특정한 규칙을 따르거나 하지 않습니다.</p>
<p>색상 키워드를 사용할 땐 몇 가지 고려할 점이 있습니다.</p>
<ul>
<li><a href="/ko/docs/Web/HTML">HTML</a>은 CSS1에서 찾을 수 있는 16가지 기본 색상만 인식합니다. 알 수 없는 값은 특정 알고리즘을 사용해 변환하는데 그 결과는 대개 완전히 다른 색입니다. 나머지 색상 키워드는 CSS와 <a href="/ko/docs/Web/SVG">SVG</a>에서만 사용해야 합니다.</li>
<li>HTML과 달리 CSS는 알 수 없는 키워드를 완전히 무시합니다.</li>
<li>모든 색상 키워드는 투명도 없는 단일 색상을 표현합니다.</li>
<li>어떤 키워드는 다른 키워드의 다른 이름입니다.
<ul>
<li><code>aqua</code> / <code>cyan</code></li>
<li><code>fuchsia</code> / <code>magenta</code></li>
<li><code>darkgray</code> / <code>darkgrey</code></li>
<li><code>darkslategray</code> / <code>darkslategrey</code></li>
<li><code>dimgray</code> / <code>dimgrey</code></li>
<li><code>lightgray</code> / <code>lightgrey</code></li>
<li><code>lightslategray</code> / <code>lightslategrey</code></li>
<li><code>gray</code> / <code>grey</code></li>
<li><code>slategray</code> / <code>slategrey</code></li>
</ul>
</li>
<li>많은 키워드를 <a href="https://ko.wikipedia.org/wiki/X_%EC%9C%88%EB%8F%84_%EC%8B%9C%EC%8A%A4%ED%85%9C">X11</a>에서 가져오긴 했지만, 제조사들이 X11 색상을 특정 하드웨어에 맞춰 조절한 경우도 있었기에 RGB값은 차이가 존재할 수 있습니다.</li>
</ul>
<div class="note">
<p><strong>참고:</strong> CSS의 진화와 함께 색상 키워드도 많은 변화를 겪었습니다.</p>
<ul>
<li>CSS Level 1은 16개의 기본 색상만 지니고 있었습니다. VGA 그래픽 카드가 표현할 수 있는 색에서 가져온 것이기에 <a href="https://ko.wikipedia.org/wiki/%EB%B9%84%EB%94%94%EC%98%A4_%EA%B7%B8%EB%9E%98%ED%94%BD%EC%8A%A4_%EC%96%B4%EB%A0%88%EC%9D%B4">VGA</a> 색상이라고 칭했습니다.</li>
<li>CSS Level 2에서는 <code>orange</code> 키워드를 추가했습니다.</li>
<li>초기 브라우저들은 명세에 없음에도 불구하고 주로 X11 색상표에서 가져온 다양한 색상을 지원했습니다. 그러나 SVG 1.0과 CSS Colors Level 3 이전까지 그 목록이 정식으로 정해진 적은 없었습니다. 추가한 색상 키워드는 확장 색상 키워드, X11 색상, 또는 SVG 색상이라고 부릅니다.</li>
<li>CSS Colors Level 4에선 <a href="https://codepen.io/trezy/post/honoring-a-great-man">웹 개척자 에릭 메이어를 기리기 위해</a> <code>rebeccapurple</code> 키워드를 추가했습니다.</li>
</ul>
</div>
<table id="colors_table">
<thead>
<tr>
<th scope="col">명세</th>
<th scope="col">키워드</th>
<th scope="col">RGB 16진수값</th>
<th scope="col">미리보기</th>
</tr>
</thead>
<tbody>
<tr style="position: relative;">
<td rowspan="16">{{SpecName("CSS1")}}</td>
<td style="text-align: center;"><code>black</code></td>
<td><code>#000000</code></td>
<td style="background: black;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>silver</code></td>
<td><code>#c0c0c0</code></td>
<td style="background: silver;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>gray</code></td>
<td><code>#808080</code></td>
<td style="background: gray;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>white</code></td>
<td><code>#ffffff</code></td>
<td style="background: white;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>maroon</code></td>
<td><code>#800000</code></td>
<td style="background: maroon;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>red</code></td>
<td><code>#ff0000</code></td>
<td style="background: red;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>purple</code></td>
<td><code>#800080</code></td>
<td style="background: purple;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>fuchsia</code></td>
<td><code>#ff00ff</code></td>
<td style="background: fuchsia;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>green</code></td>
<td><code>#008000</code></td>
<td style="background: green;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lime</code></td>
<td><code>#00ff00</code></td>
<td style="background: lime;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>olive</code></td>
<td><code>#808000</code></td>
<td style="background: olive;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>yellow</code></td>
<td><code>#ffff00</code></td>
<td style="background: yellow;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>navy</code></td>
<td><code>#000080</code></td>
<td style="background: navy;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>blue</code></td>
<td><code>#0000ff</code></td>
<td style="background: blue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>teal</code></td>
<td><code>#008080</code></td>
<td style="background: teal;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>aqua</code></td>
<td><code>#00ffff</code></td>
<td style="background: aqua;"></td>
</tr>
<tr>
<td>{{SpecName("CSS2.1")}}</td>
<td style="text-align: center;"><code>orange</code></td>
<td><code>#ffa500</code></td>
<td style="background: orange;"></td>
</tr>
<tr>
<td rowspan="130">{{SpecName("CSS3 Colors")}}</td>
<td style="text-align: center;"><code>aliceblue</code></td>
<td><code>#f0f8ff</code></td>
<td style="background: aliceblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>antiquewhite</code></td>
<td><code>#faebd7</code></td>
<td style="background: antiquewhite;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>aquamarine</code></td>
<td><code>#7fffd4</code></td>
<td style="background: aquamarine;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>azure</code></td>
<td><code>#f0ffff</code></td>
<td style="background: azure;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>beige</code></td>
<td><code>#f5f5dc</code></td>
<td style="background: beige;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>bisque</code></td>
<td><code>#ffe4c4</code></td>
<td style="background: bisque;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>blanchedalmond</code></td>
<td><code>#ffebcd</code></td>
<td style="background: blanchedalmond;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>blueviolet</code></td>
<td><code>#8a2be2</code></td>
<td style="background: blueviolet;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>brown</code></td>
<td><code>#a52a2a</code></td>
<td style="background: brown;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>burlywood</code></td>
<td><code>#deb887</code></td>
<td style="background: burlywood;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>cadetblue</code></td>
<td><code>#5f9ea0</code></td>
<td style="background: cadetblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>chartreuse</code></td>
<td><code>#7fff00</code></td>
<td style="background: chartreuse;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>chocolate</code></td>
<td><code>#d2691e</code></td>
<td style="background: chocolate;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>coral</code></td>
<td><code>#ff7f50</code></td>
<td style="background: coral;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>cornflowerblue</code></td>
<td><code>#6495ed</code></td>
<td style="background: cornflowerblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>cornsilk</code></td>
<td><code>#fff8dc</code></td>
<td style="background: cornsilk;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>crimson</code></td>
<td><code>#dc143c</code></td>
<td style="background: crimson;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>cyan</code><br>
(<code>aqua</code>의 다른 이름)</td>
<td><code>#00ffff</code></td>
<td style="background: cyan;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkblue</code></td>
<td><code>#00008b</code></td>
<td style="background: darkblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkcyan</code></td>
<td><code>#008b8b</code></td>
<td style="background: darkcyan;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkgoldenrod</code></td>
<td><code>#b8860b</code></td>
<td style="background: darkgoldenrod;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkgray</code></td>
<td><code>#a9a9a9</code></td>
<td style="background: darkgray;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkgreen</code></td>
<td><code>#006400</code></td>
<td style="background: darkgreen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkgrey</code></td>
<td><code>#a9a9a9</code></td>
<td style="background: darkgrey;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkkhaki</code></td>
<td><code>#bdb76b</code></td>
<td style="background: darkkhaki;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkmagenta</code></td>
<td><code>#8b008b</code></td>
<td style="background: darkmagenta;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkolivegreen</code></td>
<td><code>#556b2f</code></td>
<td style="background: darkolivegreen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkorange</code></td>
<td><code>#ff8c00</code></td>
<td style="background: darkorange;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkorchid</code></td>
<td><code>#9932cc</code></td>
<td style="background: darkorchid;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkred</code></td>
<td><code>#8b0000</code></td>
<td style="background: darkred;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darksalmon</code></td>
<td><code>#e9967a</code></td>
<td style="background: darksalmon;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkseagreen</code></td>
<td><code>#8fbc8f</code></td>
<td style="background: darkseagreen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkslateblue</code></td>
<td><code>#483d8b</code></td>
<td style="background: darkslateblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkslategray</code></td>
<td><code>#2f4f4f</code></td>
<td style="background: darkslategray;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkslategrey</code></td>
<td><code>#2f4f4f</code></td>
<td style="background: darkslategrey;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkturquoise</code></td>
<td><code>#00ced1</code></td>
<td style="background: darkturquoise;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>darkviolet</code></td>
<td><code>#9400d3</code></td>
<td style="background: darkviolet;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>deeppink</code></td>
<td><code>#ff1493</code></td>
<td style="background: deeppink;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>deepskyblue</code></td>
<td><code>#00bfff</code></td>
<td style="background: deepskyblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>dimgray</code></td>
<td><code>#696969</code></td>
<td style="background: dimgray;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>dimgrey</code></td>
<td><code>#696969</code></td>
<td style="background: dimgrey;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>dodgerblue</code></td>
<td><code>#1e90ff</code></td>
<td style="background: dodgerblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>firebrick</code></td>
<td><code>#b22222</code></td>
<td style="background: firebrick;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>floralwhite</code></td>
<td><code>#fffaf0</code></td>
<td style="background: floralwhite;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>forestgreen</code></td>
<td><code>#228b22</code></td>
<td style="background: forestgreen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>gainsboro</code></td>
<td><code>#dcdcdc</code></td>
<td style="background: gainsboro;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>ghostwhite</code></td>
<td><code>#f8f8ff</code></td>
<td style="background: ghostwhite;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>gold</code></td>
<td><code>#ffd700</code></td>
<td style="background: gold;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>goldenrod</code></td>
<td><code>#daa520</code></td>
<td style="background: goldenrod;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>greenyellow</code></td>
<td><code>#adff2f</code></td>
<td style="background: greenyellow ;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>grey</code></td>
<td><code>#808080</code></td>
<td style="background: grey;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>honeydew</code></td>
<td><code>#f0fff0</code></td>
<td style="background: honeydew;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>hotpink</code></td>
<td><code>#ff69b4</code></td>
<td style="background: hotpink;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>indianred</code></td>
<td><code>#cd5c5c</code></td>
<td style="background: indianred;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>indigo</code></td>
<td><code>#4b0082</code></td>
<td style="background: indigo;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>ivory</code></td>
<td><code>#fffff0</code></td>
<td style="background: ivory;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>khaki</code></td>
<td><code>#f0e68c</code></td>
<td style="background: khaki;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lavender</code></td>
<td><code>#e6e6fa</code></td>
<td style="background: lavender;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lavenderblush</code></td>
<td><code>#fff0f5</code></td>
<td style="background: lavenderblush ;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lawngreen</code></td>
<td><code>#7cfc00</code></td>
<td style="background: lawngreen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lemonchiffon</code></td>
<td><code>#fffacd</code></td>
<td style="background: lemonchiffon;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightblue</code></td>
<td><code>#add8e6</code></td>
<td style="background: lightblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightcoral</code></td>
<td><code>#f08080</code></td>
<td style="background: lightcoral;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightcyan</code></td>
<td><code>#e0ffff</code></td>
<td style="background: lightcyan;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightgoldenrodyellow</code></td>
<td><code>#fafad2</code></td>
<td style="background: lightgoldenrodyellow ;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightgray</code></td>
<td><code>#d3d3d3</code></td>
<td style="background: lightgray;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightgreen</code></td>
<td><code>#90ee90</code></td>
<td style="background: lightgreen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightgrey</code></td>
<td><code>#d3d3d3</code></td>
<td style="background: lightgrey;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightpink</code></td>
<td><code>#ffb6c1</code></td>
<td style="background: lightpink;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightsalmon</code></td>
<td><code>#ffa07a</code></td>
<td style="background: lightsalmon;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightseagreen</code></td>
<td><code>#20b2aa</code></td>
<td style="background: lightseagreen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightskyblue</code></td>
<td><code>#87cefa</code></td>
<td style="background: lightskyblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightslategray</code></td>
<td><code>#778899</code></td>
<td style="background: lightslategray;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightslategrey</code></td>
<td><code>#778899</code></td>
<td style="background: lightslategrey;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightsteelblue</code></td>
<td><code>#b0c4de</code></td>
<td style="background: lightsteelblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>lightyellow</code></td>
<td><code>#ffffe0</code></td>
<td style="background: lightyellow;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>limegreen</code></td>
<td><code>#32cd32</code></td>
<td style="background: limegreen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>linen</code></td>
<td><code>#faf0e6</code></td>
<td style="background: linen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>magenta</code><br>
(<code>fuchsia</code>의 다른 이름)</td>
<td><code>#ff00ff</code></td>
<td style="background: magenta;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>mediumaquamarine</code></td>
<td><code>#66cdaa</code></td>
<td style="background: mediumaquamarine;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>mediumblue</code></td>
<td><code>#0000cd</code></td>
<td style="background: mediumblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>mediumorchid</code></td>
<td><code>#ba55d3</code></td>
<td style="background: mediumorchid;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>mediumpurple</code></td>
<td><code>#9370db</code></td>
<td style="background: mediumpurple;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>mediumseagreen</code></td>
<td><code>#3cb371</code></td>
<td style="background: mediumseagreen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>mediumslateblue</code></td>
<td><code>#7b68ee</code></td>
<td style="background: mediumslateblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>mediumspringgreen</code></td>
<td><code>#00fa9a</code></td>
<td style="background: mediumspringgreen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>mediumturquoise</code></td>
<td><code>#48d1cc</code></td>
<td style="background: mediumturquoise;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>mediumvioletred</code></td>
<td><code>#c71585</code></td>
<td style="background: mediumvioletred;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>midnightblue</code></td>
<td><code>#191970</code></td>
<td style="background: midnightblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>mintcream</code></td>
<td><code>#f5fffa</code></td>
<td style="background: mintcream;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>mistyrose</code></td>
<td><code>#ffe4e1</code></td>
<td style="background: mistyrose;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>moccasin</code></td>
<td><code>#ffe4b5</code></td>
<td style="background: moccasin;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>navajowhite</code></td>
<td><code>#ffdead</code></td>
<td style="background: navajowhite;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>oldlace</code></td>
<td><code>#fdf5e6</code></td>
<td style="background: oldlace;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>olivedrab</code></td>
<td><code>#6b8e23</code></td>
<td style="background: olivedrab;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>orangered</code></td>
<td><code>#ff4500</code></td>
<td style="background: orangered;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>orchid</code></td>
<td><code>#da70d6</code></td>
<td style="background: orchid;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>palegoldenrod</code></td>
<td><code>#eee8aa</code></td>
<td style="background: palegoldenrod;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>palegreen</code></td>
<td><code>#98fb98</code></td>
<td style="background: palegreen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>paleturquoise</code></td>
<td><code>#afeeee</code></td>
<td style="background: paleturquoise;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>palevioletred</code></td>
<td><code>#db7093</code></td>
<td style="background: palevioletred;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>papayawhip</code></td>
<td><code>#ffefd5</code></td>
<td style="background: papayawhip;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>peachpuff</code></td>
<td><code>#ffdab9</code></td>
<td style="background: peachpuff;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>peru</code></td>
<td><code>#cd853f</code></td>
<td style="background: peru;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>pink</code></td>
<td><code>#ffc0cb</code></td>
<td style="background: pink;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>plum</code></td>
<td><code>#dda0dd</code></td>
<td style="background: plum;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>powderblue</code></td>
<td><code>#b0e0e6</code></td>
<td style="background: powderblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>rosybrown</code></td>
<td><code>#bc8f8f</code></td>
<td style="background: rosybrown;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>royalblue</code></td>
<td><code>#4169e1</code></td>
<td style="background: royalblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>saddlebrown</code></td>
<td><code>#8b4513</code></td>
<td style="background: saddlebrown;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>salmon</code></td>
<td><code>#fa8072</code></td>
<td style="background: salmon;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>sandybrown</code></td>
<td><code>#f4a460</code></td>
<td style="background: sandybrown;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>seagreen</code></td>
<td><code>#2e8b57</code></td>
<td style="background: seagreen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>seashell</code></td>
<td><code>#fff5ee</code></td>
<td style="background: seashell;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>sienna</code></td>
<td><code>#a0522d</code></td>
<td style="background: sienna;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>skyblue</code></td>
<td><code>#87ceeb</code></td>
<td style="background: skyblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>slateblue</code></td>
<td><code>#6a5acd</code></td>
<td style="background: slateblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>slategray</code></td>
<td><code>#708090</code></td>
<td style="background: slategray;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>slategrey</code></td>
<td><code>#708090</code></td>
<td style="background: slategrey;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>snow</code></td>
<td><code>#fffafa</code></td>
<td style="background: snow;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>springgreen</code></td>
<td><code>#00ff7f</code></td>
<td style="background: springgreen;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>steelblue</code></td>
<td><code>#4682b4</code></td>
<td style="background: steelblue;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>tan</code></td>
<td><code>#d2b48c</code></td>
<td style="background: tan;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>thistle</code></td>
<td><code>#d8bfd8</code></td>
<td style="background: thistle;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>tomato</code></td>
<td><code>#ff6347</code></td>
<td style="background: tomato;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>turquoise</code></td>
<td><code>#40e0d0</code></td>
<td style="background: turquoise;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>violet</code></td>
<td><code>#ee82ee</code></td>
<td style="background: violet;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>wheat</code></td>
<td><code>#f5deb3</code></td>
<td style="background: wheat;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>whitesmoke</code></td>
<td><code>#f5f5f5</code></td>
<td style="background: whitesmoke;"></td>
</tr>
<tr>
<td style="text-align: center;"><code>yellowgreen</code></td>
<td><code>#9acd32</code></td>
<td style="background: yellowgreen;"></td>
</tr>
<tr>
<td>{{SpecName("CSS4 Colors")}}</td>
<td style="text-align: center;"><a href="https://en.wikipedia.org/wiki/Eric_A._Meyer#Personal_life"><code>rebeccapurple</code></a></td>
<td><code>#663399</code></td>
<td style="background: rebeccapurple;"></td>
</tr>
</tbody>
</table>
<h3 id="transparent_키워드"><code><a id="transparent" name="transparent">transparent</a></code> 키워드</h3>
<p><code>transparent</code> 키워드는 완전히 투명한 색으로, "색"을 입힌 항목의 뒷편이 모두 보입니다. 기술적으로 <code>transparent</code>는 <code>rgba(0,0,0,0)</code>의 짧은 이름입니다.</p>
<div class="note">
<p><strong>호환성 참고:</strong> {{cssxref("gradient")}} 등 특정 상황에서 의도하지 않은 결과를 피하기 위해, 현재 CSS 명세에선 <code>transparent</code>를 <a href="https://www.w3.org/TR/2012/CR-css3-images-20120417/#color-stop-syntax">투명도를 미리 곱한 색 공간</a>에서 계산하도록 명시하고 있습니다. 그러나 오래된 브라우저에서는 투명도 0의 검정으로 취급할 수 있음에 주의하세요.</p>
</div>
<div class="note">
<p><strong>역사 참고:</strong> <code>transparent</code>는 CSS Level 2 (Revision 1) 전까지 실제 색상이 아니었습니다. 대신 {{cssxref("background")}}와 {{cssxref("border")}}의 <code><color></code> 자리에 사용하는 특별한 키워드로, 상속받은 단색을 덮어 쓸 수 있도록 추가됐었습니다. CSS Colors Level 3에서 알파 채널이 추가되면서 <code>transparent</code>도 실제 색상으로 재정의되었습니다. 덕분에 <code><color></code> 값 어디에나 사용할 수 있습니다.</p>
</div>
<h3 id="currentColor_키워드"><code><a id="currentColor" name="currentColor">currentColor</a></code> 키워드</h3>
<p><code>currentColor</code> 키워드는 요소의 {{Cssxref("color")}} 속성값을 나타냅니다. 이를 통해 다른 속성이 <code>color</code> 속성값을 따라가도록 설정할 수 있습니다.</p>
<p><code>color</code> 속성의 값으로 <code>currentColor</code> 키워드를 사용하면, 값을 상속받은 <code>color</code> 속성에서 대신 가져옵니다.</p>
<h4 id="currentColor_예제"><code>currentColor</code> 예제</h4>
<pre class="brush: html"><div style="color: blue; border: 1px dashed currentColor;">
이 글의 색은 파랑입니다.
<div style="background: currentColor; height:9px;"></div>
이 블록은 파란 테두리로 둘러쌓여 있습니다.
</div></pre>
<p>{{EmbedLiveSample("currentColor_예제")}}</p>
<h3 id="RGB_색상">RGB 색상</h3>
<p>RGB 색상 모델은 빨강, 초록, 파랑을 통해 특정 색을 표현합니다. 선택사항으로 색의 투명도를 알파 채널로 표현할 수 있습니다.</p>
<h4 id="구문_2">구문</h4>
<p>RGB 색상은 # 뒤의 16진수 표기법이나 함수형 표기법(<a id="rgb()" name="rgb()"><code>rgb()</code></a>, <a id="rgba()" name="rgba()"><code>rgba()</code></a>)으로 표현할 수 있습니다.</p>
<div class="note">
<p><strong>참고:</strong> CSS Colors Level 4부터 <code>rgba()</code>는 <code>rgb()</code>의 다른 이름입니다. Level 4 표준을 구현한 브라우저에서는 같은 매개변수를 받고 동일하게 행동합니다.</p>
</div>
<dl>
<dt>16진수 표기법: <code>#RRGGBB[AA]</code></dt>
<dd><code>R</code>(빨강), <code>G</code>(초록), <code>B</code>(파랑), <code>A</code>(알파)는 16진수 문자(0-9, A-F)입니다. <code>A</code>는 선택사항입니다. 예를 들어 <code>#ff0000</code>은 <code>#ff0000ff</code>와 같습니다.</dd>
<dt>16진수 표기법: <code>#RGB[A]</code></dt>
<dd><code>R</code>(빨강), <code>G</code>(초록), <code>B</code>(파랑), <code>A</code>(알파)는 16진수 문자(0-9, A-F)입니다. <code>A</code>는 선택사항입니다. 세 글자 표기법(<code>#RGB</code>)은 여섯 글자 표기법(<code>#RRGGBB</code>)의 단축 표현입니다. 예를 들어 <code>#f09</code>는 <code>#ff0099</code>와 같습니다. 비슷하게 네 글자 표기법(<code>#RGBA</code>)은 여덟 글자 표기법(<code>#RRGGBBAA</code>)의 단축 표기법이다. 예를 들어 <code>#0f38</code>은 <code>#00ff3388</code>과 같습니다.</dd>
<dt>함수형 표기법: <code>rgb(R, G, B[, A])</code> 또는 <code>rgba(R, G, B, A)</code></dt>
<dd><code>R</code>(빨강), <code>G</code>(초록), <code>B</code>(파랑)은 {{cssxref("<integer>")}}나 {{cssxref("<percentage>")}}이며 숫자 <code>255</code>가 <code>100%</code>와 동일합니다. <code>A</code>(알파)는 0과 1 사이의 {{cssxref("<number>")}}거나 {{cssxref("<percentage>")}}이며 숫자 <code>1</code>이 <code>100%</code>(불투명)와 동일합니다.</dd>
<dt>함수형 표기법: <code>rgb(R G B[ A])</code> 또는 <code>rgba(R G B A)</code></dt>
<dd>CSS Colors Level 4부터 공백으로 구분한 값을 함수형 표기법과 사용할 수 있습니다.</dd>
</dl>
<h4 id="예제">예제</h4>
<h5 id="다양한_RGB_구문">다양한 RGB 구문</h5>
<p>다음 예제는 한 가지 색상을 만들 때 쓸 수 있는 다양한 RGB 색상 구문을 보입니다.</p>
<pre>/* 아래 모든 구문은 불투명한 핫핑크를 표현합니다. */
/* 16진수 구문 */
#f09
#F09
#ff0099
#FF0099
/* 함수형 구문 */
rgb(255,0,153)
rgb(255, 0, 153)
rgb(255, 0, 153.0) /* 오류! 소수점 금지 */
rgb(100%,0%,60%)
rgb(100%, 0%, 60%)
rgb(100%, 0, 60%) /* 오류! 정수와 백분율 혼용 금지 */
rgb(255 0 153)
/* 16진수와 알파 값 */
#f09f
#F09F
#ff0099ff
#FF0099FF
/* 함수형 구문과 알파 값 */
rgb(255, 0, 153, 1)
rgb(255, 0, 153, 100%)
/* 공백 구분 구문 */
rgb(255 0 153 / 1)
rgb(255 0 153 / 100%)
/* 정숫값을 사용한 함수형 구문 */
rgb(255, 0, 153.6, 1)
rgb(1e2, .5e1, .5e0, +.25e2%)
</pre>
<h5 id="다양한_RGB_투명도_구문">다양한 RGB 투명도 구문</h5>
<pre>/* 16진수 구문 */
#3a30 <span style="background: #3a30;"> /* 0% opaque green */ </span>
#3A3F <span style="background: #3A3F;"> /* full opaque green */ </span>
#33aa3300 <span style="background: #33aa3300;"> /* 0% opaque green */ </span>
#33AA3388 <span style="background: #33AA3388;"> /* 50% opaque green */ </span>
/* 함수형 구문 */
rgba(51, 170, 51, .1) <span style="background: rgba(51, 170, 51, .1);"> /* 10% opaque green */ </span>
rgba(51, 170, 51, .4) <span style="background: rgba(51, 170, 51, .4);"> /* 40% opaque green */ </span>
rgba(51, 170, 51, .7) <span style="background: rgba(51, 170, 51, .7);"> /* 70% opaque green */ </span>
rgba(51, 170, 51, 1) <span style="background: rgba(51, 170, 51, 1);"> /* full opaque green */ </span>
/* 공백 구분 구문 */
rgba(51 170 51 / 0.4) <span> /* 40% opaque green */ </span>
rgba(51 170 51 / 40%) <span> /* 40% opaque green */
</span>/* 정숫값을 사용한 함수형 구문 */
rgba(255, 0, 153.6, 1)
rgba(1e2, .5e1, .5e0, +.25e2%)
</pre>
<h3 id="HSL_색상">HSL 색상</h3>
<p>HSL 색상 모델은 색상, 채도, 명도를 통해 특정 색상을 표현합니다. 선택사항으로 색의 투명도를 알파 채널로 표현할 수 있습니다.</p>
<p>많은 디자이너들은 색상, 채도, 명도를 따로 조절할 수 있는 HSL이 RGB보다 더 직관적임을 발견합니다. 또한 HSL을 사용하면 짝이 맞는 색(예컨대 한 가지 색의 여러 밝기) 여러 종류를 더 쉽게 만들 수 있습니다.</p>
<h4 id="구문_3">구문</h4>
<p>HSL 색상은 함수형 <a id="hsl()" name="hsl()"><code>hsl()</code></a>과 <a id="hsla()" name="hsla()"><code>hsla()</code></a> 표기법을 사용합니다.</p>
<div class="note">
<p><strong>참고:</strong> CSS Colors Level 4부터 <code>hsla()</code>는 <code>hsl()</code>의 다른 이름입니다. Level 4 표준을 구현한 브라우저에서는 같은 매개변수를 받고 동일하게 행동합니다.</p>
</div>
<dl>
<dt>함수형 표기법: <code>hsl(H, S, L[, A])</code> 또는 <code>hsla(H, S, L, A)</code></dt>
<dd><code>H</code>(색상)은 색상원에서의 {{cssxref("<angle>")}}로 {{SpecName("CSS4 Colors","#the-hsl-notation")}} 기준 <code>deg</code>, <code>rad</code>, <code>grad</code>, <code>turn</code>을 사용할 수 있습니다. 단위 없이 {{cssxref("<number>")}}로 표현할 경우 {{SpecName("CSS3 Colors", "#hsl-color")}}에 명시된 것과 같이 각도로 해석합니다. 정의에 따르면 빨강=<code>0deg</code>=<code>360deg</code>이며 다른 색은 (초록=<code>120deg</code>, 파랑=<code>240deg</code> 등) 원을 따라 분포하고 있습니다. <code><angle></code>이라면 암묵적으로 원의 주위를 한 바퀴 돕니다. 예컨대 <code>-120deg</code>=<code>240deg</code>, <code>480deg</code>=<code>120deg</code>, <code>-1turn</code>=<code>1turn</code> 입니다.</dd>
<dd><code>S</code>(채도)와 <code>L</code>(명도)는 {{cssxref("<percentage>")}}입니다. <code>100%</code> <strong>채도는</strong> 제일 진한 색이며 <code>0%</code>는 회색입니다. <code>100%</code> <strong>명도</strong>는 흰색, <code>0%</code> 명도는 검은색, <code>50%</code> 명도는 "보통" 색입니다.</dd>
<dd><code>A</code>(알파)는 0과 1 사이의 {{cssxref("<number>")}}거나 {{cssxref("<percentage>")}}이며 숫자 <code>1</code>이 <code>100%</code>(불투명)와 동일합니다.</dd>
<dt>함수형 표기법: <code>hsl(H S L[ A])</code> 또는 <code>hsla(H S L A)</code></dt>
<dd>CSS Colors Level 4부터 공백으로 구분한 값을 함수형 표기법과 사용할 수 있습니다.</dd>
</dl>
<h4 id="예제_2">예제</h4>
<h5 id="다양한_HSL_구문">다양한 HSL 구문</h5>
<pre style="text-shadow: rgba(255,255,255,0.4) -1px -1px;">/* 아래 모든 구문은 라벤더를 표현합니다. */
hsl(270,60%,70%)
hsl(270, 60%, 70%)
hsl(270 60% 70%)
hsl(270deg, 60%, 70%)
hsl(4.71239rad, 60%, 70%)
hsl(.75turn, 60%, 70%)
/* 아래 모든 구문은 85% 투명한 라벤더를 표현합니다. */
hsl(270, 60%, 50%, .15)
hsl(270, 60%, 50%, 15%)
hsl(270 60% 50% / .15)
hsl(270 60% 50% / 15%)
</pre>
<h5 id="제일_진한_색상">제일 진한 색상</h5>
<table class="standard-table">
<thead>
<tr>
<th scope="col">표현</th>
<th scope="col">설명</th>
<th scope="col">미리보기</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>hsl(0, 100%, 50%)</code></td>
<td>red</td>
<td style="background: hsl(0,100%,50%);"></td>
</tr>
<tr>
<td><code>hsl(30, 100%, 50%)</code></td>
<td>orange</td>
<td style="background: hsl(30,100%,50%);"></td>
</tr>
<tr>
<td><code>hsl(60, 100%, 50%)</code></td>
<td>yellow</td>
<td style="background: hsl(60,100%,50%);"></td>
</tr>
<tr>
<td><code>hsl(90, 100%, 50%)</code></td>
<td>lime green</td>
<td style="background: hsl(90,100%,50%);"></td>
</tr>
<tr>
<td><code>hsl(120, 100%, 50%)</code></td>
<td>green</td>
<td style="background: hsl(120,100%,50%);"></td>
</tr>
<tr>
<td><code>hsl(150, 100%, 50%)</code></td>
<td>blue-green</td>
<td style="background: hsl(150,100%,50%);"></td>
</tr>
<tr>
<td><code>hsl(180, 100%, 50%)</code></td>
<td>cyan</td>
<td style="background: hsl(180,100%,50%);"></td>
</tr>
<tr>
<td><code>hsl(210, 100%, 50%)</code></td>
<td>sky blue</td>
<td style="background: hsl(210,100%,50%);"></td>
</tr>
<tr>
<td><code>hsl(240, 100%, 50%)</code></td>
<td>blue</td>
<td style="background: hsl(240,100%,50%);"></td>
</tr>
<tr>
<td><code>hsl(270, 100%, 50%)</code></td>
<td>purple</td>
<td style="background: hsl(270,100%,50%);"></td>
</tr>
<tr>
<td><code>hsl(300, 100%, 50%)</code></td>
<td>magenta</td>
<td style="background: hsl(300,100%,50%);"></td>
</tr>
<tr>
<td><code>hsl(330, 100%, 50%)</code></td>
<td>pink</td>
<td style="background: hsl(330,100%,50%);"></td>
</tr>
<tr>
<td><code>hsl(360, 100%, 50%)</code></td>
<td>red</td>
<td style="background: hsl(360,100%,50%);"></td>
</tr>
</tbody>
</table>
<h5 id="밝고_어두운_초록">밝고 어두운 초록</h5>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Notation</th>
<th scope="col">Description</th>
<th scope="col">Live</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>hsl(120, 100%, 0%)</code></td>
<td>black</td>
<td style="background: hsl(120,100%,0%);"></td>
</tr>
<tr>
<td><code>hsl(120, 100%, 20%)</code></td>
<td></td>
<td style="background: hsl(120,100%,20%);"></td>
</tr>
<tr>
<td><code>hsl(120, 100%, 40%)</code></td>
<td></td>
<td style="background: hsl(120,100%,40%);"></td>
</tr>
<tr>
<td><code>hsl(120, 100%, 60%)</code></td>
<td></td>
<td style="background: hsl(120,100%,60%);"></td>
</tr>
<tr>
<td><code>hsl(120, 100%, 80%)</code></td>
<td></td>
<td style="background: hsl(120,100%,80%);"></td>
</tr>
<tr>
<td><code>hsl(120, 100%, 100%)</code></td>
<td>white</td>
<td style="background: hsl(120,100%,100%);"></td>
</tr>
</tbody>
</table>
<h5 id="진하고_옅은_초록">진하고 옅은 초록</h5>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Notation</th>
<th scope="col">Description</th>
<th scope="col">Live</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>hsl(120, 100%, 50%)</code></td>
<td>green</td>
<td style="background: hsl(120,100%,50%);"></td>
</tr>
<tr>
<td><code>hsl(120, 80%, 50%)</code></td>
<td></td>
<td style="background: hsl(120,80%,50%);"></td>
</tr>
<tr>
<td><code>hsl(120, 60%, 50%)</code></td>
<td></td>
<td style="background: hsl(120,60%,50%);"></td>
</tr>
<tr>
<td><code>hsl(120, 40%, 50%)</code></td>
<td></td>
<td style="background: hsl(120,40%,50%);"></td>
</tr>
<tr>
<td><code>hsl(120, 20%, 50%)</code></td>
<td></td>
<td style="background: hsl(120,20%,50%);"></td>
</tr>
<tr>
<td><code>hsl(120, 0%, 50%)</code></td>
<td>gray</td>
<td style="background: hsl(120,0%,50%);"></td>
</tr>
</tbody>
</table>
<h5 id="다양한_HSL_투명도_구문">다양한 HSL 투명도 구문</h5>
<pre style="text-shadow: rgba(255,255,255,0.4) -1px -1px;">hsla(240, 100%, 50%, .05) <span style="background: hsla(240,100%,50%,0.05);"> /* 5% opaque blue */ </span>
hsla(240, 100%, 50%, .4) <span style="background: hsla(240,100%,50%,0.4);"> /* 40% opaque blue */ </span>
hsla(240, 100%, 50%, .7) <span style="background: hsla(240,100%,50%,0.7);"> /* 70% opaque blue */ </span>
hsla(240, 100%, 50%, 1) <span style="background: hsla(240,100%,50%,1);"> /* full opaque blue */ </span>
/* Whitespace syntax */
hsla(240 100% 50% / .05) <span style="background: hsla(240,100%,50%,0.05);"> /* 5% opaque blue */ </span>
/* Percentage value for alpha */
hsla(240 100% 50% / 5%) <span style="background: hsla(240,100%,50%,0.05);"> /* 5% opaque blue */ </span>
</pre>
<h3 id="시스템_색상">시스템 색상</h3>
<p>모든 시스템에서 모든 시스템 색상을 지원하는건 아닙니다. 공개 웹 페이지에서 사용하는건 좋지 않습니다.</p>
<dl style="font: small Tahoma,'Liberation Sans','Nimbus Sans L',sans-serif; border: 1px solid powderblue; padding: 0.5em 0pt 0.5em 0.5em; -moz-column-rule: 1px solid powderblue; -moz-column-width: 15em; background: #eee; -webkit-columns: 15em; -webkit-column-rule: 1px solid powderblue; columns: 17em; column-rule: 1px solid powderblue;">
<dt>ActiveBorder</dt>
<dd>Active window border.</dd>
<dt>ActiveCaption</dt>
<dd>Active window caption. Should be used with <code>CaptionText</code> as foreground color.</dd>
<dt>AppWorkspace</dt>
<dd>Background color of multiple document interface.</dd>
<dt>Background</dt>
<dd>Desktop background.</dd>
<dt>ButtonFace</dt>
<dd>Face background color for 3-D elements that appear 3-D due to one layer of surrounding border. Should be used with the <code>ButtonText</code> foreground color.</dd>
<dt>ButtonHighlight</dt>
<dd>The color of the border facing the light source for 3-D elements that appear 3-D due to that layer of surrounding border.</dd>
<dt>ButtonShadow</dt>
<dd>The color of the border away from the light source for 3-D elements that appear 3-D due to that layer of surrounding border.</dd>
<dt>ButtonText</dt>
<dd>Text on push buttons. Should be used with the <code>ButtonFace</code> or <code>ThreeDFace</code> background color.</dd>
<dt>CaptionText</dt>
<dd>Text in caption, size box, and scrollbar arrow box. Should be used with the <code>ActiveCaption</code> background color.</dd>
<dt>GrayText</dt>
<dd>Grayed (disabled) text.</dd>
<dt>Highlight</dt>
<dd>Item(s) selected in a control. Should be used with the <code>HighlightText</code> foreground color.</dd>
<dt>HighlightText</dt>
<dd>Text of item(s) selected in a control. Should be used with the <code>Highlight</code> background color.</dd>
<dt>InactiveBorder</dt>
<dd>Inactive window border.</dd>
<dt>InactiveCaption</dt>
<dd>Inactive window caption. Should be used with the <code>InactiveCaptionText</code> foreground color.</dd>
<dt>InactiveCaptionText</dt>
<dd>Color of text in an inactive caption. Should be used with the <code>InactiveCaption</code> background color.</dd>
<dt>InfoBackground</dt>
<dd>Background color for tooltip controls. Should be used with the <code>InfoText</code> foreground color.</dd>
<dt>InfoText</dt>
<dd>Text color for tooltip controls. Should be used with the <code>InfoBackground</code> background color.</dd>
<dt>Menu</dt>
<dd>Menu background. Should be used with the <code>MenuText</code> or <code>-moz-MenuBarText</code> foreground color.</dd>
<dt>MenuText</dt>
<dd>Text in menus. Should be used with the <code>Menu</code> background color.</dd>
<dt>Scrollbar</dt>
<dd>Background color of scroll bars.</dd>
<dt>ThreeDDarkShadow</dt>
<dd>The color of the darker (generally outer) of the two borders away from the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border.</dd>
<dt>ThreeDFace</dt>
<dd>The face background color for 3-D elements that appear 3-D due to two concentric layers of surrounding border. Should be used with the <code>ButtonText</code> foreground color.</dd>
<dt>ThreeDHighlight</dt>
<dd>The color of the lighter (generally outer) of the two borders facing the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border.</dd>
<dt>ThreeDLightShadow</dt>
<dd>The color of the darker (generally inner) of the two borders facing the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border.</dd>
<dt>ThreeDShadow</dt>
<dd>The color of the lighter (generally inner) of the two borders away from the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border.</dd>
<dt>Window</dt>
<dd>Window background. Should be used with the <code>WindowText</code> foreground color.</dd>
<dt>WindowFrame</dt>
<dd>Window frame.</dd>
<dt>WindowText</dt>
<dd>Text in windows. Should be used with the <code>Window</code> background color.</dd>
</dl>
<h3 id="Mozilla_시스템_색상_확장">Mozilla 시스템 색상 확장</h3>
<dl style="font: small Tahoma,'Liberation Sans','Nimbus Sans L',sans-serif; border: 1px solid powderblue; padding: 0.5em 0 0.5em 0.5em; -moz-column-rule: 1px solid powderblue; -moz-column-width: 17em; background: #eee; -webkit-columns: 17em; -webkit-column-rule: 1px solid powderblue; columns: 17em; column-rule: 1px solid powderblue;">
<dt>-moz-ButtonDefault</dt>
<dd>The border color that goes around buttons that represent the default action for a dialog box.</dd>
<dt>-moz-ButtonHoverFace</dt>
<dd>The background color of a button that the mouse pointer is over (which would be <code>ThreeDFace</code> or <code>ButtonFace</code> when the mouse pointer is not over it). Should be used with the <code>-moz-ButtonHoverText</code> foreground color.</dd>
<dt>-moz-ButtonHoverText</dt>
<dd>The text color of a button that the mouse pointer is over (which would be ButtonText when the mouse pointer is not over it). Should be used with the <code>-moz-ButtonHoverFace background</code> color.</dd>
<dt>-moz-CellHighlight</dt>
<dd>Background color for selected item in a tree widget. Should be used with the <code>-moz-CellHighlightText</code> foreground color. See also <code>-moz-html-CellHighlight</code>.</dd>
<dt>-moz-CellHighlightText</dt>
<dd>Text color for a selected item in a tree. Should be used with the <code>-moz-CellHighlight background</code> color. See also <code>-moz-html-CellHighlightText</code>.</dd>
<dt>-moz-Combobox</dt>
<dd>{{Gecko_minversion_inline("1.9.2")}} Background color for combo-boxes. Should be used with the <code>-moz-ComboboxText</code> foreground color. In versions prior to 1.9.2, use <code>-moz-Field</code> instead.</dd>
<dt>-moz-ComboboxText</dt>
<dd>{{Gecko_minversion_inline("1.9.2")}} Text color for combo-boxes. Should be used with the <code>-moz-Combobox</code> background color. In versions prior to 1.9.2, use <code>-moz-FieldText</code> instead.</dd>
<dt>-moz-Dialog</dt>
<dd>Background color for dialog boxes. Should be used with the <code>-moz-DialogText</code> foreground color.</dd>
<dt>-moz-DialogText</dt>
<dd>Text color for dialog boxes. Should be used with the <code>-moz-Dialog</code> background color.</dd>
<dt>-moz-dragtargetzone</dt>
<dt>-moz-EvenTreeRow</dt>
<dd>{{gecko_minversion_inline("1.9")}} Background color for even-numbered rows in a tree. Should be used with the <code>-moz-FieldText</code> foreground color. In Gecko versions prior to 1.9, use <code>-moz-Field</code>. See also <code>-moz-OddTreeRow</code>.</dd>
<dt>-moz-Field</dt>
<dd>Text field background color. Should be used with the <code>-moz-FieldText</code> foreground color.</dd>
<dt>-moz-FieldText</dt>
<dd>Text field text color. Should be used with the <code>-moz-Field</code>, <code>-moz-EvenTreeRow</code>, or <code>-moz-OddTreeRow</code> background color.</dd>
<dt>-moz-html-CellHighlight</dt>
<dd>{{gecko_minversion_inline("1.9")}} Background color for highlighted item in HTML {{HTMLElement("select")}}s. Should be used with the <code>-moz-html-CellHighlightText</code> foreground color. Prior to Gecko 1.9, use <code>-moz-CellHighlight</code>.</dd>
<dt>-moz-html-CellHighlightText</dt>
<dd>{{gecko_minversion_inline("1.9")}} Text color for highlighted items in HTML {{HTMLElement("select")}}s. Should be used with the <code>-moz-html-CellHighlight</code> background color. Prior to Gecko 1.9, use <code>-moz-CellHighlightText</code>.</dd>
<dt>-moz-mac-accentdarkestshadow</dt>
<dt>-moz-mac-accentdarkshadow</dt>
<dt>-moz-mac-accentface</dt>
<dt>-moz-mac-accentlightesthighlight</dt>
<dt>-moz-mac-accentlightshadow</dt>
<dt>-moz-mac-accentregularhighlight</dt>
<dt>-moz-mac-accentregularshadow</dt>
<dt>-moz-mac-chrome-active</dt>
<dd>{{Gecko_minversion_inline("1.9.1")}}</dd>
<dt>-moz-mac-chrome-inactive</dt>
<dd>{{Gecko_minversion_inline("1.9.1")}}</dd>
<dt>-moz-mac-focusring</dt>
<dt>-moz-mac-menuselect</dt>
<dt>-moz-mac-menushadow</dt>
<dt>-moz-mac-menutextselect</dt>
<dt>-moz-MenuHover</dt>
<dd>Background color for hovered menu items. Often similar to <code>Highlight</code>. Should be used with the <code>-moz-MenuHoverText</code> or <code>-moz-MenuBarHoverText</code> foreground color.</dd>
<dt>-moz-MenuHoverText</dt>
<dd>Text color for hovered menu items. Often similar to <code>HighlightText</code>. Should be used with the <code>-moz-MenuHover</code> background color.</dd>
<dt>-moz-MenuBarText</dt>
<dd>{{Gecko_minversion_inline("1.9.2")}} Text color in menu bars. Often similar to <code>MenuText</code>. Should be used on top of <code>Menu</code> background.</dd>
<dt>-moz-MenuBarHoverText</dt>
<dd>Color for hovered text in menu bars. Often similar to <code>-moz-MenuHoverText</code>. Should be used on top of <code>-moz-MenuHover</code> background.</dd>
<dt>-moz-nativehyperlinktext</dt>
<dd>{{Gecko_minversion_inline("1.9.1")}} Default platform hyperlink color.</dd>
<dt>-moz-OddTreeRow</dt>
<dd>{{gecko_minversion_inline("1.9")}} Background color for odd-numbered rows in a tree. Should be used with the <code>-moz-FieldText</code> foreground color. In Gecko versions prior to 1.9, use <code>-moz-Field</code>. See also <code>-moz-EvenTreeRow</code>.</dd>
<dt>-moz-win-communicationstext</dt>
<dd>{{gecko_minversion_inline("1.9")}} Should be used for text in objects with <code>{{cssxref("-moz-appearance")}}: -moz-win-communications-toolbox;</code>.</dd>
<dt>-moz-win-mediatext</dt>
<dd>{{gecko_minversion_inline("1.9")}} Should be used for text in objects with <code>{{cssxref("-moz-appearance")}}: -moz-win-media-toolbox</code>.</dd>
<dt>-moz-win-accentcolor</dt>
<dd>{{gecko_minversion_inline("56")}}<br>
Used to access the Windows 10 custom accent color that you can set on the start menu, taskbar, title bars, etc.</dd>
<dt>-moz-win-accentcolortext</dt>
<dd>{{gecko_minversion_inline("56")}}<br>
Used to access the color of text placed over the Windows 10 custom accent color in the start menu, taskbar, title bars, etc.</dd>
</dl>
<h3 id="Mozilla_색상_설정_확장">Mozilla 색상 설정 확장</h3>
<dl style="font: small Tahoma,'Liberation Sans','Nimbus Sans L',sans-serif; border: 1px solid powderblue; padding: 0.5em 0 0.5em 0.5em; background: #eee;">
<dt>-moz-activehyperlinktext</dt>
<dd>User's preference for text color of active links. Should be used with the default document background color.</dd>
<dt>-moz-default-background-color</dt>
<dd>{{Gecko_minversion_inline("5.0")}} User's preference for the document background color.</dd>
<dt>-moz-default-color</dt>
<dd>{{Gecko_minversion_inline("5.0")}} User's preference for the text color.</dd>
<dt>-moz-hyperlinktext</dt>
<dd>User's preference for the text color of unvisited links. Should be used with the default document background color.</dd>
<dt>-moz-visitedhyperlinktext</dt>
<dd>User's preference for the text color of visited links. Should be used with the default document background color.</dd>
</dl>
<h2 id="보간">보간</h2>
<p>애니메이션과 <a href="/ko/docs/Web/CSS/CSS_Images/Using_CSS_gradients">그레이디언트</a>는 <code><color></code> 값의 빨강, 초록, 파랑 각 구성 성분을 부동소수점 실수를 사용해 보간합니다. 보간 중 예상하지 못한 무채색이 등장하는걸 방지하기 위해 계산은 <a href="https://www.gimp.org/docs/plug-in/appendix-alpha.html">알파 채널을 미리 곱한 sRGBA 색 공간</a>에서 수행합니다. 애니메이션에서 보간의 속도는 <a href="/ko/docs/Web/CSS/single-transition-timing-function">타이밍 함수</a>가 결정합니다.</p>
<h2 id="접근성_고려사항">접근성 고려사항</h2>
<p>색을 구별하기 어려운 사람도 있으므로, <a class="external" href="https://www.w3.org/TR/WCAG/#visual-audio-contrast">WCAG 2.0</a> 권고안은 특정 메시지, 행동, 또는 결과를 나타내는 방법으로 오직 색만 사용하는걸 강력히 반대하고 있습니다. <a href="/ko/docs/Learn/Accessibility/CSS_and_JavaScript#Color_and_color_contrast">색과 색상 대비</a>를 참고하세요.</p>
<h2 id="명세">명세</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS4 Colors', '#changes-from-3')}}</td>
<td>{{Spec2('CSS4 Colors')}}</td>
<td>Adds <code>rebeccapurple</code>, four- (<code>#RGBA</code>) and eight-digit (<code>#RRGGBBAA</code>) hexadecimal notations, <code>rgba()</code> and <code>hsla()</code> as aliases of <code>rgb()</code> and <code>hsl()</code> (both with identical parameter syntax), space-separated function parameters as an alternative to commas, percentages for alpha values, and angles for the hue component in <code>hsl()</code> colors.</td>
</tr>
<tr>
<td>{{SpecName('CSS3 Colors', '#colorunits', '<color>')}}</td>
<td>{{Spec2('CSS3 Colors')}}</td>
<td>Deprecates system colors. Adds SVG colors and <code>rgba()</code>, <code>hsl()</code>, and <code>hsla()</code> functional notations.</td>
</tr>
<tr style="vertical-align: top;">
<td style="vertical-align: top;">{{SpecName('CSS2.1', 'syndata.html#value-def-color', '<color>')}}</td>
<td style="vertical-align: top;">{{Spec2('CSS2.1')}}</td>
<td style="vertical-align: top;">Adds the <code>orange</code> keyword and system colors.</td>
</tr>
<tr>
<td style="vertical-align: top;">{{SpecName('CSS1', '#color-units', '<color>')}}</td>
<td style="vertical-align: top;">{{Spec2('CSS1')}}</td>
<td style="vertical-align: top;">Initial definition. Includes 16 basic color keywords.</td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("css.properties.color")}}</p>
<h2 id="같이_보기">같이 보기</h2>
<ul>
<li>{{Cssxref("opacity")}} 속성으로 요소 자체의 투명도를 바꿀 수 있습니다.</li>
<li><code><color></code>를 지정할 수 있는 흔히 쓰이는 속성: {{Cssxref("color")}}, {{Cssxref("background-color")}}, {{Cssxref("border-color")}}, {{Cssxref("box-shadow")}}, {{Cssxref("outline-color")}}, {{Cssxref("text-shadow")}}</li>
<li><a href="/ko/docs/Web/HTML/Applying_color">CSS로 HTML 요소에 색 입히기</a></li>
</ul>
|