HEX: #F5EACB
RGB: (245,234,203)
#F5EACB contains red, green and blue colors in about the same proportion. Web safe color of #F5EACB is #FFFFCC (or #FFC).
#F5EACB color RGB value is (245,234,203).
RGB: (245,234,203) (96%,92%,80%)
R 245 of 255 = 96%
G 234 of 255 = 92%
B 203 of 255 = 80%
R + G + B ~ 89%. #F5EACB is light color.
R + G + B =
245 + 234 + 203 = 682 (100%)
R 245 of 682 ~ 35.92%
G 234 of 682 ~ 34.31%
B 203 of 682 ~ 29.77%
#F5EACB color CMYK value is (0,4,17,4).
CMYK: (0,4,17,4) C0M4Y17K4 (0%,4%,17%,4%) (0.00/0.04/0.17/0.04)
F5 | EA | CB | |
---|---|---|---|
RGB | 245 | 234 | 203 |
HSL | 44° | 67.74% | 87.84% |
HSB/HSV | 44° | 17.14% | 96.08% |
CMYK | 0.00% | 4.49% | 17.14% |
3.92% |
HEX | F5 | EA | CB |
Decimal | 245 | 234 | 203 |
Binary | 11110101 | 11101010 | 11001011 |
Octal | 365 | 352 | 313 |
Examples of css and html codes for elements with #F5EACB color. Also use rgb(245,234,203) instead hex code.
.myTextColor { color: #F5EACB; }
<p style="color:#F5EACB">This sample text font color is #F5EACB.</p>
This text font color is #F5EACB.
.myBgColor { background-color: #F5EACB; }
<div style="background-color:#F5EACB">Inner text</div>
This div background color is #F5EACB.
.myBorderColor { border: 1px solid #F5EACB; }
<div style="border:3px solid #F5EACB">Div</div>
This div border color is #F5EACB.
.myOpacity80 { color: #F5EACB; opacity: 0.8; }
<p style="color:#F5EACB;opacity:0.8;">80%</p>
Text with #F5EACB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5EACB;}
<p style="text-shadow: 3px 3px 1px #F5EACB">Text here.</p>
This text has shadow with #F5EACB color.
.textShadow {text-shadow: 3px 3px 1px #F5EACB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5EACB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5EACB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5EACB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5EACB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5EACB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5EACB; -webkit-box-shadow: 1px 1px 3px 2px #F5EACB; box-shadow: 1px 1px 3px 2px #F5EACB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5EACB; -webkit-box-shadow: 1px 1px 3px 2px #F5EACB; box-shadow:1px 1px 3px 2px #F5EACB;">
Div content here</div>
This text has color #F5EACB on black background.
This text has color #F5EACB on white background.
This text has black color on #F5EACB background.
This text has white color on #F5EACB background.