HEX: #EDB6EE
RGB: (237,182,238)
#EDB6EE contains red, green and blue colors in about the same proportion. Web safe color of #EDB6EE is #FFCCFF (or #FCF).
#EDB6EE color RGB value is (237,182,238).
RGB: (237,182,238) (93%,71%,93%)
R 237 of 255 = 93%
G 182 of 255 = 71%
B 238 of 255 = 93%
R + G + B ~ 86%. #EDB6EE is light color.
R + G + B =
237 + 182 + 238 = 657 (100%)
R 237 of 657 ~ 36.07%
G 182 of 657 ~ 27.7%
B 238 of 657 ~ 36.23%
#EDB6EE color CMYK value is (0,24,0,7).
CMYK: (0,24,0,7) C0M24Y0K7 (0%,24%,0%,7%) (0.00/0.24/0.00/0.07)
ED | B6 | EE | |
---|---|---|---|
RGB | 237 | 182 | 238 |
HSL | 299° | 62.22% | 82.35% |
HSB/HSV | 299° | 23.53% | 93.33% |
CMYK | 0.42% | 23.53% | 0.00% |
6.67% |
HEX | ED | B6 | EE |
Decimal | 237 | 182 | 238 |
Binary | 11101101 | 10110110 | 11101110 |
Octal | 355 | 266 | 356 |
Examples of css and html codes for elements with #EDB6EE color. Also use rgb(237,182,238) instead hex code.
.myTextColor { color: #EDB6EE; }
<p style="color:#EDB6EE">This sample text font color is #EDB6EE.</p>
This text font color is #EDB6EE.
.myBgColor { background-color: #EDB6EE; }
<div style="background-color:#EDB6EE">Inner text</div>
This div background color is #EDB6EE.
.myBorderColor { border: 1px solid #EDB6EE; }
<div style="border:3px solid #EDB6EE">Div</div>
This div border color is #EDB6EE.
.myOpacity80 { color: #EDB6EE; opacity: 0.8; }
<p style="color:#EDB6EE;opacity:0.8;">80%</p>
Text with #EDB6EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDB6EE;}
<p style="text-shadow: 3px 3px 1px #EDB6EE">Text here.</p>
This text has shadow with #EDB6EE color.
.textShadow {text-shadow: 3px 3px 1px #EDB6EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDB6EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDB6EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDB6EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDB6EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDB6EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDB6EE; -webkit-box-shadow: 1px 1px 3px 2px #EDB6EE; box-shadow: 1px 1px 3px 2px #EDB6EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDB6EE; -webkit-box-shadow: 1px 1px 3px 2px #EDB6EE; box-shadow:1px 1px 3px 2px #EDB6EE;">
Div content here</div>
This text has color #EDB6EE on black background.
This text has color #EDB6EE on white background.
This text has black color on #EDB6EE background.
This text has white color on #EDB6EE background.