HEX: #F9D398
RGB: (249,211,152)
#F9D398 contains mainly red and green colors. Web safe color of #F9D398 is #FFCC99 (or #FC9).
#F9D398 color RGB value is (249,211,152).
RGB: (249,211,152) (98%,83%,60%)
R 249 of 255 = 98%
G 211 of 255 = 83%
B 152 of 255 = 60%
R + G + B ~ 80%. #F9D398 is quite light color.
R + G + B =
249 + 211 + 152 = 612 (100%)
R 249 of 612 ~ 40.69%
G 211 of 612 ~ 34.48%
B 152 of 612 ~ 24.84%
#F9D398 color CMYK value is (0,15,39,2).
CMYK: (0,15,39,2) C0M15Y39K2 (0%,15%,39%,2%) (0.00/0.15/0.39/0.02)
F9 | D3 | 98 | |
---|---|---|---|
RGB | 249 | 211 | 152 |
HSL | 36° | 88.99% | 78.63% |
HSB/HSV | 36° | 38.96% | 97.65% |
CMYK | 0.00% | 15.26% | 38.96% |
2.35% |
HEX | F9 | D3 | 98 |
Decimal | 249 | 211 | 152 |
Binary | 11111001 | 11010011 | 10011000 |
Octal | 371 | 323 | 230 |
Examples of css and html codes for elements with #F9D398 color. Also use rgb(249,211,152) instead hex code.
.myTextColor { color: #F9D398; }
<p style="color:#F9D398">This sample text font color is #F9D398.</p>
This text font color is #F9D398.
.myBgColor { background-color: #F9D398; }
<div style="background-color:#F9D398">Inner text</div>
This div background color is #F9D398.
.myBorderColor { border: 1px solid #F9D398; }
<div style="border:3px solid #F9D398">Div</div>
This div border color is #F9D398.
.myOpacity80 { color: #F9D398; opacity: 0.8; }
<p style="color:#F9D398;opacity:0.8;">80%</p>
Text with #F9D398 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9D398;}
<p style="text-shadow: 3px 3px 1px #F9D398">Text here.</p>
This text has shadow with #F9D398 color.
.textShadow {text-shadow: 3px 3px 1px #F9D398, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9D398, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9D398 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9D398, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9D398, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9D398 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9D398; -webkit-box-shadow: 1px 1px 3px 2px #F9D398; box-shadow: 1px 1px 3px 2px #F9D398; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9D398; -webkit-box-shadow: 1px 1px 3px 2px #F9D398; box-shadow:1px 1px 3px 2px #F9D398;">
Div content here</div>
This text has color #F9D398 on black background.
This text has color #F9D398 on white background.
This text has black color on #F9D398 background.
This text has white color on #F9D398 background.