HEX: #FCBE03
RGB: (252,190,3)
#FCBE03 contains mainly red color. Web safe color of #FCBE03 is #FFCC00 (or #FC0).
#FCBE03 color RGB value is (252,190,3).
RGB: (252,190,3) (99%,75%,1%)
R 252 of 255 = 99%
G 190 of 255 = 75%
B 3 of 255 = 1%
R + G + B ~ 58%. #FCBE03 is middle color (not dark and not light).
R + G + B =
252 + 190 + 3 = 445 (100%)
R 252 of 445 ~ 56.63%
G 190 of 445 ~ 42.7%
B 3 of 445 ~ 0.67%
#FCBE03 color CMYK value is (0,25,99,1).
CMYK: (0,25,99,1) C0M25Y99K1 (0%,25%,99%,1%) (0.00/0.25/0.99/0.01)
FC | BE | 03 | |
---|---|---|---|
RGB | 252 | 190 | 3 |
HSL | 45° | 97.65% | 50.00% |
HSB/HSV | 45° | 98.81% | 98.82% |
CMYK | 0.00% | 24.60% | 98.81% |
1.18% |
HEX | FC | BE | 03 |
Decimal | 252 | 190 | 3 |
Binary | 11111100 | 10111110 | 11 |
Octal | 374 | 276 | 3 |
Examples of css and html codes for elements with #FCBE03 color. Also use rgb(252,190,3) instead hex code.
.myTextColor { color: #FCBE03; }
<p style="color:#FCBE03">This sample text font color is #FCBE03.</p>
This text font color is #FCBE03.
.myBgColor { background-color: #FCBE03; }
<div style="background-color:#FCBE03">Inner text</div>
This div background color is #FCBE03.
.myBorderColor { border: 1px solid #FCBE03; }
<div style="border:3px solid #FCBE03">Div</div>
This div border color is #FCBE03.
.myOpacity80 { color: #FCBE03; opacity: 0.8; }
<p style="color:#FCBE03;opacity:0.8;">80%</p>
Text with #FCBE03 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCBE03;}
<p style="text-shadow: 3px 3px 1px #FCBE03">Text here.</p>
This text has shadow with #FCBE03 color.
.textShadow {text-shadow: 3px 3px 1px #FCBE03, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCBE03, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCBE03 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCBE03, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCBE03, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCBE03 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCBE03; -webkit-box-shadow: 1px 1px 3px 2px #FCBE03; box-shadow: 1px 1px 3px 2px #FCBE03; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCBE03; -webkit-box-shadow: 1px 1px 3px 2px #FCBE03; box-shadow:1px 1px 3px 2px #FCBE03;">
Div content here</div>
This text has color #FCBE03 on black background.
This text has color #FCBE03 on white background.
This text has black color on #FCBE03 background.
This text has white color on #FCBE03 background.