HEX: #EDADCC
RGB: (237,173,204)
#EDADCC contains mainly red and blue colors. Web safe color of #EDADCC is #FF99CC (or #F9C).
#EDADCC color RGB value is (237,173,204).
RGB: (237,173,204) (93%,68%,80%)
R 237 of 255 = 93%
G 173 of 255 = 68%
B 204 of 255 = 80%
R + G + B ~ 80%. #EDADCC is quite light color.
R + G + B =
237 + 173 + 204 = 614 (100%)
R 237 of 614 ~ 38.6%
G 173 of 614 ~ 28.18%
B 204 of 614 ~ 33.22%
#EDADCC color CMYK value is (0,27,14,7).
CMYK: (0,27,14,7) C0M27Y14K7 (0%,27%,14%,7%) (0.00/0.27/0.14/0.07)
ED | AD | CC | |
---|---|---|---|
RGB | 237 | 173 | 204 |
HSL | 331° | 64.00% | 80.39% |
HSB/HSV | 331° | 27.00% | 92.94% |
CMYK | 0.00% | 27.00% | 13.92% |
7.06% |
HEX | ED | AD | CC |
Decimal | 237 | 173 | 204 |
Binary | 11101101 | 10101101 | 11001100 |
Octal | 355 | 255 | 314 |
Examples of css and html codes for elements with #EDADCC color. Also use rgb(237,173,204) instead hex code.
.myTextColor { color: #EDADCC; }
<p style="color:#EDADCC">This sample text font color is #EDADCC.</p>
This text font color is #EDADCC.
.myBgColor { background-color: #EDADCC; }
<div style="background-color:#EDADCC">Inner text</div>
This div background color is #EDADCC.
.myBorderColor { border: 1px solid #EDADCC; }
<div style="border:3px solid #EDADCC">Div</div>
This div border color is #EDADCC.
.myOpacity80 { color: #EDADCC; opacity: 0.8; }
<p style="color:#EDADCC;opacity:0.8;">80%</p>
Text with #EDADCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDADCC;}
<p style="text-shadow: 3px 3px 1px #EDADCC">Text here.</p>
This text has shadow with #EDADCC color.
.textShadow {text-shadow: 3px 3px 1px #EDADCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDADCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDADCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDADCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDADCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDADCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDADCC; -webkit-box-shadow: 1px 1px 3px 2px #EDADCC; box-shadow: 1px 1px 3px 2px #EDADCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDADCC; -webkit-box-shadow: 1px 1px 3px 2px #EDADCC; box-shadow:1px 1px 3px 2px #EDADCC;">
Div content here</div>
This text has color #EDADCC on black background.
This text has color #EDADCC on white background.
This text has black color on #EDADCC background.
This text has white color on #EDADCC background.