HEX: #FEA2DE
RGB: (254,162,222)
#FEA2DE contains mainly red and blue colors. Web safe color of #FEA2DE is #FF99CC (or #F9C).
#FEA2DE color RGB value is (254,162,222).
RGB: (254,162,222) (100%,64%,87%)
R 254 of 255 = 100%
G 162 of 255 = 64%
B 222 of 255 = 87%
R + G + B ~ 84%. #FEA2DE is quite light color.
R + G + B =
254 + 162 + 222 = 638 (100%)
R 254 of 638 ~ 39.81%
G 162 of 638 ~ 25.39%
B 222 of 638 ~ 34.8%
#FEA2DE color CMYK value is (0,36,13,0).
CMYK: (0,36,13,0) C0M36Y13K0 (0%,36%,13%,0%) (0.00/0.36/0.13/0.00)
FE | A2 | DE | |
---|---|---|---|
RGB | 254 | 162 | 222 |
HSL | 321° | 97.87% | 81.57% |
HSB/HSV | 321° | 36.22% | 99.61% |
CMYK | 0.00% | 36.22% | 12.60% |
0.39% |
HEX | FE | A2 | DE |
Decimal | 254 | 162 | 222 |
Binary | 11111110 | 10100010 | 11011110 |
Octal | 376 | 242 | 336 |
Examples of css and html codes for elements with #FEA2DE color. Also use rgb(254,162,222) instead hex code.
.myTextColor { color: #FEA2DE; }
<p style="color:#FEA2DE">This sample text font color is #FEA2DE.</p>
This text font color is #FEA2DE.
.myBgColor { background-color: #FEA2DE; }
<div style="background-color:#FEA2DE">Inner text</div>
This div background color is #FEA2DE.
.myBorderColor { border: 1px solid #FEA2DE; }
<div style="border:3px solid #FEA2DE">Div</div>
This div border color is #FEA2DE.
.myOpacity80 { color: #FEA2DE; opacity: 0.8; }
<p style="color:#FEA2DE;opacity:0.8;">80%</p>
Text with #FEA2DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEA2DE;}
<p style="text-shadow: 3px 3px 1px #FEA2DE">Text here.</p>
This text has shadow with #FEA2DE color.
.textShadow {text-shadow: 3px 3px 1px #FEA2DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEA2DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEA2DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEA2DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEA2DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEA2DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEA2DE; -webkit-box-shadow: 1px 1px 3px 2px #FEA2DE; box-shadow: 1px 1px 3px 2px #FEA2DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEA2DE; -webkit-box-shadow: 1px 1px 3px 2px #FEA2DE; box-shadow:1px 1px 3px 2px #FEA2DE;">
Div content here</div>
This text has color #FEA2DE on black background.
This text has color #FEA2DE on white background.
This text has black color on #FEA2DE background.
This text has white color on #FEA2DE background.