HEX: #FDC1E7
RGB: (253,193,231)
#FDC1E7 contains mainly red and blue colors. Web safe color of #FDC1E7 is #FFCCFF (or #FCF).
#FDC1E7 color RGB value is (253,193,231).
RGB: (253,193,231) (99%,76%,91%)
R 253 of 255 = 99%
G 193 of 255 = 76%
B 231 of 255 = 91%
R + G + B ~ 89%. #FDC1E7 is light color.
R + G + B =
253 + 193 + 231 = 677 (100%)
R 253 of 677 ~ 37.37%
G 193 of 677 ~ 28.51%
B 231 of 677 ~ 34.12%
#FDC1E7 color CMYK value is (0,24,9,1).
CMYK: (0,24,9,1) C0M24Y9K1 (0%,24%,9%,1%) (0.00/0.24/0.09/0.01)
FD | C1 | E7 | |
---|---|---|---|
RGB | 253 | 193 | 231 |
HSL | 322° | 93.75% | 87.45% |
HSB/HSV | 322° | 23.72% | 99.22% |
CMYK | 0.00% | 23.72% | 8.70% |
0.78% |
HEX | FD | C1 | E7 |
Decimal | 253 | 193 | 231 |
Binary | 11111101 | 11000001 | 11100111 |
Octal | 375 | 301 | 347 |
Examples of css and html codes for elements with #FDC1E7 color. Also use rgb(253,193,231) instead hex code.
.myTextColor { color: #FDC1E7; }
<p style="color:#FDC1E7">This sample text font color is #FDC1E7.</p>
This text font color is #FDC1E7.
.myBgColor { background-color: #FDC1E7; }
<div style="background-color:#FDC1E7">Inner text</div>
This div background color is #FDC1E7.
.myBorderColor { border: 1px solid #FDC1E7; }
<div style="border:3px solid #FDC1E7">Div</div>
This div border color is #FDC1E7.
.myOpacity80 { color: #FDC1E7; opacity: 0.8; }
<p style="color:#FDC1E7;opacity:0.8;">80%</p>
Text with #FDC1E7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDC1E7;}
<p style="text-shadow: 3px 3px 1px #FDC1E7">Text here.</p>
This text has shadow with #FDC1E7 color.
.textShadow {text-shadow: 3px 3px 1px #FDC1E7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDC1E7, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDC1E7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDC1E7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDC1E7, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDC1E7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDC1E7; -webkit-box-shadow: 1px 1px 3px 2px #FDC1E7; box-shadow: 1px 1px 3px 2px #FDC1E7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDC1E7; -webkit-box-shadow: 1px 1px 3px 2px #FDC1E7; box-shadow:1px 1px 3px 2px #FDC1E7;">
Div content here</div>
This text has color #FDC1E7 on black background.
This text has color #FDC1E7 on white background.
This text has black color on #FDC1E7 background.
This text has white color on #FDC1E7 background.