HEX: #F5E69D
RGB: (245,230,157)
#F5E69D contains mainly red and green colors. Web safe color of #F5E69D is #FFCC99 (or #FC9).
#F5E69D color RGB value is (245,230,157).
RGB: (245,230,157) (96%,90%,62%)
R 245 of 255 = 96%
G 230 of 255 = 90%
B 157 of 255 = 62%
R + G + B ~ 83%. #F5E69D is quite light color.
R + G + B =
245 + 230 + 157 = 632 (100%)
R 245 of 632 ~ 38.77%
G 230 of 632 ~ 36.39%
B 157 of 632 ~ 24.84%
#F5E69D color CMYK value is (0,6,36,4).
CMYK: (0,6,36,4) C0M6Y36K4 (0%,6%,36%,4%) (0.00/0.06/0.36/0.04)
F5 | E6 | 9D | |
---|---|---|---|
RGB | 245 | 230 | 157 |
HSL | 50° | 81.48% | 78.82% |
HSB/HSV | 50° | 35.92% | 96.08% |
CMYK | 0.00% | 6.12% | 35.92% |
3.92% |
HEX | F5 | E6 | 9D |
Decimal | 245 | 230 | 157 |
Binary | 11110101 | 11100110 | 10011101 |
Octal | 365 | 346 | 235 |
Examples of css and html codes for elements with #F5E69D color. Also use rgb(245,230,157) instead hex code.
.myTextColor { color: #F5E69D; }
<p style="color:#F5E69D">This sample text font color is #F5E69D.</p>
This text font color is #F5E69D.
.myBgColor { background-color: #F5E69D; }
<div style="background-color:#F5E69D">Inner text</div>
This div background color is #F5E69D.
.myBorderColor { border: 1px solid #F5E69D; }
<div style="border:3px solid #F5E69D">Div</div>
This div border color is #F5E69D.
.myOpacity80 { color: #F5E69D; opacity: 0.8; }
<p style="color:#F5E69D;opacity:0.8;">80%</p>
Text with #F5E69D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5E69D;}
<p style="text-shadow: 3px 3px 1px #F5E69D">Text here.</p>
This text has shadow with #F5E69D color.
.textShadow {text-shadow: 3px 3px 1px #F5E69D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5E69D, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5E69D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5E69D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5E69D, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5E69D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5E69D; -webkit-box-shadow: 1px 1px 3px 2px #F5E69D; box-shadow: 1px 1px 3px 2px #F5E69D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5E69D; -webkit-box-shadow: 1px 1px 3px 2px #F5E69D; box-shadow:1px 1px 3px 2px #F5E69D;">
Div content here</div>
This text has color #F5E69D on black background.
This text has color #F5E69D on white background.
This text has black color on #F5E69D background.
This text has white color on #F5E69D background.