HEX: #EDDAE6
RGB: (237,218,230)
#EDDAE6 contains red, green and blue colors in about the same proportion. Web safe color of #EDDAE6 is #FFCCCC (or #FCC).
#EDDAE6 color RGB value is (237,218,230).
RGB: (237,218,230) (93%,85%,90%)
R 237 of 255 = 93%
G 218 of 255 = 85%
B 230 of 255 = 90%
R + G + B ~ 89%. #EDDAE6 is light color.
R + G + B =
237 + 218 + 230 = 685 (100%)
R 237 of 685 ~ 34.6%
G 218 of 685 ~ 31.82%
B 230 of 685 ~ 33.58%
#EDDAE6 color CMYK value is (0,8,3,7).
CMYK: (0,8,3,7) C0M8Y3K7 (0%,8%,3%,7%) (0.00/0.08/0.03/0.07)
ED | DA | E6 | |
---|---|---|---|
RGB | 237 | 218 | 230 |
HSL | 322° | 34.55% | 89.22% |
HSB/HSV | 322° | 8.02% | 92.94% |
CMYK | 0.00% | 8.02% | 2.95% |
7.06% |
HEX | ED | DA | E6 |
Decimal | 237 | 218 | 230 |
Binary | 11101101 | 11011010 | 11100110 |
Octal | 355 | 332 | 346 |
Examples of css and html codes for elements with #EDDAE6 color. Also use rgb(237,218,230) instead hex code.
.myTextColor { color: #EDDAE6; }
<p style="color:#EDDAE6">This sample text font color is #EDDAE6.</p>
This text font color is #EDDAE6.
.myBgColor { background-color: #EDDAE6; }
<div style="background-color:#EDDAE6">Inner text</div>
This div background color is #EDDAE6.
.myBorderColor { border: 1px solid #EDDAE6; }
<div style="border:3px solid #EDDAE6">Div</div>
This div border color is #EDDAE6.
.myOpacity80 { color: #EDDAE6; opacity: 0.8; }
<p style="color:#EDDAE6;opacity:0.8;">80%</p>
Text with #EDDAE6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDDAE6;}
<p style="text-shadow: 3px 3px 1px #EDDAE6">Text here.</p>
This text has shadow with #EDDAE6 color.
.textShadow {text-shadow: 3px 3px 1px #EDDAE6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDDAE6, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDDAE6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDDAE6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDDAE6, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDDAE6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDDAE6; -webkit-box-shadow: 1px 1px 3px 2px #EDDAE6; box-shadow: 1px 1px 3px 2px #EDDAE6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDDAE6; -webkit-box-shadow: 1px 1px 3px 2px #EDDAE6; box-shadow:1px 1px 3px 2px #EDDAE6;">
Div content here</div>
This text has color #EDDAE6 on black background.
This text has color #EDDAE6 on white background.
This text has black color on #EDDAE6 background.
This text has white color on #EDDAE6 background.