HEX: #F2B59D
RGB: (242,181,157)
#F2B59D contains mainly red color. Web safe color of #F2B59D is #FFCC99 (or #FC9).
#F2B59D color RGB value is (242,181,157).
RGB: (242,181,157) (95%,71%,62%)
R 242 of 255 = 95%
G 181 of 255 = 71%
B 157 of 255 = 62%
R + G + B ~ 76%. #F2B59D is quite light color.
R + G + B =
242 + 181 + 157 = 580 (100%)
R 242 of 580 ~ 41.72%
G 181 of 580 ~ 31.21%
B 157 of 580 ~ 27.07%
#F2B59D color CMYK value is (0,25,35,5).
CMYK: (0,25,35,5) C0M25Y35K5 (0%,25%,35%,5%) (0.00/0.25/0.35/0.05)
F2 | B5 | 9D | |
---|---|---|---|
RGB | 242 | 181 | 157 |
HSL | 17° | 76.58% | 78.24% |
HSB/HSV | 17° | 35.12% | 94.90% |
CMYK | 0.00% | 25.21% | 35.12% |
5.10% |
HEX | F2 | B5 | 9D |
Decimal | 242 | 181 | 157 |
Binary | 11110010 | 10110101 | 10011101 |
Octal | 362 | 265 | 235 |
Examples of css and html codes for elements with #F2B59D color. Also use rgb(242,181,157) instead hex code.
.myTextColor { color: #F2B59D; }
<p style="color:#F2B59D">This sample text font color is #F2B59D.</p>
This text font color is #F2B59D.
.myBgColor { background-color: #F2B59D; }
<div style="background-color:#F2B59D">Inner text</div>
This div background color is #F2B59D.
.myBorderColor { border: 1px solid #F2B59D; }
<div style="border:3px solid #F2B59D">Div</div>
This div border color is #F2B59D.
.myOpacity80 { color: #F2B59D; opacity: 0.8; }
<p style="color:#F2B59D;opacity:0.8;">80%</p>
Text with #F2B59D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F2B59D;}
<p style="text-shadow: 3px 3px 1px #F2B59D">Text here.</p>
This text has shadow with #F2B59D color.
.textShadow {text-shadow: 3px 3px 1px #F2B59D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F2B59D, 5px 5px 20px red">Text here.</p>
This text has shadow with #F2B59D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F2B59D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F2B59D, Direction=45, Strength=4)">Text</p>
This text has shadow with #F2B59D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F2B59D; -webkit-box-shadow: 1px 1px 3px 2px #F2B59D; box-shadow: 1px 1px 3px 2px #F2B59D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F2B59D; -webkit-box-shadow: 1px 1px 3px 2px #F2B59D; box-shadow:1px 1px 3px 2px #F2B59D;">
Div content here</div>
This text has color #F2B59D on black background.
This text has color #F2B59D on white background.
This text has black color on #F2B59D background.
This text has white color on #F2B59D background.