HEX: #F4D09D
RGB: (244,208,157)
#F4D09D contains mainly red and green colors. Web safe color of #F4D09D is #FFCC99 (or #FC9).
#F4D09D color RGB value is (244,208,157).
RGB: (244,208,157) (96%,82%,62%)
R 244 of 255 = 96%
G 208 of 255 = 82%
B 157 of 255 = 62%
R + G + B ~ 80%. #F4D09D is quite light color.
R + G + B =
244 + 208 + 157 = 609 (100%)
R 244 of 609 ~ 40.07%
G 208 of 609 ~ 34.15%
B 157 of 609 ~ 25.78%
#F4D09D color CMYK value is (0,15,36,4).
CMYK: (0,15,36,4) C0M15Y36K4 (0%,15%,36%,4%) (0.00/0.15/0.36/0.04)
F4 | D0 | 9D | |
---|---|---|---|
RGB | 244 | 208 | 157 |
HSL | 35° | 79.82% | 78.63% |
HSB/HSV | 35° | 35.66% | 95.69% |
CMYK | 0.00% | 14.75% | 35.66% |
4.31% |
HEX | F4 | D0 | 9D |
Decimal | 244 | 208 | 157 |
Binary | 11110100 | 11010000 | 10011101 |
Octal | 364 | 320 | 235 |
Examples of css and html codes for elements with #F4D09D color. Also use rgb(244,208,157) instead hex code.
.myTextColor { color: #F4D09D; }
<p style="color:#F4D09D">This sample text font color is #F4D09D.</p>
This text font color is #F4D09D.
.myBgColor { background-color: #F4D09D; }
<div style="background-color:#F4D09D">Inner text</div>
This div background color is #F4D09D.
.myBorderColor { border: 1px solid #F4D09D; }
<div style="border:3px solid #F4D09D">Div</div>
This div border color is #F4D09D.
.myOpacity80 { color: #F4D09D; opacity: 0.8; }
<p style="color:#F4D09D;opacity:0.8;">80%</p>
Text with #F4D09D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F4D09D;}
<p style="text-shadow: 3px 3px 1px #F4D09D">Text here.</p>
This text has shadow with #F4D09D color.
.textShadow {text-shadow: 3px 3px 1px #F4D09D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F4D09D, 5px 5px 20px red">Text here.</p>
This text has shadow with #F4D09D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F4D09D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F4D09D, Direction=45, Strength=4)">Text</p>
This text has shadow with #F4D09D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F4D09D; -webkit-box-shadow: 1px 1px 3px 2px #F4D09D; box-shadow: 1px 1px 3px 2px #F4D09D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F4D09D; -webkit-box-shadow: 1px 1px 3px 2px #F4D09D; box-shadow:1px 1px 3px 2px #F4D09D;">
Div content here</div>
This text has color #F4D09D on black background.
This text has color #F4D09D on white background.
This text has black color on #F4D09D background.
This text has white color on #F4D09D background.