HEX: #FABC4C
RGB: (250,188,76)
#FABC4C contains mainly red color. Web safe color of #FABC4C is #FFCC33 (or #FC3).
#FABC4C color RGB value is (250,188,76).
RGB: (250,188,76) (98%,74%,30%)
R 250 of 255 = 98%
G 188 of 255 = 74%
B 76 of 255 = 30%
R + G + B ~ 67%. #FABC4C is quite light color.
R + G + B =
250 + 188 + 76 = 514 (100%)
R 250 of 514 ~ 48.64%
G 188 of 514 ~ 36.58%
B 76 of 514 ~ 14.79%
#FABC4C color CMYK value is (0,25,70,2).
CMYK: (0,25,70,2) C0M25Y70K2 (0%,25%,70%,2%) (0.00/0.25/0.70/0.02)
FA | BC | 4C | |
---|---|---|---|
RGB | 250 | 188 | 76 |
HSL | 39° | 94.57% | 63.92% |
HSB/HSV | 39° | 69.60% | 98.04% |
CMYK | 0.00% | 24.80% | 69.60% |
1.96% |
HEX | FA | BC | 4C |
Decimal | 250 | 188 | 76 |
Binary | 11111010 | 10111100 | 1001100 |
Octal | 372 | 274 | 114 |
Examples of css and html codes for elements with #FABC4C color. Also use rgb(250,188,76) instead hex code.
.myTextColor { color: #FABC4C; }
<p style="color:#FABC4C">This sample text font color is #FABC4C.</p>
This text font color is #FABC4C.
.myBgColor { background-color: #FABC4C; }
<div style="background-color:#FABC4C">Inner text</div>
This div background color is #FABC4C.
.myBorderColor { border: 1px solid #FABC4C; }
<div style="border:3px solid #FABC4C">Div</div>
This div border color is #FABC4C.
.myOpacity80 { color: #FABC4C; opacity: 0.8; }
<p style="color:#FABC4C;opacity:0.8;">80%</p>
Text with #FABC4C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FABC4C;}
<p style="text-shadow: 3px 3px 1px #FABC4C">Text here.</p>
This text has shadow with #FABC4C color.
.textShadow {text-shadow: 3px 3px 1px #FABC4C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FABC4C, 5px 5px 20px red">Text here.</p>
This text has shadow with #FABC4C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FABC4C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FABC4C, Direction=45, Strength=4)">Text</p>
This text has shadow with #FABC4C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FABC4C; -webkit-box-shadow: 1px 1px 3px 2px #FABC4C; box-shadow: 1px 1px 3px 2px #FABC4C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FABC4C; -webkit-box-shadow: 1px 1px 3px 2px #FABC4C; box-shadow:1px 1px 3px 2px #FABC4C;">
Div content here</div>
This text has color #FABC4C on black background.
This text has color #FABC4C on white background.
This text has black color on #FABC4C background.
This text has white color on #FABC4C background.