HEX: #FFD4ED
RGB: (255,212,237)
#FFD4ED contains red, green and blue colors in about the same proportion. Web safe color of #FFD4ED is #FFCCFF (or #FCF).
#FFD4ED color RGB value is (255,212,237).
RGB: (255,212,237) (100%,83%,93%)
R 255 of 255 = 100%
G 212 of 255 = 83%
B 237 of 255 = 93%
R + G + B ~ 92%. #FFD4ED is light color.
R + G + B =
255 + 212 + 237 = 704 (100%)
R 255 of 704 ~ 36.22%
G 212 of 704 ~ 30.11%
B 237 of 704 ~ 33.66%
#FFD4ED color CMYK value is (0,17,7,0).
CMYK: (0,17,7,0) C0M17Y7K0 (0%,17%,7%,0%) (0.00/0.17/0.07/0.00)
FF | D4 | ED | |
---|---|---|---|
RGB | 255 | 212 | 237 |
HSL | 325° | 100.00% | 91.57% |
HSB/HSV | 325° | 16.86% | 100.00% |
CMYK | 0.00% | 16.86% | 7.06% |
0.00% |
HEX | FF | D4 | ED |
Decimal | 255 | 212 | 237 |
Binary | 11111111 | 11010100 | 11101101 |
Octal | 377 | 324 | 355 |
Examples of css and html codes for elements with #FFD4ED color. Also use rgb(255,212,237) instead hex code.
.myTextColor { color: #FFD4ED; }
<p style="color:#FFD4ED">This sample text font color is #FFD4ED.</p>
This text font color is #FFD4ED.
.myBgColor { background-color: #FFD4ED; }
<div style="background-color:#FFD4ED">Inner text</div>
This div background color is #FFD4ED.
.myBorderColor { border: 1px solid #FFD4ED; }
<div style="border:3px solid #FFD4ED">Div</div>
This div border color is #FFD4ED.
.myOpacity80 { color: #FFD4ED; opacity: 0.8; }
<p style="color:#FFD4ED;opacity:0.8;">80%</p>
Text with #FFD4ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFD4ED;}
<p style="text-shadow: 3px 3px 1px #FFD4ED">Text here.</p>
This text has shadow with #FFD4ED color.
.textShadow {text-shadow: 3px 3px 1px #FFD4ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFD4ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFD4ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFD4ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFD4ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFD4ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFD4ED; -webkit-box-shadow: 1px 1px 3px 2px #FFD4ED; box-shadow: 1px 1px 3px 2px #FFD4ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFD4ED; -webkit-box-shadow: 1px 1px 3px 2px #FFD4ED; box-shadow:1px 1px 3px 2px #FFD4ED;">
Div content here</div>
This text has color #FFD4ED on black background.
This text has color #FFD4ED on white background.
This text has black color on #FFD4ED background.
This text has white color on #FFD4ED background.