HEX: #CC7D72
RGB: (204,125,114)
#CC7D72 contains mainly red color. Web safe color of #CC7D72 is #CC6666 (or #C66).
#CC7D72 color RGB value is (204,125,114).
RGB: (204,125,114) (80%,49%,45%)
R 204 of 255 = 80%
G 125 of 255 = 49%
B 114 of 255 = 45%
R + G + B ~ 58%. #CC7D72 is middle color (not dark and not light).
R + G + B =
204 + 125 + 114 = 443 (100%)
R 204 of 443 ~ 46.05%
G 125 of 443 ~ 28.22%
B 114 of 443 ~ 25.73%
#CC7D72 color CMYK value is (0,39,44,20).
CMYK: (0,39,44,20) C0M39Y44K20 (0%,39%,44%,20%) (0.00/0.39/0.44/0.20)
CC | 7D | 72 | |
---|---|---|---|
RGB | 204 | 125 | 114 |
HSL | 7° | 46.88% | 62.35% |
HSB/HSV | 7° | 44.12% | 80.00% |
CMYK | 0.00% | 38.73% | 44.12% |
20.00% |
HEX | CC | 7D | 72 |
Decimal | 204 | 125 | 114 |
Binary | 11001100 | 1111101 | 1110010 |
Octal | 314 | 175 | 162 |
Examples of css and html codes for elements with #CC7D72 color. Also use rgb(204,125,114) instead hex code.
.myTextColor { color: #CC7D72; }
<p style="color:#CC7D72">This sample text font color is #CC7D72.</p>
This text font color is #CC7D72.
.myBgColor { background-color: #CC7D72; }
<div style="background-color:#CC7D72">Inner text</div>
This div background color is #CC7D72.
.myBorderColor { border: 1px solid #CC7D72; }
<div style="border:3px solid #CC7D72">Div</div>
This div border color is #CC7D72.
.myOpacity80 { color: #CC7D72; opacity: 0.8; }
<p style="color:#CC7D72;opacity:0.8;">80%</p>
Text with #CC7D72 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CC7D72;}
<p style="text-shadow: 3px 3px 1px #CC7D72">Text here.</p>
This text has shadow with #CC7D72 color.
.textShadow {text-shadow: 3px 3px 1px #CC7D72, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CC7D72, 5px 5px 20px red">Text here.</p>
This text has shadow with #CC7D72 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CC7D72, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CC7D72, Direction=45, Strength=4)">Text</p>
This text has shadow with #CC7D72 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CC7D72; -webkit-box-shadow: 1px 1px 3px 2px #CC7D72; box-shadow: 1px 1px 3px 2px #CC7D72; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CC7D72; -webkit-box-shadow: 1px 1px 3px 2px #CC7D72; box-shadow:1px 1px 3px 2px #CC7D72;">
Div content here</div>
This text has color #CC7D72 on black background.
This text has color #CC7D72 on white background.
This text has black color on #CC7D72 background.
This text has white color on #CC7D72 background.