HEX: #FCAD29
RGB: (252,173,41)
#FCAD29 contains mainly red color. Web safe color of #FCAD29 is #FF9933 (or #F93).
#FCAD29 color RGB value is (252,173,41).
RGB: (252,173,41) (99%,68%,16%)
R 252 of 255 = 99%
G 173 of 255 = 68%
B 41 of 255 = 16%
R + G + B ~ 61%. #FCAD29 is quite light color.
R + G + B =
252 + 173 + 41 = 466 (100%)
R 252 of 466 ~ 54.08%
G 173 of 466 ~ 37.12%
B 41 of 466 ~ 8.8%
#FCAD29 color CMYK value is (0,31,84,1).
CMYK: (0,31,84,1) C0M31Y84K1 (0%,31%,84%,1%) (0.00/0.31/0.84/0.01)
FC | AD | 29 | |
---|---|---|---|
RGB | 252 | 173 | 41 |
HSL | 38° | 97.24% | 57.45% |
HSB/HSV | 38° | 83.73% | 98.82% |
CMYK | 0.00% | 31.35% | 83.73% |
1.18% |
HEX | FC | AD | 29 |
Decimal | 252 | 173 | 41 |
Binary | 11111100 | 10101101 | 101001 |
Octal | 374 | 255 | 51 |
Examples of css and html codes for elements with #FCAD29 color. Also use rgb(252,173,41) instead hex code.
.myTextColor { color: #FCAD29; }
<p style="color:#FCAD29">This sample text font color is #FCAD29.</p>
This text font color is #FCAD29.
.myBgColor { background-color: #FCAD29; }
<div style="background-color:#FCAD29">Inner text</div>
This div background color is #FCAD29.
.myBorderColor { border: 1px solid #FCAD29; }
<div style="border:3px solid #FCAD29">Div</div>
This div border color is #FCAD29.
.myOpacity80 { color: #FCAD29; opacity: 0.8; }
<p style="color:#FCAD29;opacity:0.8;">80%</p>
Text with #FCAD29 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCAD29;}
<p style="text-shadow: 3px 3px 1px #FCAD29">Text here.</p>
This text has shadow with #FCAD29 color.
.textShadow {text-shadow: 3px 3px 1px #FCAD29, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCAD29, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCAD29 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCAD29, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCAD29, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCAD29 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCAD29; -webkit-box-shadow: 1px 1px 3px 2px #FCAD29; box-shadow: 1px 1px 3px 2px #FCAD29; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCAD29; -webkit-box-shadow: 1px 1px 3px 2px #FCAD29; box-shadow:1px 1px 3px 2px #FCAD29;">
Div content here</div>
This text has color #FCAD29 on black background.
This text has color #FCAD29 on white background.
This text has black color on #FCAD29 background.
This text has white color on #FCAD29 background.