HEX: #F1A75B
RGB: (241,167,91)
#F1A75B contains mainly red color. Web safe color of #F1A75B is #FF9966 (or #F96).
#F1A75B color RGB value is (241,167,91).
RGB: (241,167,91) (95%,65%,36%)
R 241 of 255 = 95%
G 167 of 255 = 65%
B 91 of 255 = 36%
R + G + B ~ 65%. #F1A75B is quite light color.
R + G + B =
241 + 167 + 91 = 499 (100%)
R 241 of 499 ~ 48.3%
G 167 of 499 ~ 33.47%
B 91 of 499 ~ 18.24%
#F1A75B color CMYK value is (0,31,62,5).
CMYK: (0,31,62,5) C0M31Y62K5 (0%,31%,62%,5%) (0.00/0.31/0.62/0.05)
F1 | A7 | 5B | |
---|---|---|---|
RGB | 241 | 167 | 91 |
HSL | 30° | 84.27% | 65.10% |
HSB/HSV | 30° | 62.24% | 94.51% |
CMYK | 0.00% | 30.71% | 62.24% |
5.49% |
HEX | F1 | A7 | 5B |
Decimal | 241 | 167 | 91 |
Binary | 11110001 | 10100111 | 1011011 |
Octal | 361 | 247 | 133 |
Examples of css and html codes for elements with #F1A75B color. Also use rgb(241,167,91) instead hex code.
.myTextColor { color: #F1A75B; }
<p style="color:#F1A75B">This sample text font color is #F1A75B.</p>
This text font color is #F1A75B.
.myBgColor { background-color: #F1A75B; }
<div style="background-color:#F1A75B">Inner text</div>
This div background color is #F1A75B.
.myBorderColor { border: 1px solid #F1A75B; }
<div style="border:3px solid #F1A75B">Div</div>
This div border color is #F1A75B.
.myOpacity80 { color: #F1A75B; opacity: 0.8; }
<p style="color:#F1A75B;opacity:0.8;">80%</p>
Text with #F1A75B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F1A75B;}
<p style="text-shadow: 3px 3px 1px #F1A75B">Text here.</p>
This text has shadow with #F1A75B color.
.textShadow {text-shadow: 3px 3px 1px #F1A75B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F1A75B, 5px 5px 20px red">Text here.</p>
This text has shadow with #F1A75B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F1A75B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F1A75B, Direction=45, Strength=4)">Text</p>
This text has shadow with #F1A75B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F1A75B; -webkit-box-shadow: 1px 1px 3px 2px #F1A75B; box-shadow: 1px 1px 3px 2px #F1A75B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F1A75B; -webkit-box-shadow: 1px 1px 3px 2px #F1A75B; box-shadow:1px 1px 3px 2px #F1A75B;">
Div content here</div>
This text has color #F1A75B on black background.
This text has color #F1A75B on white background.
This text has black color on #F1A75B background.
This text has white color on #F1A75B background.