HEX: #CC857D
RGB: (204,133,125)
#CC857D contains mainly red color. Web safe color of #CC857D is #CC9966 (or #C96).
#CC857D color RGB value is (204,133,125).
RGB: (204,133,125) (80%,52%,49%)
R 204 of 255 = 80%
G 133 of 255 = 52%
B 125 of 255 = 49%
R + G + B ~ 60%. #CC857D is middle color (not dark and not light).
R + G + B =
204 + 133 + 125 = 462 (100%)
R 204 of 462 ~ 44.16%
G 133 of 462 ~ 28.79%
B 125 of 462 ~ 27.06%
#CC857D color CMYK value is (0,35,39,20).
CMYK: (0,35,39,20) C0M35Y39K20 (0%,35%,39%,20%) (0.00/0.35/0.39/0.20)
CC | 85 | 7D | |
---|---|---|---|
RGB | 204 | 133 | 125 |
HSL | 6° | 43.65% | 64.51% |
HSB/HSV | 6° | 38.73% | 80.00% |
CMYK | 0.00% | 34.80% | 38.73% |
20.00% |
HEX | CC | 85 | 7D |
Decimal | 204 | 133 | 125 |
Binary | 11001100 | 10000101 | 1111101 |
Octal | 314 | 205 | 175 |
Examples of css and html codes for elements with #CC857D color. Also use rgb(204,133,125) instead hex code.
.myTextColor { color: #CC857D; }
<p style="color:#CC857D">This sample text font color is #CC857D.</p>
This text font color is #CC857D.
.myBgColor { background-color: #CC857D; }
<div style="background-color:#CC857D">Inner text</div>
This div background color is #CC857D.
.myBorderColor { border: 1px solid #CC857D; }
<div style="border:3px solid #CC857D">Div</div>
This div border color is #CC857D.
.myOpacity80 { color: #CC857D; opacity: 0.8; }
<p style="color:#CC857D;opacity:0.8;">80%</p>
Text with #CC857D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CC857D;}
<p style="text-shadow: 3px 3px 1px #CC857D">Text here.</p>
This text has shadow with #CC857D color.
.textShadow {text-shadow: 3px 3px 1px #CC857D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CC857D, 5px 5px 20px red">Text here.</p>
This text has shadow with #CC857D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CC857D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CC857D, Direction=45, Strength=4)">Text</p>
This text has shadow with #CC857D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CC857D; -webkit-box-shadow: 1px 1px 3px 2px #CC857D; box-shadow: 1px 1px 3px 2px #CC857D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CC857D; -webkit-box-shadow: 1px 1px 3px 2px #CC857D; box-shadow:1px 1px 3px 2px #CC857D;">
Div content here</div>
This text has color #CC857D on black background.
This text has color #CC857D on white background.
This text has black color on #CC857D background.
This text has white color on #CC857D background.