HEX: #EDB5BD
RGB: (237,181,189)
#EDB5BD contains red, green and blue colors in about the same proportion. Web safe color of #EDB5BD is #FFCCCC (or #FCC).
#EDB5BD color RGB value is (237,181,189).
RGB: (237,181,189) (93%,71%,74%)
R 237 of 255 = 93%
G 181 of 255 = 71%
B 189 of 255 = 74%
R + G + B ~ 79%. #EDB5BD is quite light color.
R + G + B =
237 + 181 + 189 = 607 (100%)
R 237 of 607 ~ 39.04%
G 181 of 607 ~ 29.82%
B 189 of 607 ~ 31.14%
#EDB5BD color CMYK value is (0,24,20,7).
CMYK: (0,24,20,7) C0M24Y20K7 (0%,24%,20%,7%) (0.00/0.24/0.20/0.07)
ED | B5 | BD | |
---|---|---|---|
RGB | 237 | 181 | 189 |
HSL | 351° | 60.87% | 81.96% |
HSB/HSV | 351° | 23.63% | 92.94% |
CMYK | 0.00% | 23.63% | 20.25% |
7.06% |
HEX | ED | B5 | BD |
Decimal | 237 | 181 | 189 |
Binary | 11101101 | 10110101 | 10111101 |
Octal | 355 | 265 | 275 |
Examples of css and html codes for elements with #EDB5BD color. Also use rgb(237,181,189) instead hex code.
.myTextColor { color: #EDB5BD; }
<p style="color:#EDB5BD">This sample text font color is #EDB5BD.</p>
This text font color is #EDB5BD.
.myBgColor { background-color: #EDB5BD; }
<div style="background-color:#EDB5BD">Inner text</div>
This div background color is #EDB5BD.
.myBorderColor { border: 1px solid #EDB5BD; }
<div style="border:3px solid #EDB5BD">Div</div>
This div border color is #EDB5BD.
.myOpacity80 { color: #EDB5BD; opacity: 0.8; }
<p style="color:#EDB5BD;opacity:0.8;">80%</p>
Text with #EDB5BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDB5BD;}
<p style="text-shadow: 3px 3px 1px #EDB5BD">Text here.</p>
This text has shadow with #EDB5BD color.
.textShadow {text-shadow: 3px 3px 1px #EDB5BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDB5BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDB5BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDB5BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDB5BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDB5BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDB5BD; -webkit-box-shadow: 1px 1px 3px 2px #EDB5BD; box-shadow: 1px 1px 3px 2px #EDB5BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDB5BD; -webkit-box-shadow: 1px 1px 3px 2px #EDB5BD; box-shadow:1px 1px 3px 2px #EDB5BD;">
Div content here</div>
This text has color #EDB5BD on black background.
This text has color #EDB5BD on white background.
This text has black color on #EDB5BD background.
This text has white color on #EDB5BD background.