HEX: #FEA5C2
RGB: (254,165,194)
#FEA5C2 contains mainly red color. Web safe color of #FEA5C2 is #FF99CC (or #F9C).
#FEA5C2 color RGB value is (254,165,194).
RGB: (254,165,194) (100%,65%,76%)
R 254 of 255 = 100%
G 165 of 255 = 65%
B 194 of 255 = 76%
R + G + B ~ 80%. #FEA5C2 is quite light color.
R + G + B =
254 + 165 + 194 = 613 (100%)
R 254 of 613 ~ 41.44%
G 165 of 613 ~ 26.92%
B 194 of 613 ~ 31.65%
#FEA5C2 color CMYK value is (0,35,24,0).
CMYK: (0,35,24,0) C0M35Y24K0 (0%,35%,24%,0%) (0.00/0.35/0.24/0.00)
FE | A5 | C2 | |
---|---|---|---|
RGB | 254 | 165 | 194 |
HSL | 340° | 97.80% | 82.16% |
HSB/HSV | 340° | 35.04% | 99.61% |
CMYK | 0.00% | 35.04% | 23.62% |
0.39% |
HEX | FE | A5 | C2 |
Decimal | 254 | 165 | 194 |
Binary | 11111110 | 10100101 | 11000010 |
Octal | 376 | 245 | 302 |
Examples of css and html codes for elements with #FEA5C2 color. Also use rgb(254,165,194) instead hex code.
.myTextColor { color: #FEA5C2; }
<p style="color:#FEA5C2">This sample text font color is #FEA5C2.</p>
This text font color is #FEA5C2.
.myBgColor { background-color: #FEA5C2; }
<div style="background-color:#FEA5C2">Inner text</div>
This div background color is #FEA5C2.
.myBorderColor { border: 1px solid #FEA5C2; }
<div style="border:3px solid #FEA5C2">Div</div>
This div border color is #FEA5C2.
.myOpacity80 { color: #FEA5C2; opacity: 0.8; }
<p style="color:#FEA5C2;opacity:0.8;">80%</p>
Text with #FEA5C2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEA5C2;}
<p style="text-shadow: 3px 3px 1px #FEA5C2">Text here.</p>
This text has shadow with #FEA5C2 color.
.textShadow {text-shadow: 3px 3px 1px #FEA5C2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEA5C2, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEA5C2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEA5C2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEA5C2, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEA5C2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEA5C2; -webkit-box-shadow: 1px 1px 3px 2px #FEA5C2; box-shadow: 1px 1px 3px 2px #FEA5C2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEA5C2; -webkit-box-shadow: 1px 1px 3px 2px #FEA5C2; box-shadow:1px 1px 3px 2px #FEA5C2;">
Div content here</div>
This text has color #FEA5C2 on black background.
This text has color #FEA5C2 on white background.
This text has black color on #FEA5C2 background.
This text has white color on #FEA5C2 background.