HEX: #F5D5AD
RGB: (245,213,173)
#F5D5AD contains mainly red and green colors. Web safe color of #F5D5AD is #FFCC99 (or #FC9).
#F5D5AD color RGB value is (245,213,173).
RGB: (245,213,173) (96%,84%,68%)
R 245 of 255 = 96%
G 213 of 255 = 84%
B 173 of 255 = 68%
R + G + B ~ 83%. #F5D5AD is quite light color.
R + G + B =
245 + 213 + 173 = 631 (100%)
R 245 of 631 ~ 38.83%
G 213 of 631 ~ 33.76%
B 173 of 631 ~ 27.42%
#F5D5AD color CMYK value is (0,13,29,4).
CMYK: (0,13,29,4) C0M13Y29K4 (0%,13%,29%,4%) (0.00/0.13/0.29/0.04)
F5 | D5 | AD | |
---|---|---|---|
RGB | 245 | 213 | 173 |
HSL | 33° | 78.26% | 81.96% |
HSB/HSV | 33° | 29.39% | 96.08% |
CMYK | 0.00% | 13.06% | 29.39% |
3.92% |
HEX | F5 | D5 | AD |
Decimal | 245 | 213 | 173 |
Binary | 11110101 | 11010101 | 10101101 |
Octal | 365 | 325 | 255 |
Examples of css and html codes for elements with #F5D5AD color. Also use rgb(245,213,173) instead hex code.
.myTextColor { color: #F5D5AD; }
<p style="color:#F5D5AD">This sample text font color is #F5D5AD.</p>
This text font color is #F5D5AD.
.myBgColor { background-color: #F5D5AD; }
<div style="background-color:#F5D5AD">Inner text</div>
This div background color is #F5D5AD.
.myBorderColor { border: 1px solid #F5D5AD; }
<div style="border:3px solid #F5D5AD">Div</div>
This div border color is #F5D5AD.
.myOpacity80 { color: #F5D5AD; opacity: 0.8; }
<p style="color:#F5D5AD;opacity:0.8;">80%</p>
Text with #F5D5AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5D5AD;}
<p style="text-shadow: 3px 3px 1px #F5D5AD">Text here.</p>
This text has shadow with #F5D5AD color.
.textShadow {text-shadow: 3px 3px 1px #F5D5AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5D5AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5D5AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5D5AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5D5AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5D5AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5D5AD; -webkit-box-shadow: 1px 1px 3px 2px #F5D5AD; box-shadow: 1px 1px 3px 2px #F5D5AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5D5AD; -webkit-box-shadow: 1px 1px 3px 2px #F5D5AD; box-shadow:1px 1px 3px 2px #F5D5AD;">
Div content here</div>
This text has color #F5D5AD on black background.
This text has color #F5D5AD on white background.
This text has black color on #F5D5AD background.
This text has white color on #F5D5AD background.