HEX: #FEA7BE
RGB: (254,167,190)
#FEA7BE contains mainly red color. Web safe color of #FEA7BE is #FF99CC (or #F9C).
#FEA7BE color RGB value is (254,167,190).
RGB: (254,167,190) (100%,65%,75%)
R 254 of 255 = 100%
G 167 of 255 = 65%
B 190 of 255 = 75%
R + G + B ~ 80%. #FEA7BE is quite light color.
R + G + B =
254 + 167 + 190 = 611 (100%)
R 254 of 611 ~ 41.57%
G 167 of 611 ~ 27.33%
B 190 of 611 ~ 31.1%
#FEA7BE color CMYK value is (0,34,25,0).
CMYK: (0,34,25,0) C0M34Y25K0 (0%,34%,25%,0%) (0.00/0.34/0.25/0.00)
FE | A7 | BE | |
---|---|---|---|
RGB | 254 | 167 | 190 |
HSL | 344° | 97.75% | 82.55% |
HSB/HSV | 344° | 34.25% | 99.61% |
CMYK | 0.00% | 34.25% | 25.20% |
0.39% |
HEX | FE | A7 | BE |
Decimal | 254 | 167 | 190 |
Binary | 11111110 | 10100111 | 10111110 |
Octal | 376 | 247 | 276 |
Examples of css and html codes for elements with #FEA7BE color. Also use rgb(254,167,190) instead hex code.
.myTextColor { color: #FEA7BE; }
<p style="color:#FEA7BE">This sample text font color is #FEA7BE.</p>
This text font color is #FEA7BE.
.myBgColor { background-color: #FEA7BE; }
<div style="background-color:#FEA7BE">Inner text</div>
This div background color is #FEA7BE.
.myBorderColor { border: 1px solid #FEA7BE; }
<div style="border:3px solid #FEA7BE">Div</div>
This div border color is #FEA7BE.
.myOpacity80 { color: #FEA7BE; opacity: 0.8; }
<p style="color:#FEA7BE;opacity:0.8;">80%</p>
Text with #FEA7BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEA7BE;}
<p style="text-shadow: 3px 3px 1px #FEA7BE">Text here.</p>
This text has shadow with #FEA7BE color.
.textShadow {text-shadow: 3px 3px 1px #FEA7BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEA7BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEA7BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEA7BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEA7BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEA7BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEA7BE; -webkit-box-shadow: 1px 1px 3px 2px #FEA7BE; box-shadow: 1px 1px 3px 2px #FEA7BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEA7BE; -webkit-box-shadow: 1px 1px 3px 2px #FEA7BE; box-shadow:1px 1px 3px 2px #FEA7BE;">
Div content here</div>
This text has color #FEA7BE on black background.
This text has color #FEA7BE on white background.
This text has black color on #FEA7BE background.
This text has white color on #FEA7BE background.