HEX: #F7EBAA
RGB: (247,235,170)
#F7EBAA contains mainly red and green colors. Web safe color of #F7EBAA is #FFFF99 (or #FF9).
#F7EBAA color RGB value is (247,235,170).
RGB: (247,235,170) (97%,92%,67%)
R 247 of 255 = 97%
G 235 of 255 = 92%
B 170 of 255 = 67%
R + G + B ~ 85%. #F7EBAA is quite light color.
R + G + B =
247 + 235 + 170 = 652 (100%)
R 247 of 652 ~ 37.88%
G 235 of 652 ~ 36.04%
B 170 of 652 ~ 26.07%
#F7EBAA color CMYK value is (0,5,31,3).
CMYK: (0,5,31,3) C0M5Y31K3 (0%,5%,31%,3%) (0.00/0.05/0.31/0.03)
F7 | EB | AA | |
---|---|---|---|
RGB | 247 | 235 | 170 |
HSL | 51° | 82.80% | 81.76% |
HSB/HSV | 51° | 31.17% | 96.86% |
CMYK | 0.00% | 4.86% | 31.17% |
3.14% |
HEX | F7 | EB | AA |
Decimal | 247 | 235 | 170 |
Binary | 11110111 | 11101011 | 10101010 |
Octal | 367 | 353 | 252 |
Examples of css and html codes for elements with #F7EBAA color. Also use rgb(247,235,170) instead hex code.
.myTextColor { color: #F7EBAA; }
<p style="color:#F7EBAA">This sample text font color is #F7EBAA.</p>
This text font color is #F7EBAA.
.myBgColor { background-color: #F7EBAA; }
<div style="background-color:#F7EBAA">Inner text</div>
This div background color is #F7EBAA.
.myBorderColor { border: 1px solid #F7EBAA; }
<div style="border:3px solid #F7EBAA">Div</div>
This div border color is #F7EBAA.
.myOpacity80 { color: #F7EBAA; opacity: 0.8; }
<p style="color:#F7EBAA;opacity:0.8;">80%</p>
Text with #F7EBAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F7EBAA;}
<p style="text-shadow: 3px 3px 1px #F7EBAA">Text here.</p>
This text has shadow with #F7EBAA color.
.textShadow {text-shadow: 3px 3px 1px #F7EBAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F7EBAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #F7EBAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F7EBAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F7EBAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #F7EBAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F7EBAA; -webkit-box-shadow: 1px 1px 3px 2px #F7EBAA; box-shadow: 1px 1px 3px 2px #F7EBAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F7EBAA; -webkit-box-shadow: 1px 1px 3px 2px #F7EBAA; box-shadow:1px 1px 3px 2px #F7EBAA;">
Div content here</div>
This text has color #F7EBAA on black background.
This text has color #F7EBAA on white background.
This text has black color on #F7EBAA background.
This text has white color on #F7EBAA background.