HEX: #EDB6DB
RGB: (237,182,219)
#EDB6DB contains red, green and blue colors in about the same proportion. Web safe color of #EDB6DB is #FFCCCC (or #FCC).
#EDB6DB color RGB value is (237,182,219).
RGB: (237,182,219) (93%,71%,86%)
R 237 of 255 = 93%
G 182 of 255 = 71%
B 219 of 255 = 86%
R + G + B ~ 83%. #EDB6DB is quite light color.
R + G + B =
237 + 182 + 219 = 638 (100%)
R 237 of 638 ~ 37.15%
G 182 of 638 ~ 28.53%
B 219 of 638 ~ 34.33%
#EDB6DB color CMYK value is (0,23,8,7).
CMYK: (0,23,8,7) C0M23Y8K7 (0%,23%,8%,7%) (0.00/0.23/0.08/0.07)
ED | B6 | DB | |
---|---|---|---|
RGB | 237 | 182 | 219 |
HSL | 320° | 60.44% | 82.16% |
HSB/HSV | 320° | 23.21% | 92.94% |
CMYK | 0.00% | 23.21% | 7.59% |
7.06% |
HEX | ED | B6 | DB |
Decimal | 237 | 182 | 219 |
Binary | 11101101 | 10110110 | 11011011 |
Octal | 355 | 266 | 333 |
Examples of css and html codes for elements with #EDB6DB color. Also use rgb(237,182,219) instead hex code.
.myTextColor { color: #EDB6DB; }
<p style="color:#EDB6DB">This sample text font color is #EDB6DB.</p>
This text font color is #EDB6DB.
.myBgColor { background-color: #EDB6DB; }
<div style="background-color:#EDB6DB">Inner text</div>
This div background color is #EDB6DB.
.myBorderColor { border: 1px solid #EDB6DB; }
<div style="border:3px solid #EDB6DB">Div</div>
This div border color is #EDB6DB.
.myOpacity80 { color: #EDB6DB; opacity: 0.8; }
<p style="color:#EDB6DB;opacity:0.8;">80%</p>
Text with #EDB6DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDB6DB;}
<p style="text-shadow: 3px 3px 1px #EDB6DB">Text here.</p>
This text has shadow with #EDB6DB color.
.textShadow {text-shadow: 3px 3px 1px #EDB6DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDB6DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDB6DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDB6DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDB6DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDB6DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDB6DB; -webkit-box-shadow: 1px 1px 3px 2px #EDB6DB; box-shadow: 1px 1px 3px 2px #EDB6DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDB6DB; -webkit-box-shadow: 1px 1px 3px 2px #EDB6DB; box-shadow:1px 1px 3px 2px #EDB6DB;">
Div content here</div>
This text has color #EDB6DB on black background.
This text has color #EDB6DB on white background.
This text has black color on #EDB6DB background.
This text has white color on #EDB6DB background.