HEX: #F5A493
RGB: (245,164,147)
#F5A493 contains mainly red color. Web safe color of #F5A493 is #FF9999 (or #F99).
#F5A493 color RGB value is (245,164,147).
RGB: (245,164,147) (96%,64%,58%)
R 245 of 255 = 96%
G 164 of 255 = 64%
B 147 of 255 = 58%
R + G + B ~ 73%. #F5A493 is quite light color.
R + G + B =
245 + 164 + 147 = 556 (100%)
R 245 of 556 ~ 44.06%
G 164 of 556 ~ 29.5%
B 147 of 556 ~ 26.44%
#F5A493 color CMYK value is (0,33,40,4).
CMYK: (0,33,40,4) C0M33Y40K4 (0%,33%,40%,4%) (0.00/0.33/0.40/0.04)
F5 | A4 | 93 | |
---|---|---|---|
RGB | 245 | 164 | 147 |
HSL | 10° | 83.05% | 76.86% |
HSB/HSV | 10° | 40.00% | 96.08% |
CMYK | 0.00% | 33.06% | 40.00% |
3.92% |
HEX | F5 | A4 | 93 |
Decimal | 245 | 164 | 147 |
Binary | 11110101 | 10100100 | 10010011 |
Octal | 365 | 244 | 223 |
Examples of css and html codes for elements with #F5A493 color. Also use rgb(245,164,147) instead hex code.
.myTextColor { color: #F5A493; }
<p style="color:#F5A493">This sample text font color is #F5A493.</p>
This text font color is #F5A493.
.myBgColor { background-color: #F5A493; }
<div style="background-color:#F5A493">Inner text</div>
This div background color is #F5A493.
.myBorderColor { border: 1px solid #F5A493; }
<div style="border:3px solid #F5A493">Div</div>
This div border color is #F5A493.
.myOpacity80 { color: #F5A493; opacity: 0.8; }
<p style="color:#F5A493;opacity:0.8;">80%</p>
Text with #F5A493 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5A493;}
<p style="text-shadow: 3px 3px 1px #F5A493">Text here.</p>
This text has shadow with #F5A493 color.
.textShadow {text-shadow: 3px 3px 1px #F5A493, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5A493, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5A493 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5A493, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5A493, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5A493 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5A493; -webkit-box-shadow: 1px 1px 3px 2px #F5A493; box-shadow: 1px 1px 3px 2px #F5A493; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5A493; -webkit-box-shadow: 1px 1px 3px 2px #F5A493; box-shadow:1px 1px 3px 2px #F5A493;">
Div content here</div>
This text has color #F5A493 on black background.
This text has color #F5A493 on white background.
This text has black color on #F5A493 background.
This text has white color on #F5A493 background.