HEX: #EDAFEB
RGB: (237,175,235)
#EDAFEB contains mainly red and blue colors. Web safe color of #EDAFEB is #FF99FF (or #F9F).
#EDAFEB color RGB value is (237,175,235).
RGB: (237,175,235) (93%,69%,92%)
R 237 of 255 = 93%
G 175 of 255 = 69%
B 235 of 255 = 92%
R + G + B ~ 85%. #EDAFEB is quite light color.
R + G + B =
237 + 175 + 235 = 647 (100%)
R 237 of 647 ~ 36.63%
G 175 of 647 ~ 27.05%
B 235 of 647 ~ 36.32%
#EDAFEB color CMYK value is (0,26,1,7).
CMYK: (0,26,1,7) C0M26Y1K7 (0%,26%,1%,7%) (0.00/0.26/0.01/0.07)
ED | AF | EB | |
---|---|---|---|
RGB | 237 | 175 | 235 |
HSL | 302° | 63.27% | 80.78% |
HSB/HSV | 302° | 26.16% | 92.94% |
CMYK | 0.00% | 26.16% | 0.84% |
7.06% |
HEX | ED | AF | EB |
Decimal | 237 | 175 | 235 |
Binary | 11101101 | 10101111 | 11101011 |
Octal | 355 | 257 | 353 |
Examples of css and html codes for elements with #EDAFEB color. Also use rgb(237,175,235) instead hex code.
.myTextColor { color: #EDAFEB; }
<p style="color:#EDAFEB">This sample text font color is #EDAFEB.</p>
This text font color is #EDAFEB.
.myBgColor { background-color: #EDAFEB; }
<div style="background-color:#EDAFEB">Inner text</div>
This div background color is #EDAFEB.
.myBorderColor { border: 1px solid #EDAFEB; }
<div style="border:3px solid #EDAFEB">Div</div>
This div border color is #EDAFEB.
.myOpacity80 { color: #EDAFEB; opacity: 0.8; }
<p style="color:#EDAFEB;opacity:0.8;">80%</p>
Text with #EDAFEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDAFEB;}
<p style="text-shadow: 3px 3px 1px #EDAFEB">Text here.</p>
This text has shadow with #EDAFEB color.
.textShadow {text-shadow: 3px 3px 1px #EDAFEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDAFEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDAFEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDAFEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDAFEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDAFEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDAFEB; -webkit-box-shadow: 1px 1px 3px 2px #EDAFEB; box-shadow: 1px 1px 3px 2px #EDAFEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDAFEB; -webkit-box-shadow: 1px 1px 3px 2px #EDAFEB; box-shadow:1px 1px 3px 2px #EDAFEB;">
Div content here</div>
This text has color #EDAFEB on black background.
This text has color #EDAFEB on white background.
This text has black color on #EDAFEB background.
This text has white color on #EDAFEB background.