HEX: #CD5C5C
RGB: (205,92,92)
Color name is IndianRed. #CD5C5C contains mainly red color. Web safe color of #CD5C5C is #CC6666 (or #C66).
#CD5C5C color RGB value is (205,92,92).
RGB: (205,92,92) (80%,36%,36%)
R 205 of 255 = 80%
G 92 of 255 = 36%
B 92 of 255 = 36%
R + G + B ~ 51%. #CD5C5C is middle color (not dark and not light).
R + G + B =
205 + 92 + 92 = 389 (100%)
R 205 of 389 ~ 52.7%
G 92 of 389 ~ 23.65%
B 92 of 389 ~ 23.65%
#CD5C5C color CMYK value is (0,55,55,20).
CMYK: (0,55,55,20) C0M55Y55K20 (0%,55%,55%,20%) (0.00/0.55/0.55/0.20)
CD | 5C | 5C | |
---|---|---|---|
RGB | 205 | 92 | 92 |
HSL | 0° | 53.05% | 58.24% |
HSB/HSV | 0° | 55.12% | 80.39% |
CMYK | 0.00% | 55.12% | 55.12% |
19.61% |
HEX | CD | 5C | 5C |
Decimal | 205 | 92 | 92 |
Binary | 11001101 | 1011100 | 1011100 |
Octal | 315 | 134 | 134 |
Examples of css and html codes for elements with #CD5C5C color. Also use rgb(205,92,92) instead hex code.
.myTextColor { color: #CD5C5C; }
<p style="color:#CD5C5C">This sample text font color is #CD5C5C.</p>
This text font color is #CD5C5C.
.myBgColor { background-color: #CD5C5C; }
<div style="background-color:#CD5C5C">Inner text</div>
This div background color is #CD5C5C.
.myBorderColor { border: 1px solid #CD5C5C; }
<div style="border:3px solid #CD5C5C">Div</div>
This div border color is #CD5C5C.
.myOpacity80 { color: #CD5C5C; opacity: 0.8; }
<p style="color:#CD5C5C;opacity:0.8;">80%</p>
Text with #CD5C5C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CD5C5C;}
<p style="text-shadow: 3px 3px 1px #CD5C5C">Text here.</p>
This text has shadow with #CD5C5C color.
.textShadow {text-shadow: 3px 3px 1px #CD5C5C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CD5C5C, 5px 5px 20px red">Text here.</p>
This text has shadow with #CD5C5C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CD5C5C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CD5C5C, Direction=45, Strength=4)">Text</p>
This text has shadow with #CD5C5C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CD5C5C; -webkit-box-shadow: 1px 1px 3px 2px #CD5C5C; box-shadow: 1px 1px 3px 2px #CD5C5C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CD5C5C; -webkit-box-shadow: 1px 1px 3px 2px #CD5C5C; box-shadow:1px 1px 3px 2px #CD5C5C;">
Div content here</div>
This text has color #CD5C5C on black background.
This text has color #CD5C5C on white background.
This text has black color on #CD5C5C background.
This text has white color on #CD5C5C background.