HEX: #F1EBBD
RGB: (241,235,189)
#F1EBBD contains red, green and blue colors in about the same proportion. Web safe color of #F1EBBD is #FFFFCC (or #FFC).
#F1EBBD color RGB value is (241,235,189).
RGB: (241,235,189) (95%,92%,74%)
R 241 of 255 = 95%
G 235 of 255 = 92%
B 189 of 255 = 74%
R + G + B ~ 87%. #F1EBBD is light color.
R + G + B =
241 + 235 + 189 = 665 (100%)
R 241 of 665 ~ 36.24%
G 235 of 665 ~ 35.34%
B 189 of 665 ~ 28.42%
#F1EBBD color CMYK value is (0,2,22,5).
CMYK: (0,2,22,5) C0M2Y22K5 (0%,2%,22%,5%) (0.00/0.02/0.22/0.05)
F1 | EB | BD | |
---|---|---|---|
RGB | 241 | 235 | 189 |
HSL | 53° | 65.00% | 84.31% |
HSB/HSV | 53° | 21.58% | 94.51% |
CMYK | 0.00% | 2.49% | 21.58% |
5.49% |
HEX | F1 | EB | BD |
Decimal | 241 | 235 | 189 |
Binary | 11110001 | 11101011 | 10111101 |
Octal | 361 | 353 | 275 |
Examples of css and html codes for elements with #F1EBBD color. Also use rgb(241,235,189) instead hex code.
.myTextColor { color: #F1EBBD; }
<p style="color:#F1EBBD">This sample text font color is #F1EBBD.</p>
This text font color is #F1EBBD.
.myBgColor { background-color: #F1EBBD; }
<div style="background-color:#F1EBBD">Inner text</div>
This div background color is #F1EBBD.
.myBorderColor { border: 1px solid #F1EBBD; }
<div style="border:3px solid #F1EBBD">Div</div>
This div border color is #F1EBBD.
.myOpacity80 { color: #F1EBBD; opacity: 0.8; }
<p style="color:#F1EBBD;opacity:0.8;">80%</p>
Text with #F1EBBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F1EBBD;}
<p style="text-shadow: 3px 3px 1px #F1EBBD">Text here.</p>
This text has shadow with #F1EBBD color.
.textShadow {text-shadow: 3px 3px 1px #F1EBBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F1EBBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #F1EBBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F1EBBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F1EBBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #F1EBBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F1EBBD; -webkit-box-shadow: 1px 1px 3px 2px #F1EBBD; box-shadow: 1px 1px 3px 2px #F1EBBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F1EBBD; -webkit-box-shadow: 1px 1px 3px 2px #F1EBBD; box-shadow:1px 1px 3px 2px #F1EBBD;">
Div content here</div>
This text has color #F1EBBD on black background.
This text has color #F1EBBD on white background.
This text has black color on #F1EBBD background.
This text has white color on #F1EBBD background.