HEX: #F1BD71
RGB: (241,189,113)
#F1BD71 contains mainly red and green colors. Web safe color of #F1BD71 is #FFCC66 (or #FC6).
#F1BD71 color RGB value is (241,189,113).
RGB: (241,189,113) (95%,74%,44%)
R 241 of 255 = 95%
G 189 of 255 = 74%
B 113 of 255 = 44%
R + G + B ~ 71%. #F1BD71 is quite light color.
R + G + B =
241 + 189 + 113 = 543 (100%)
R 241 of 543 ~ 44.38%
G 189 of 543 ~ 34.81%
B 113 of 543 ~ 20.81%
#F1BD71 color CMYK value is (0,22,53,5).
CMYK: (0,22,53,5) C0M22Y53K5 (0%,22%,53%,5%) (0.00/0.22/0.53/0.05)
F1 | BD | 71 | |
---|---|---|---|
RGB | 241 | 189 | 113 |
HSL | 36° | 82.05% | 69.41% |
HSB/HSV | 36° | 53.11% | 94.51% |
CMYK | 0.00% | 21.58% | 53.11% |
5.49% |
HEX | F1 | BD | 71 |
Decimal | 241 | 189 | 113 |
Binary | 11110001 | 10111101 | 1110001 |
Octal | 361 | 275 | 161 |
Examples of css and html codes for elements with #F1BD71 color. Also use rgb(241,189,113) instead hex code.
.myTextColor { color: #F1BD71; }
<p style="color:#F1BD71">This sample text font color is #F1BD71.</p>
This text font color is #F1BD71.
.myBgColor { background-color: #F1BD71; }
<div style="background-color:#F1BD71">Inner text</div>
This div background color is #F1BD71.
.myBorderColor { border: 1px solid #F1BD71; }
<div style="border:3px solid #F1BD71">Div</div>
This div border color is #F1BD71.
.myOpacity80 { color: #F1BD71; opacity: 0.8; }
<p style="color:#F1BD71;opacity:0.8;">80%</p>
Text with #F1BD71 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F1BD71;}
<p style="text-shadow: 3px 3px 1px #F1BD71">Text here.</p>
This text has shadow with #F1BD71 color.
.textShadow {text-shadow: 3px 3px 1px #F1BD71, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F1BD71, 5px 5px 20px red">Text here.</p>
This text has shadow with #F1BD71 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F1BD71, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F1BD71, Direction=45, Strength=4)">Text</p>
This text has shadow with #F1BD71 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F1BD71; -webkit-box-shadow: 1px 1px 3px 2px #F1BD71; box-shadow: 1px 1px 3px 2px #F1BD71; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F1BD71; -webkit-box-shadow: 1px 1px 3px 2px #F1BD71; box-shadow:1px 1px 3px 2px #F1BD71;">
Div content here</div>
This text has color #F1BD71 on black background.
This text has color #F1BD71 on white background.
This text has black color on #F1BD71 background.
This text has white color on #F1BD71 background.