HEX: #FDDBEC
RGB: (253,219,236)
#FDDBEC contains red, green and blue colors in about the same proportion. Web safe color of #FDDBEC is #FFCCFF (or #FCF).
#FDDBEC color RGB value is (253,219,236).
RGB: (253,219,236) (99%,86%,93%)
R 253 of 255 = 99%
G 219 of 255 = 86%
B 236 of 255 = 93%
R + G + B ~ 93%. #FDDBEC is light color.
R + G + B =
253 + 219 + 236 = 708 (100%)
R 253 of 708 ~ 35.73%
G 219 of 708 ~ 30.93%
B 236 of 708 ~ 33.33%
#FDDBEC color CMYK value is (0,13,7,1).
CMYK: (0,13,7,1) C0M13Y7K1 (0%,13%,7%,1%) (0.00/0.13/0.07/0.01)
FD | DB | EC | |
---|---|---|---|
RGB | 253 | 219 | 236 |
HSL | 330° | 89.47% | 92.55% |
HSB/HSV | 330° | 13.44% | 99.22% |
CMYK | 0.00% | 13.44% | 6.72% |
0.78% |
HEX | FD | DB | EC |
Decimal | 253 | 219 | 236 |
Binary | 11111101 | 11011011 | 11101100 |
Octal | 375 | 333 | 354 |
Examples of css and html codes for elements with #FDDBEC color. Also use rgb(253,219,236) instead hex code.
.myTextColor { color: #FDDBEC; }
<p style="color:#FDDBEC">This sample text font color is #FDDBEC.</p>
This text font color is #FDDBEC.
.myBgColor { background-color: #FDDBEC; }
<div style="background-color:#FDDBEC">Inner text</div>
This div background color is #FDDBEC.
.myBorderColor { border: 1px solid #FDDBEC; }
<div style="border:3px solid #FDDBEC">Div</div>
This div border color is #FDDBEC.
.myOpacity80 { color: #FDDBEC; opacity: 0.8; }
<p style="color:#FDDBEC;opacity:0.8;">80%</p>
Text with #FDDBEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDDBEC;}
<p style="text-shadow: 3px 3px 1px #FDDBEC">Text here.</p>
This text has shadow with #FDDBEC color.
.textShadow {text-shadow: 3px 3px 1px #FDDBEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDDBEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDDBEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDDBEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDDBEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDDBEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDDBEC; -webkit-box-shadow: 1px 1px 3px 2px #FDDBEC; box-shadow: 1px 1px 3px 2px #FDDBEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDDBEC; -webkit-box-shadow: 1px 1px 3px 2px #FDDBEC; box-shadow:1px 1px 3px 2px #FDDBEC;">
Div content here</div>
This text has color #FDDBEC on black background.
This text has color #FDDBEC on white background.
This text has black color on #FDDBEC background.
This text has white color on #FDDBEC background.