HEX: #F2B65D
RGB: (242,182,93)
#F2B65D contains mainly red color. Web safe color of #F2B65D is #FFCC66 (or #FC6).
#F2B65D color RGB value is (242,182,93).
RGB: (242,182,93) (95%,71%,36%)
R 242 of 255 = 95%
G 182 of 255 = 71%
B 93 of 255 = 36%
R + G + B ~ 67%. #F2B65D is quite light color.
R + G + B =
242 + 182 + 93 = 517 (100%)
R 242 of 517 ~ 46.81%
G 182 of 517 ~ 35.2%
B 93 of 517 ~ 17.99%
#F2B65D color CMYK value is (0,25,62,5).
CMYK: (0,25,62,5) C0M25Y62K5 (0%,25%,62%,5%) (0.00/0.25/0.62/0.05)
F2 | B6 | 5D | |
---|---|---|---|
RGB | 242 | 182 | 93 |
HSL | 36° | 85.14% | 65.69% |
HSB/HSV | 36° | 61.57% | 94.90% |
CMYK | 0.00% | 24.79% | 61.57% |
5.10% |
HEX | F2 | B6 | 5D |
Decimal | 242 | 182 | 93 |
Binary | 11110010 | 10110110 | 1011101 |
Octal | 362 | 266 | 135 |
Examples of css and html codes for elements with #F2B65D color. Also use rgb(242,182,93) instead hex code.
.myTextColor { color: #F2B65D; }
<p style="color:#F2B65D">This sample text font color is #F2B65D.</p>
This text font color is #F2B65D.
.myBgColor { background-color: #F2B65D; }
<div style="background-color:#F2B65D">Inner text</div>
This div background color is #F2B65D.
.myBorderColor { border: 1px solid #F2B65D; }
<div style="border:3px solid #F2B65D">Div</div>
This div border color is #F2B65D.
.myOpacity80 { color: #F2B65D; opacity: 0.8; }
<p style="color:#F2B65D;opacity:0.8;">80%</p>
Text with #F2B65D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F2B65D;}
<p style="text-shadow: 3px 3px 1px #F2B65D">Text here.</p>
This text has shadow with #F2B65D color.
.textShadow {text-shadow: 3px 3px 1px #F2B65D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F2B65D, 5px 5px 20px red">Text here.</p>
This text has shadow with #F2B65D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F2B65D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F2B65D, Direction=45, Strength=4)">Text</p>
This text has shadow with #F2B65D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F2B65D; -webkit-box-shadow: 1px 1px 3px 2px #F2B65D; box-shadow: 1px 1px 3px 2px #F2B65D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F2B65D; -webkit-box-shadow: 1px 1px 3px 2px #F2B65D; box-shadow:1px 1px 3px 2px #F2B65D;">
Div content here</div>
This text has color #F2B65D on black background.
This text has color #F2B65D on white background.
This text has black color on #F2B65D background.
This text has white color on #F2B65D background.