HEX: #FDD4ED
RGB: (253,212,237)
#FDD4ED contains red, green and blue colors in about the same proportion. Web safe color of #FDD4ED is #FFCCFF (or #FCF).
#FDD4ED color RGB value is (253,212,237).
RGB: (253,212,237) (99%,83%,93%)
R 253 of 255 = 99%
G 212 of 255 = 83%
B 237 of 255 = 93%
R + G + B ~ 92%. #FDD4ED is light color.
R + G + B =
253 + 212 + 237 = 702 (100%)
R 253 of 702 ~ 36.04%
G 212 of 702 ~ 30.2%
B 237 of 702 ~ 33.76%
#FDD4ED color CMYK value is (0,16,6,1).
CMYK: (0,16,6,1) C0M16Y6K1 (0%,16%,6%,1%) (0.00/0.16/0.06/0.01)
FD | D4 | ED | |
---|---|---|---|
RGB | 253 | 212 | 237 |
HSL | 323° | 91.11% | 91.18% |
HSB/HSV | 323° | 16.21% | 99.22% |
CMYK | 0.00% | 16.21% | 6.32% |
0.78% |
HEX | FD | D4 | ED |
Decimal | 253 | 212 | 237 |
Binary | 11111101 | 11010100 | 11101101 |
Octal | 375 | 324 | 355 |
Examples of css and html codes for elements with #FDD4ED color. Also use rgb(253,212,237) instead hex code.
.myTextColor { color: #FDD4ED; }
<p style="color:#FDD4ED">This sample text font color is #FDD4ED.</p>
This text font color is #FDD4ED.
.myBgColor { background-color: #FDD4ED; }
<div style="background-color:#FDD4ED">Inner text</div>
This div background color is #FDD4ED.
.myBorderColor { border: 1px solid #FDD4ED; }
<div style="border:3px solid #FDD4ED">Div</div>
This div border color is #FDD4ED.
.myOpacity80 { color: #FDD4ED; opacity: 0.8; }
<p style="color:#FDD4ED;opacity:0.8;">80%</p>
Text with #FDD4ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDD4ED;}
<p style="text-shadow: 3px 3px 1px #FDD4ED">Text here.</p>
This text has shadow with #FDD4ED color.
.textShadow {text-shadow: 3px 3px 1px #FDD4ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDD4ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDD4ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDD4ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDD4ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDD4ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDD4ED; -webkit-box-shadow: 1px 1px 3px 2px #FDD4ED; box-shadow: 1px 1px 3px 2px #FDD4ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDD4ED; -webkit-box-shadow: 1px 1px 3px 2px #FDD4ED; box-shadow:1px 1px 3px 2px #FDD4ED;">
Div content here</div>
This text has color #FDD4ED on black background.
This text has color #FDD4ED on white background.
This text has black color on #FDD4ED background.
This text has white color on #FDD4ED background.