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