HEX: #F1BE76
RGB: (241,190,118)
#F1BE76 contains mainly red and green colors. Web safe color of #F1BE76 is #FFCC66 (or #FC6).
#F1BE76 color RGB value is (241,190,118).
RGB: (241,190,118) (95%,75%,46%)
R 241 of 255 = 95%
G 190 of 255 = 75%
B 118 of 255 = 46%
R + G + B ~ 72%. #F1BE76 is quite light color.
R + G + B =
241 + 190 + 118 = 549 (100%)
R 241 of 549 ~ 43.9%
G 190 of 549 ~ 34.61%
B 118 of 549 ~ 21.49%
#F1BE76 color CMYK value is (0,21,51,5).
CMYK: (0,21,51,5) C0M21Y51K5 (0%,21%,51%,5%) (0.00/0.21/0.51/0.05)
F1 | BE | 76 | |
---|---|---|---|
RGB | 241 | 190 | 118 |
HSL | 35° | 81.46% | 70.39% |
HSB/HSV | 35° | 51.04% | 94.51% |
CMYK | 0.00% | 21.16% | 51.04% |
5.49% |
HEX | F1 | BE | 76 |
Decimal | 241 | 190 | 118 |
Binary | 11110001 | 10111110 | 1110110 |
Octal | 361 | 276 | 166 |
Examples of css and html codes for elements with #F1BE76 color. Also use rgb(241,190,118) instead hex code.
.myTextColor { color: #F1BE76; }
<p style="color:#F1BE76">This sample text font color is #F1BE76.</p>
This text font color is #F1BE76.
.myBgColor { background-color: #F1BE76; }
<div style="background-color:#F1BE76">Inner text</div>
This div background color is #F1BE76.
.myBorderColor { border: 1px solid #F1BE76; }
<div style="border:3px solid #F1BE76">Div</div>
This div border color is #F1BE76.
.myOpacity80 { color: #F1BE76; opacity: 0.8; }
<p style="color:#F1BE76;opacity:0.8;">80%</p>
Text with #F1BE76 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F1BE76;}
<p style="text-shadow: 3px 3px 1px #F1BE76">Text here.</p>
This text has shadow with #F1BE76 color.
.textShadow {text-shadow: 3px 3px 1px #F1BE76, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F1BE76, 5px 5px 20px red">Text here.</p>
This text has shadow with #F1BE76 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F1BE76, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F1BE76, Direction=45, Strength=4)">Text</p>
This text has shadow with #F1BE76 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F1BE76; -webkit-box-shadow: 1px 1px 3px 2px #F1BE76; box-shadow: 1px 1px 3px 2px #F1BE76; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F1BE76; -webkit-box-shadow: 1px 1px 3px 2px #F1BE76; box-shadow:1px 1px 3px 2px #F1BE76;">
Div content here</div>
This text has color #F1BE76 on black background.
This text has color #F1BE76 on white background.
This text has black color on #F1BE76 background.
This text has white color on #F1BE76 background.