HEX: #FE4CAA
RGB: (254,76,170)
#FE4CAA contains mainly red color. Web safe color of #FE4CAA is #FF3399 (or #F39).
#FE4CAA color RGB value is (254,76,170).
RGB: (254,76,170) (100%,30%,67%)
R 254 of 255 = 100%
G 76 of 255 = 30%
B 170 of 255 = 67%
R + G + B ~ 66%. #FE4CAA is quite light color.
R + G + B =
254 + 76 + 170 = 500 (100%)
R 254 of 500 ~ 50.8%
G 76 of 500 ~ 15.2%
B 170 of 500 ~ 34%
#FE4CAA color CMYK value is (0,70,33,0).
CMYK: (0,70,33,0) C0M70Y33K0 (0%,70%,33%,0%) (0.00/0.70/0.33/0.00)
FE | 4C | AA | |
---|---|---|---|
RGB | 254 | 76 | 170 |
HSL | 328° | 98.89% | 64.71% |
HSB/HSV | 328° | 70.08% | 99.61% |
CMYK | 0.00% | 70.08% | 33.07% |
0.39% |
HEX | FE | 4C | AA |
Decimal | 254 | 76 | 170 |
Binary | 11111110 | 1001100 | 10101010 |
Octal | 376 | 114 | 252 |
Examples of css and html codes for elements with #FE4CAA color. Also use rgb(254,76,170) instead hex code.
.myTextColor { color: #FE4CAA; }
<p style="color:#FE4CAA">This sample text font color is #FE4CAA.</p>
This text font color is #FE4CAA.
.myBgColor { background-color: #FE4CAA; }
<div style="background-color:#FE4CAA">Inner text</div>
This div background color is #FE4CAA.
.myBorderColor { border: 1px solid #FE4CAA; }
<div style="border:3px solid #FE4CAA">Div</div>
This div border color is #FE4CAA.
.myOpacity80 { color: #FE4CAA; opacity: 0.8; }
<p style="color:#FE4CAA;opacity:0.8;">80%</p>
Text with #FE4CAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FE4CAA;}
<p style="text-shadow: 3px 3px 1px #FE4CAA">Text here.</p>
This text has shadow with #FE4CAA color.
.textShadow {text-shadow: 3px 3px 1px #FE4CAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FE4CAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FE4CAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FE4CAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FE4CAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FE4CAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FE4CAA; -webkit-box-shadow: 1px 1px 3px 2px #FE4CAA; box-shadow: 1px 1px 3px 2px #FE4CAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FE4CAA; -webkit-box-shadow: 1px 1px 3px 2px #FE4CAA; box-shadow:1px 1px 3px 2px #FE4CAA;">
Div content here</div>
This text has color #FE4CAA on black background.
This text has color #FE4CAA on white background.
This text has black color on #FE4CAA background.
This text has white color on #FE4CAA background.