HEX: #FE99DD
RGB: (254,153,221)
#FE99DD contains mainly red and blue colors. Web safe color of #FE99DD is #FF99CC (or #F9C).
#FE99DD color RGB value is (254,153,221).
RGB: (254,153,221) (100%,60%,87%)
R 254 of 255 = 100%
G 153 of 255 = 60%
B 221 of 255 = 87%
R + G + B ~ 82%. #FE99DD is quite light color.
R + G + B =
254 + 153 + 221 = 628 (100%)
R 254 of 628 ~ 40.45%
G 153 of 628 ~ 24.36%
B 221 of 628 ~ 35.19%
#FE99DD color CMYK value is (0,40,13,0).
CMYK: (0,40,13,0) C0M40Y13K0 (0%,40%,13%,0%) (0.00/0.40/0.13/0.00)
FE | 99 | DD | |
---|---|---|---|
RGB | 254 | 153 | 221 |
HSL | 320° | 98.06% | 79.80% |
HSB/HSV | 320° | 39.76% | 99.61% |
CMYK | 0.00% | 39.76% | 12.99% |
0.39% |
HEX | FE | 99 | DD |
Decimal | 254 | 153 | 221 |
Binary | 11111110 | 10011001 | 11011101 |
Octal | 376 | 231 | 335 |
Examples of css and html codes for elements with #FE99DD color. Also use rgb(254,153,221) instead hex code.
.myTextColor { color: #FE99DD; }
<p style="color:#FE99DD">This sample text font color is #FE99DD.</p>
This text font color is #FE99DD.
.myBgColor { background-color: #FE99DD; }
<div style="background-color:#FE99DD">Inner text</div>
This div background color is #FE99DD.
.myBorderColor { border: 1px solid #FE99DD; }
<div style="border:3px solid #FE99DD">Div</div>
This div border color is #FE99DD.
.myOpacity80 { color: #FE99DD; opacity: 0.8; }
<p style="color:#FE99DD;opacity:0.8;">80%</p>
Text with #FE99DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FE99DD;}
<p style="text-shadow: 3px 3px 1px #FE99DD">Text here.</p>
This text has shadow with #FE99DD color.
.textShadow {text-shadow: 3px 3px 1px #FE99DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FE99DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #FE99DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FE99DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FE99DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #FE99DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FE99DD; -webkit-box-shadow: 1px 1px 3px 2px #FE99DD; box-shadow: 1px 1px 3px 2px #FE99DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FE99DD; -webkit-box-shadow: 1px 1px 3px 2px #FE99DD; box-shadow:1px 1px 3px 2px #FE99DD;">
Div content here</div>
This text has color #FE99DD on black background.
This text has color #FE99DD on white background.
This text has black color on #FE99DD background.
This text has white color on #FE99DD background.