HEX: #F5E08A
RGB: (245,224,138)
#F5E08A contains mainly red and green colors. Web safe color of #F5E08A is #FFCC99 (or #FC9).
#F5E08A color RGB value is (245,224,138).
RGB: (245,224,138) (96%,88%,54%)
R 245 of 255 = 96%
G 224 of 255 = 88%
B 138 of 255 = 54%
R + G + B ~ 79%. #F5E08A is quite light color.
R + G + B =
245 + 224 + 138 = 607 (100%)
R 245 of 607 ~ 40.36%
G 224 of 607 ~ 36.9%
B 138 of 607 ~ 22.73%
#F5E08A color CMYK value is (0,9,44,4).
CMYK: (0,9,44,4) C0M9Y44K4 (0%,9%,44%,4%) (0.00/0.09/0.44/0.04)
F5 | E0 | 8A | |
---|---|---|---|
RGB | 245 | 224 | 138 |
HSL | 48° | 84.25% | 75.10% |
HSB/HSV | 48° | 43.67% | 96.08% |
CMYK | 0.00% | 8.57% | 43.67% |
3.92% |
HEX | F5 | E0 | 8A |
Decimal | 245 | 224 | 138 |
Binary | 11110101 | 11100000 | 10001010 |
Octal | 365 | 340 | 212 |
Examples of css and html codes for elements with #F5E08A color. Also use rgb(245,224,138) instead hex code.
.myTextColor { color: #F5E08A; }
<p style="color:#F5E08A">This sample text font color is #F5E08A.</p>
This text font color is #F5E08A.
.myBgColor { background-color: #F5E08A; }
<div style="background-color:#F5E08A">Inner text</div>
This div background color is #F5E08A.
.myBorderColor { border: 1px solid #F5E08A; }
<div style="border:3px solid #F5E08A">Div</div>
This div border color is #F5E08A.
.myOpacity80 { color: #F5E08A; opacity: 0.8; }
<p style="color:#F5E08A;opacity:0.8;">80%</p>
Text with #F5E08A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5E08A;}
<p style="text-shadow: 3px 3px 1px #F5E08A">Text here.</p>
This text has shadow with #F5E08A color.
.textShadow {text-shadow: 3px 3px 1px #F5E08A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5E08A, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5E08A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5E08A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5E08A, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5E08A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5E08A; -webkit-box-shadow: 1px 1px 3px 2px #F5E08A; box-shadow: 1px 1px 3px 2px #F5E08A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5E08A; -webkit-box-shadow: 1px 1px 3px 2px #F5E08A; box-shadow:1px 1px 3px 2px #F5E08A;">
Div content here</div>
This text has color #F5E08A on black background.
This text has color #F5E08A on white background.
This text has black color on #F5E08A background.
This text has white color on #F5E08A background.