HEX: #FEA1AD
RGB: (254,161,173)
#FEA1AD contains mainly red color. Web safe color of #FEA1AD is #FF9999 (or #F99).
#FEA1AD color RGB value is (254,161,173).
RGB: (254,161,173) (100%,63%,68%)
R 254 of 255 = 100%
G 161 of 255 = 63%
B 173 of 255 = 68%
R + G + B ~ 77%. #FEA1AD is quite light color.
R + G + B =
254 + 161 + 173 = 588 (100%)
R 254 of 588 ~ 43.2%
G 161 of 588 ~ 27.38%
B 173 of 588 ~ 29.42%
#FEA1AD color CMYK value is (0,37,32,0).
CMYK: (0,37,32,0) C0M37Y32K0 (0%,37%,32%,0%) (0.00/0.37/0.32/0.00)
FE | A1 | AD | |
---|---|---|---|
RGB | 254 | 161 | 173 |
HSL | 352° | 97.89% | 81.37% |
HSB/HSV | 352° | 36.61% | 99.61% |
CMYK | 0.00% | 36.61% | 31.89% |
0.39% |
HEX | FE | A1 | AD |
Decimal | 254 | 161 | 173 |
Binary | 11111110 | 10100001 | 10101101 |
Octal | 376 | 241 | 255 |
Examples of css and html codes for elements with #FEA1AD color. Also use rgb(254,161,173) instead hex code.
.myTextColor { color: #FEA1AD; }
<p style="color:#FEA1AD">This sample text font color is #FEA1AD.</p>
This text font color is #FEA1AD.
.myBgColor { background-color: #FEA1AD; }
<div style="background-color:#FEA1AD">Inner text</div>
This div background color is #FEA1AD.
.myBorderColor { border: 1px solid #FEA1AD; }
<div style="border:3px solid #FEA1AD">Div</div>
This div border color is #FEA1AD.
.myOpacity80 { color: #FEA1AD; opacity: 0.8; }
<p style="color:#FEA1AD;opacity:0.8;">80%</p>
Text with #FEA1AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEA1AD;}
<p style="text-shadow: 3px 3px 1px #FEA1AD">Text here.</p>
This text has shadow with #FEA1AD color.
.textShadow {text-shadow: 3px 3px 1px #FEA1AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEA1AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEA1AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEA1AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEA1AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEA1AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEA1AD; -webkit-box-shadow: 1px 1px 3px 2px #FEA1AD; box-shadow: 1px 1px 3px 2px #FEA1AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEA1AD; -webkit-box-shadow: 1px 1px 3px 2px #FEA1AD; box-shadow:1px 1px 3px 2px #FEA1AD;">
Div content here</div>
This text has color #FEA1AD on black background.
This text has color #FEA1AD on white background.
This text has black color on #FEA1AD background.
This text has white color on #FEA1AD background.