HEX: #FE6ABF
RGB: (254,106,191)
#FE6ABF contains mainly red color. Web safe color of #FE6ABF is #FF66CC (or #F6C).
#FE6ABF color RGB value is (254,106,191).
RGB: (254,106,191) (100%,42%,75%)
R 254 of 255 = 100%
G 106 of 255 = 42%
B 191 of 255 = 75%
R + G + B ~ 72%. #FE6ABF is quite light color.
R + G + B =
254 + 106 + 191 = 551 (100%)
R 254 of 551 ~ 46.1%
G 106 of 551 ~ 19.24%
B 191 of 551 ~ 34.66%
#FE6ABF color CMYK value is (0,58,25,0).
CMYK: (0,58,25,0) C0M58Y25K0 (0%,58%,25%,0%) (0.00/0.58/0.25/0.00)
FE | 6A | BF | |
---|---|---|---|
RGB | 254 | 106 | 191 |
HSL | 326° | 98.67% | 70.59% |
HSB/HSV | 326° | 58.27% | 99.61% |
CMYK | 0.00% | 58.27% | 24.80% |
0.39% |
HEX | FE | 6A | BF |
Decimal | 254 | 106 | 191 |
Binary | 11111110 | 1101010 | 10111111 |
Octal | 376 | 152 | 277 |
Examples of css and html codes for elements with #FE6ABF color. Also use rgb(254,106,191) instead hex code.
.myTextColor { color: #FE6ABF; }
<p style="color:#FE6ABF">This sample text font color is #FE6ABF.</p>
This text font color is #FE6ABF.
.myBgColor { background-color: #FE6ABF; }
<div style="background-color:#FE6ABF">Inner text</div>
This div background color is #FE6ABF.
.myBorderColor { border: 1px solid #FE6ABF; }
<div style="border:3px solid #FE6ABF">Div</div>
This div border color is #FE6ABF.
.myOpacity80 { color: #FE6ABF; opacity: 0.8; }
<p style="color:#FE6ABF;opacity:0.8;">80%</p>
Text with #FE6ABF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FE6ABF;}
<p style="text-shadow: 3px 3px 1px #FE6ABF">Text here.</p>
This text has shadow with #FE6ABF color.
.textShadow {text-shadow: 3px 3px 1px #FE6ABF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FE6ABF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FE6ABF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FE6ABF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FE6ABF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FE6ABF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FE6ABF; -webkit-box-shadow: 1px 1px 3px 2px #FE6ABF; box-shadow: 1px 1px 3px 2px #FE6ABF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FE6ABF; -webkit-box-shadow: 1px 1px 3px 2px #FE6ABF; box-shadow:1px 1px 3px 2px #FE6ABF;">
Div content here</div>
This text has color #FE6ABF on black background.
This text has color #FE6ABF on white background.
This text has black color on #FE6ABF background.
This text has white color on #FE6ABF background.