HEX: #F4A460
RGB: (244,164,96)
Color name is SandyBrown. #F4A460 contains mainly red color. Web safe color of #F4A460 is #FF9966 (or #F96).
#F4A460 color RGB value is (244,164,96).
RGB: (244,164,96) (96%,64%,38%)
R 244 of 255 = 96%
G 164 of 255 = 64%
B 96 of 255 = 38%
R + G + B ~ 66%. #F4A460 is quite light color.
R + G + B =
244 + 164 + 96 = 504 (100%)
R 244 of 504 ~ 48.41%
G 164 of 504 ~ 32.54%
B 96 of 504 ~ 19.05%
#F4A460 color CMYK value is (0,33,61,4).
CMYK: (0,33,61,4) C0M33Y61K4 (0%,33%,61%,4%) (0.00/0.33/0.61/0.04)
F4 | A4 | 60 | |
---|---|---|---|
RGB | 244 | 164 | 96 |
HSL | 28° | 87.06% | 66.67% |
HSB/HSV | 28° | 60.66% | 95.69% |
CMYK | 0.00% | 32.79% | 60.66% |
4.31% |
HEX | F4 | A4 | 60 |
Decimal | 244 | 164 | 96 |
Binary | 11110100 | 10100100 | 1100000 |
Octal | 364 | 244 | 140 |
Examples of css and html codes for elements with #F4A460 color. Also use rgb(244,164,96) instead hex code.
.myTextColor { color: #F4A460; }
<p style="color:#F4A460">This sample text font color is #F4A460.</p>
This text font color is #F4A460.
.myBgColor { background-color: #F4A460; }
<div style="background-color:#F4A460">Inner text</div>
This div background color is #F4A460.
.myBorderColor { border: 1px solid #F4A460; }
<div style="border:3px solid #F4A460">Div</div>
This div border color is #F4A460.
.myOpacity80 { color: #F4A460; opacity: 0.8; }
<p style="color:#F4A460;opacity:0.8;">80%</p>
Text with #F4A460 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F4A460;}
<p style="text-shadow: 3px 3px 1px #F4A460">Text here.</p>
This text has shadow with #F4A460 color.
.textShadow {text-shadow: 3px 3px 1px #F4A460, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F4A460, 5px 5px 20px red">Text here.</p>
This text has shadow with #F4A460 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F4A460, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F4A460, Direction=45, Strength=4)">Text</p>
This text has shadow with #F4A460 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F4A460; -webkit-box-shadow: 1px 1px 3px 2px #F4A460; box-shadow: 1px 1px 3px 2px #F4A460; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F4A460; -webkit-box-shadow: 1px 1px 3px 2px #F4A460; box-shadow:1px 1px 3px 2px #F4A460;">
Div content here</div>
This text has color #F4A460 on black background.
This text has color #F4A460 on white background.
This text has black color on #F4A460 background.
This text has white color on #F4A460 background.