HEX: #EAC6CC
RGB: (234,198,204)
#EAC6CC contains red, green and blue colors in about the same proportion. Web safe color of #EAC6CC is #FFCCCC (or #FCC).
#EAC6CC color RGB value is (234,198,204).
RGB: (234,198,204) (92%,78%,80%)
R 234 of 255 = 92%
G 198 of 255 = 78%
B 204 of 255 = 80%
R + G + B ~ 83%. #EAC6CC is quite light color.
R + G + B =
234 + 198 + 204 = 636 (100%)
R 234 of 636 ~ 36.79%
G 198 of 636 ~ 31.13%
B 204 of 636 ~ 32.08%
#EAC6CC color CMYK value is (0,15,13,8).
CMYK: (0,15,13,8) C0M15Y13K8 (0%,15%,13%,8%) (0.00/0.15/0.13/0.08)
EA | C6 | CC | |
---|---|---|---|
RGB | 234 | 198 | 204 |
HSL | 350° | 46.15% | 84.71% |
HSB/HSV | 350° | 15.38% | 91.76% |
CMYK | 0.00% | 15.38% | 12.82% |
8.24% |
HEX | EA | C6 | CC |
Decimal | 234 | 198 | 204 |
Binary | 11101010 | 11000110 | 11001100 |
Octal | 352 | 306 | 314 |
Examples of css and html codes for elements with #EAC6CC color. Also use rgb(234,198,204) instead hex code.
.myTextColor { color: #EAC6CC; }
<p style="color:#EAC6CC">This sample text font color is #EAC6CC.</p>
This text font color is #EAC6CC.
.myBgColor { background-color: #EAC6CC; }
<div style="background-color:#EAC6CC">Inner text</div>
This div background color is #EAC6CC.
.myBorderColor { border: 1px solid #EAC6CC; }
<div style="border:3px solid #EAC6CC">Div</div>
This div border color is #EAC6CC.
.myOpacity80 { color: #EAC6CC; opacity: 0.8; }
<p style="color:#EAC6CC;opacity:0.8;">80%</p>
Text with #EAC6CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EAC6CC;}
<p style="text-shadow: 3px 3px 1px #EAC6CC">Text here.</p>
This text has shadow with #EAC6CC color.
.textShadow {text-shadow: 3px 3px 1px #EAC6CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EAC6CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EAC6CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EAC6CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EAC6CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EAC6CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EAC6CC; -webkit-box-shadow: 1px 1px 3px 2px #EAC6CC; box-shadow: 1px 1px 3px 2px #EAC6CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EAC6CC; -webkit-box-shadow: 1px 1px 3px 2px #EAC6CC; box-shadow:1px 1px 3px 2px #EAC6CC;">
Div content here</div>
This text has color #EAC6CC on black background.
This text has color #EAC6CC on white background.
This text has black color on #EAC6CC background.
This text has white color on #EAC6CC background.