HEX: #F5D9AC
RGB: (245,217,172)
#F5D9AC contains mainly red and green colors. Web safe color of #F5D9AC is #FFCC99 (or #FC9).
#F5D9AC color RGB value is (245,217,172).
RGB: (245,217,172) (96%,85%,67%)
R 245 of 255 = 96%
G 217 of 255 = 85%
B 172 of 255 = 67%
R + G + B ~ 83%. #F5D9AC is quite light color.
R + G + B =
245 + 217 + 172 = 634 (100%)
R 245 of 634 ~ 38.64%
G 217 of 634 ~ 34.23%
B 172 of 634 ~ 27.13%
#F5D9AC color CMYK value is (0,11,30,4).
CMYK: (0,11,30,4) C0M11Y30K4 (0%,11%,30%,4%) (0.00/0.11/0.30/0.04)
F5 | D9 | AC | |
---|---|---|---|
RGB | 245 | 217 | 172 |
HSL | 37° | 78.49% | 81.76% |
HSB/HSV | 37° | 29.80% | 96.08% |
CMYK | 0.00% | 11.43% | 29.80% |
3.92% |
HEX | F5 | D9 | AC |
Decimal | 245 | 217 | 172 |
Binary | 11110101 | 11011001 | 10101100 |
Octal | 365 | 331 | 254 |
Examples of css and html codes for elements with #F5D9AC color. Also use rgb(245,217,172) instead hex code.
.myTextColor { color: #F5D9AC; }
<p style="color:#F5D9AC">This sample text font color is #F5D9AC.</p>
This text font color is #F5D9AC.
.myBgColor { background-color: #F5D9AC; }
<div style="background-color:#F5D9AC">Inner text</div>
This div background color is #F5D9AC.
.myBorderColor { border: 1px solid #F5D9AC; }
<div style="border:3px solid #F5D9AC">Div</div>
This div border color is #F5D9AC.
.myOpacity80 { color: #F5D9AC; opacity: 0.8; }
<p style="color:#F5D9AC;opacity:0.8;">80%</p>
Text with #F5D9AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5D9AC;}
<p style="text-shadow: 3px 3px 1px #F5D9AC">Text here.</p>
This text has shadow with #F5D9AC color.
.textShadow {text-shadow: 3px 3px 1px #F5D9AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5D9AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5D9AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5D9AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5D9AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5D9AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5D9AC; -webkit-box-shadow: 1px 1px 3px 2px #F5D9AC; box-shadow: 1px 1px 3px 2px #F5D9AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5D9AC; -webkit-box-shadow: 1px 1px 3px 2px #F5D9AC; box-shadow:1px 1px 3px 2px #F5D9AC;">
Div content here</div>
This text has color #F5D9AC on black background.
This text has color #F5D9AC on white background.
This text has black color on #F5D9AC background.
This text has white color on #F5D9AC background.