HEX: #F59E09
RGB: (245,158,9)
#F59E09 contains mainly red color. Web safe color of #F59E09 is #FF9900 (or #F90).
#F59E09 color RGB value is (245,158,9).
RGB: (245,158,9) (96%,62%,4%)
R 245 of 255 = 96%
G 158 of 255 = 62%
B 9 of 255 = 4%
R + G + B ~ 54%. #F59E09 is middle color (not dark and not light).
R + G + B =
245 + 158 + 9 = 412 (100%)
R 245 of 412 ~ 59.47%
G 158 of 412 ~ 38.35%
B 9 of 412 ~ 2.18%
#F59E09 color CMYK value is (0,36,96,4).
CMYK: (0,36,96,4) C0M36Y96K4 (0%,36%,96%,4%) (0.00/0.36/0.96/0.04)
F5 | 9E | 09 | |
---|---|---|---|
RGB | 245 | 158 | 9 |
HSL | 38° | 92.91% | 49.80% |
HSB/HSV | 38° | 96.33% | 96.08% |
CMYK | 0.00% | 35.51% | 96.33% |
3.92% |
HEX | F5 | 9E | 09 |
Decimal | 245 | 158 | 9 |
Binary | 11110101 | 10011110 | 1001 |
Octal | 365 | 236 | 11 |
Examples of css and html codes for elements with #F59E09 color. Also use rgb(245,158,9) instead hex code.
.myTextColor { color: #F59E09; }
<p style="color:#F59E09">This sample text font color is #F59E09.</p>
This text font color is #F59E09.
.myBgColor { background-color: #F59E09; }
<div style="background-color:#F59E09">Inner text</div>
This div background color is #F59E09.
.myBorderColor { border: 1px solid #F59E09; }
<div style="border:3px solid #F59E09">Div</div>
This div border color is #F59E09.
.myOpacity80 { color: #F59E09; opacity: 0.8; }
<p style="color:#F59E09;opacity:0.8;">80%</p>
Text with #F59E09 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F59E09;}
<p style="text-shadow: 3px 3px 1px #F59E09">Text here.</p>
This text has shadow with #F59E09 color.
.textShadow {text-shadow: 3px 3px 1px #F59E09, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F59E09, 5px 5px 20px red">Text here.</p>
This text has shadow with #F59E09 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F59E09, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F59E09, Direction=45, Strength=4)">Text</p>
This text has shadow with #F59E09 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F59E09; -webkit-box-shadow: 1px 1px 3px 2px #F59E09; box-shadow: 1px 1px 3px 2px #F59E09; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F59E09; -webkit-box-shadow: 1px 1px 3px 2px #F59E09; box-shadow:1px 1px 3px 2px #F59E09;">
Div content here</div>
This text has color #F59E09 on black background.
This text has color #F59E09 on white background.
This text has black color on #F59E09 background.
This text has white color on #F59E09 background.