HEX: #FFDEE6
RGB: (255,222,230)
#FFDEE6 contains red, green and blue colors in about the same proportion. Web safe color of #FFDEE6 is #FFCCCC (or #FCC).
#FFDEE6 color RGB value is (255,222,230).
RGB: (255,222,230) (100%,87%,90%)
R 255 of 255 = 100%
G 222 of 255 = 87%
B 230 of 255 = 90%
R + G + B ~ 92%. #FFDEE6 is light color.
R + G + B =
255 + 222 + 230 = 707 (100%)
R 255 of 707 ~ 36.07%
G 222 of 707 ~ 31.4%
B 230 of 707 ~ 32.53%
#FFDEE6 color CMYK value is (0,13,10,0).
CMYK: (0,13,10,0) C0M13Y10K0 (0%,13%,10%,0%) (0.00/0.13/0.10/0.00)
FF | DE | E6 | |
---|---|---|---|
RGB | 255 | 222 | 230 |
HSL | 345° | 100.00% | 93.53% |
HSB/HSV | 345° | 12.94% | 100.00% |
CMYK | 0.00% | 12.94% | 9.80% |
0.00% |
HEX | FF | DE | E6 |
Decimal | 255 | 222 | 230 |
Binary | 11111111 | 11011110 | 11100110 |
Octal | 377 | 336 | 346 |
Examples of css and html codes for elements with #FFDEE6 color. Also use rgb(255,222,230) instead hex code.
.myTextColor { color: #FFDEE6; }
<p style="color:#FFDEE6">This sample text font color is #FFDEE6.</p>
This text font color is #FFDEE6.
.myBgColor { background-color: #FFDEE6; }
<div style="background-color:#FFDEE6">Inner text</div>
This div background color is #FFDEE6.
.myBorderColor { border: 1px solid #FFDEE6; }
<div style="border:3px solid #FFDEE6">Div</div>
This div border color is #FFDEE6.
.myOpacity80 { color: #FFDEE6; opacity: 0.8; }
<p style="color:#FFDEE6;opacity:0.8;">80%</p>
Text with #FFDEE6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFDEE6;}
<p style="text-shadow: 3px 3px 1px #FFDEE6">Text here.</p>
This text has shadow with #FFDEE6 color.
.textShadow {text-shadow: 3px 3px 1px #FFDEE6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFDEE6, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFDEE6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFDEE6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFDEE6, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFDEE6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFDEE6; -webkit-box-shadow: 1px 1px 3px 2px #FFDEE6; box-shadow: 1px 1px 3px 2px #FFDEE6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFDEE6; -webkit-box-shadow: 1px 1px 3px 2px #FFDEE6; box-shadow:1px 1px 3px 2px #FFDEE6;">
Div content here</div>
This text has color #FFDEE6 on black background.
This text has color #FFDEE6 on white background.
This text has black color on #FFDEE6 background.
This text has white color on #FFDEE6 background.