HEX: #FDC2EB
RGB: (253,194,235)
#FDC2EB contains red, green and blue colors in about the same proportion. Web safe color of #FDC2EB is #FFCCFF (or #FCF).
#FDC2EB color RGB value is (253,194,235).
RGB: (253,194,235) (99%,76%,92%)
R 253 of 255 = 99%
G 194 of 255 = 76%
B 235 of 255 = 92%
R + G + B ~ 89%. #FDC2EB is light color.
R + G + B =
253 + 194 + 235 = 682 (100%)
R 253 of 682 ~ 37.1%
G 194 of 682 ~ 28.45%
B 235 of 682 ~ 34.46%
#FDC2EB color CMYK value is (0,23,7,1).
CMYK: (0,23,7,1) C0M23Y7K1 (0%,23%,7%,1%) (0.00/0.23/0.07/0.01)
FD | C2 | EB | |
---|---|---|---|
RGB | 253 | 194 | 235 |
HSL | 318° | 93.65% | 87.65% |
HSB/HSV | 318° | 23.32% | 99.22% |
CMYK | 0.00% | 23.32% | 7.11% |
0.78% |
HEX | FD | C2 | EB |
Decimal | 253 | 194 | 235 |
Binary | 11111101 | 11000010 | 11101011 |
Octal | 375 | 302 | 353 |
Examples of css and html codes for elements with #FDC2EB color. Also use rgb(253,194,235) instead hex code.
.myTextColor { color: #FDC2EB; }
<p style="color:#FDC2EB">This sample text font color is #FDC2EB.</p>
This text font color is #FDC2EB.
.myBgColor { background-color: #FDC2EB; }
<div style="background-color:#FDC2EB">Inner text</div>
This div background color is #FDC2EB.
.myBorderColor { border: 1px solid #FDC2EB; }
<div style="border:3px solid #FDC2EB">Div</div>
This div border color is #FDC2EB.
.myOpacity80 { color: #FDC2EB; opacity: 0.8; }
<p style="color:#FDC2EB;opacity:0.8;">80%</p>
Text with #FDC2EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDC2EB;}
<p style="text-shadow: 3px 3px 1px #FDC2EB">Text here.</p>
This text has shadow with #FDC2EB color.
.textShadow {text-shadow: 3px 3px 1px #FDC2EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDC2EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDC2EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDC2EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDC2EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDC2EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDC2EB; -webkit-box-shadow: 1px 1px 3px 2px #FDC2EB; box-shadow: 1px 1px 3px 2px #FDC2EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDC2EB; -webkit-box-shadow: 1px 1px 3px 2px #FDC2EB; box-shadow:1px 1px 3px 2px #FDC2EB;">
Div content here</div>
This text has color #FDC2EB on black background.
This text has color #FDC2EB on white background.
This text has black color on #FDC2EB background.
This text has white color on #FDC2EB background.