HEX: #CC7370
RGB: (204,115,112)
#CC7370 contains mainly red color. Web safe color of #CC7370 is #CC6666 (or #C66).
#CC7370 color RGB value is (204,115,112).
RGB: (204,115,112) (80%,45%,44%)
R 204 of 255 = 80%
G 115 of 255 = 45%
B 112 of 255 = 44%
R + G + B ~ 56%. #CC7370 is middle color (not dark and not light).
R + G + B =
204 + 115 + 112 = 431 (100%)
R 204 of 431 ~ 47.33%
G 115 of 431 ~ 26.68%
B 112 of 431 ~ 25.99%
#CC7370 color CMYK value is (0,44,45,20).
CMYK: (0,44,45,20) C0M44Y45K20 (0%,44%,45%,20%) (0.00/0.44/0.45/0.20)
CC | 73 | 70 | |
---|---|---|---|
RGB | 204 | 115 | 112 |
HSL | 2° | 47.42% | 61.96% |
HSB/HSV | 2° | 45.10% | 80.00% |
CMYK | 0.00% | 43.63% | 45.10% |
20.00% |
HEX | CC | 73 | 70 |
Decimal | 204 | 115 | 112 |
Binary | 11001100 | 1110011 | 1110000 |
Octal | 314 | 163 | 160 |
Examples of css and html codes for elements with #CC7370 color. Also use rgb(204,115,112) instead hex code.
.myTextColor { color: #CC7370; }
<p style="color:#CC7370">This sample text font color is #CC7370.</p>
This text font color is #CC7370.
.myBgColor { background-color: #CC7370; }
<div style="background-color:#CC7370">Inner text</div>
This div background color is #CC7370.
.myBorderColor { border: 1px solid #CC7370; }
<div style="border:3px solid #CC7370">Div</div>
This div border color is #CC7370.
.myOpacity80 { color: #CC7370; opacity: 0.8; }
<p style="color:#CC7370;opacity:0.8;">80%</p>
Text with #CC7370 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CC7370;}
<p style="text-shadow: 3px 3px 1px #CC7370">Text here.</p>
This text has shadow with #CC7370 color.
.textShadow {text-shadow: 3px 3px 1px #CC7370, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CC7370, 5px 5px 20px red">Text here.</p>
This text has shadow with #CC7370 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CC7370, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CC7370, Direction=45, Strength=4)">Text</p>
This text has shadow with #CC7370 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CC7370; -webkit-box-shadow: 1px 1px 3px 2px #CC7370; box-shadow: 1px 1px 3px 2px #CC7370; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CC7370; -webkit-box-shadow: 1px 1px 3px 2px #CC7370; box-shadow:1px 1px 3px 2px #CC7370;">
Div content here</div>
This text has color #CC7370 on black background.
This text has color #CC7370 on white background.
This text has black color on #CC7370 background.
This text has white color on #CC7370 background.