HEX: #FDCDD9
RGB: (253,205,217)
#FDCDD9 contains red, green and blue colors in about the same proportion. Web safe color of #FDCDD9 is #FFCCCC (or #FCC).
#FDCDD9 color RGB value is (253,205,217).
RGB: (253,205,217) (99%,80%,85%)
R 253 of 255 = 99%
G 205 of 255 = 80%
B 217 of 255 = 85%
R + G + B ~ 88%. #FDCDD9 is light color.
R + G + B =
253 + 205 + 217 = 675 (100%)
R 253 of 675 ~ 37.48%
G 205 of 675 ~ 30.37%
B 217 of 675 ~ 32.15%
#FDCDD9 color CMYK value is (0,19,14,1).
CMYK: (0,19,14,1) C0M19Y14K1 (0%,19%,14%,1%) (0.00/0.19/0.14/0.01)
FD | CD | D9 | |
---|---|---|---|
RGB | 253 | 205 | 217 |
HSL | 345° | 92.31% | 89.80% |
HSB/HSV | 345° | 18.97% | 99.22% |
CMYK | 0.00% | 18.97% | 14.23% |
0.78% |
HEX | FD | CD | D9 |
Decimal | 253 | 205 | 217 |
Binary | 11111101 | 11001101 | 11011001 |
Octal | 375 | 315 | 331 |
Examples of css and html codes for elements with #FDCDD9 color. Also use rgb(253,205,217) instead hex code.
.myTextColor { color: #FDCDD9; }
<p style="color:#FDCDD9">This sample text font color is #FDCDD9.</p>
This text font color is #FDCDD9.
.myBgColor { background-color: #FDCDD9; }
<div style="background-color:#FDCDD9">Inner text</div>
This div background color is #FDCDD9.
.myBorderColor { border: 1px solid #FDCDD9; }
<div style="border:3px solid #FDCDD9">Div</div>
This div border color is #FDCDD9.
.myOpacity80 { color: #FDCDD9; opacity: 0.8; }
<p style="color:#FDCDD9;opacity:0.8;">80%</p>
Text with #FDCDD9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDCDD9;}
<p style="text-shadow: 3px 3px 1px #FDCDD9">Text here.</p>
This text has shadow with #FDCDD9 color.
.textShadow {text-shadow: 3px 3px 1px #FDCDD9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDCDD9, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDCDD9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDCDD9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDCDD9, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDCDD9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDCDD9; -webkit-box-shadow: 1px 1px 3px 2px #FDCDD9; box-shadow: 1px 1px 3px 2px #FDCDD9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDCDD9; -webkit-box-shadow: 1px 1px 3px 2px #FDCDD9; box-shadow:1px 1px 3px 2px #FDCDD9;">
Div content here</div>
This text has color #FDCDD9 on black background.
This text has color #FDCDD9 on white background.
This text has black color on #FDCDD9 background.
This text has white color on #FDCDD9 background.