HEX: #FCD532
RGB: (252,213,50)
#FCD532 contains mainly red and green colors. Web safe color of #FCD532 is #FFCC33 (or #FC3).
#FCD532 color RGB value is (252,213,50).
RGB: (252,213,50) (99%,84%,20%)
R 252 of 255 = 99%
G 213 of 255 = 84%
B 50 of 255 = 20%
R + G + B ~ 68%. #FCD532 is quite light color.
R + G + B =
252 + 213 + 50 = 515 (100%)
R 252 of 515 ~ 48.93%
G 213 of 515 ~ 41.36%
B 50 of 515 ~ 9.71%
#FCD532 color CMYK value is (0,15,80,1).
CMYK: (0,15,80,1) C0M15Y80K1 (0%,15%,80%,1%) (0.00/0.15/0.80/0.01)
FC | D5 | 32 | |
---|---|---|---|
RGB | 252 | 213 | 50 |
HSL | 48° | 97.12% | 59.22% |
HSB/HSV | 48° | 80.16% | 98.82% |
CMYK | 0.00% | 15.48% | 80.16% |
1.18% |
HEX | FC | D5 | 32 |
Decimal | 252 | 213 | 50 |
Binary | 11111100 | 11010101 | 110010 |
Octal | 374 | 325 | 62 |
Examples of css and html codes for elements with #FCD532 color. Also use rgb(252,213,50) instead hex code.
.myTextColor { color: #FCD532; }
<p style="color:#FCD532">This sample text font color is #FCD532.</p>
This text font color is #FCD532.
.myBgColor { background-color: #FCD532; }
<div style="background-color:#FCD532">Inner text</div>
This div background color is #FCD532.
.myBorderColor { border: 1px solid #FCD532; }
<div style="border:3px solid #FCD532">Div</div>
This div border color is #FCD532.
.myOpacity80 { color: #FCD532; opacity: 0.8; }
<p style="color:#FCD532;opacity:0.8;">80%</p>
Text with #FCD532 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCD532;}
<p style="text-shadow: 3px 3px 1px #FCD532">Text here.</p>
This text has shadow with #FCD532 color.
.textShadow {text-shadow: 3px 3px 1px #FCD532, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCD532, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCD532 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCD532, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCD532, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCD532 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCD532; -webkit-box-shadow: 1px 1px 3px 2px #FCD532; box-shadow: 1px 1px 3px 2px #FCD532; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCD532; -webkit-box-shadow: 1px 1px 3px 2px #FCD532; box-shadow:1px 1px 3px 2px #FCD532;">
Div content here</div>
This text has color #FCD532 on black background.
This text has color #FCD532 on white background.
This text has black color on #FCD532 background.
This text has white color on #FCD532 background.