HEX: #FD9CE0
RGB: (253,156,224)
#FD9CE0 contains mainly red and blue colors. Web safe color of #FD9CE0 is #FF99CC (or #F9C).
#FD9CE0 color RGB value is (253,156,224).
RGB: (253,156,224) (99%,61%,88%)
R 253 of 255 = 99%
G 156 of 255 = 61%
B 224 of 255 = 88%
R + G + B ~ 83%. #FD9CE0 is quite light color.
R + G + B =
253 + 156 + 224 = 633 (100%)
R 253 of 633 ~ 39.97%
G 156 of 633 ~ 24.64%
B 224 of 633 ~ 35.39%
#FD9CE0 color CMYK value is (0,38,11,1).
CMYK: (0,38,11,1) C0M38Y11K1 (0%,38%,11%,1%) (0.00/0.38/0.11/0.01)
FD | 9C | E0 | |
---|---|---|---|
RGB | 253 | 156 | 224 |
HSL | 318° | 96.04% | 80.20% |
HSB/HSV | 318° | 38.34% | 99.22% |
CMYK | 0.00% | 38.34% | 11.46% |
0.78% |
HEX | FD | 9C | E0 |
Decimal | 253 | 156 | 224 |
Binary | 11111101 | 10011100 | 11100000 |
Octal | 375 | 234 | 340 |
Examples of css and html codes for elements with #FD9CE0 color. Also use rgb(253,156,224) instead hex code.
.myTextColor { color: #FD9CE0; }
<p style="color:#FD9CE0">This sample text font color is #FD9CE0.</p>
This text font color is #FD9CE0.
.myBgColor { background-color: #FD9CE0; }
<div style="background-color:#FD9CE0">Inner text</div>
This div background color is #FD9CE0.
.myBorderColor { border: 1px solid #FD9CE0; }
<div style="border:3px solid #FD9CE0">Div</div>
This div border color is #FD9CE0.
.myOpacity80 { color: #FD9CE0; opacity: 0.8; }
<p style="color:#FD9CE0;opacity:0.8;">80%</p>
Text with #FD9CE0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FD9CE0;}
<p style="text-shadow: 3px 3px 1px #FD9CE0">Text here.</p>
This text has shadow with #FD9CE0 color.
.textShadow {text-shadow: 3px 3px 1px #FD9CE0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FD9CE0, 5px 5px 20px red">Text here.</p>
This text has shadow with #FD9CE0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FD9CE0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FD9CE0, Direction=45, Strength=4)">Text</p>
This text has shadow with #FD9CE0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FD9CE0; -webkit-box-shadow: 1px 1px 3px 2px #FD9CE0; box-shadow: 1px 1px 3px 2px #FD9CE0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FD9CE0; -webkit-box-shadow: 1px 1px 3px 2px #FD9CE0; box-shadow:1px 1px 3px 2px #FD9CE0;">
Div content here</div>
This text has color #FD9CE0 on black background.
This text has color #FD9CE0 on white background.
This text has black color on #FD9CE0 background.
This text has white color on #FD9CE0 background.