HEX: #F9D7BE
RGB: (249,215,190)
#F9D7BE contains red, green and blue colors in about the same proportion. Web safe color of #F9D7BE is #FFCCCC (or #FCC).
#F9D7BE color RGB value is (249,215,190).
RGB: (249,215,190) (98%,84%,75%)
R 249 of 255 = 98%
G 215 of 255 = 84%
B 190 of 255 = 75%
R + G + B ~ 86%. #F9D7BE is light color.
R + G + B =
249 + 215 + 190 = 654 (100%)
R 249 of 654 ~ 38.07%
G 215 of 654 ~ 32.87%
B 190 of 654 ~ 29.05%
#F9D7BE color CMYK value is (0,14,24,2).
CMYK: (0,14,24,2) C0M14Y24K2 (0%,14%,24%,2%) (0.00/0.14/0.24/0.02)
F9 | D7 | BE | |
---|---|---|---|
RGB | 249 | 215 | 190 |
HSL | 25° | 83.10% | 86.08% |
HSB/HSV | 25° | 23.69% | 97.65% |
CMYK | 0.00% | 13.65% | 23.69% |
2.35% |
HEX | F9 | D7 | BE |
Decimal | 249 | 215 | 190 |
Binary | 11111001 | 11010111 | 10111110 |
Octal | 371 | 327 | 276 |
Examples of css and html codes for elements with #F9D7BE color. Also use rgb(249,215,190) instead hex code.
.myTextColor { color: #F9D7BE; }
<p style="color:#F9D7BE">This sample text font color is #F9D7BE.</p>
This text font color is #F9D7BE.
.myBgColor { background-color: #F9D7BE; }
<div style="background-color:#F9D7BE">Inner text</div>
This div background color is #F9D7BE.
.myBorderColor { border: 1px solid #F9D7BE; }
<div style="border:3px solid #F9D7BE">Div</div>
This div border color is #F9D7BE.
.myOpacity80 { color: #F9D7BE; opacity: 0.8; }
<p style="color:#F9D7BE;opacity:0.8;">80%</p>
Text with #F9D7BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9D7BE;}
<p style="text-shadow: 3px 3px 1px #F9D7BE">Text here.</p>
This text has shadow with #F9D7BE color.
.textShadow {text-shadow: 3px 3px 1px #F9D7BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9D7BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9D7BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9D7BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9D7BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9D7BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9D7BE; -webkit-box-shadow: 1px 1px 3px 2px #F9D7BE; box-shadow: 1px 1px 3px 2px #F9D7BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9D7BE; -webkit-box-shadow: 1px 1px 3px 2px #F9D7BE; box-shadow:1px 1px 3px 2px #F9D7BE;">
Div content here</div>
This text has color #F9D7BE on black background.
This text has color #F9D7BE on white background.
This text has black color on #F9D7BE background.
This text has white color on #F9D7BE background.