HEX: #FDC965
RGB: (253,201,101)
#FDC965 contains mainly red and green colors. Web safe color of #FDC965 is #FFCC66 (or #FC6).
#FDC965 color RGB value is (253,201,101).
RGB: (253,201,101) (99%,79%,40%)
R 253 of 255 = 99%
G 201 of 255 = 79%
B 101 of 255 = 40%
R + G + B ~ 73%. #FDC965 is quite light color.
R + G + B =
253 + 201 + 101 = 555 (100%)
R 253 of 555 ~ 45.59%
G 201 of 555 ~ 36.22%
B 101 of 555 ~ 18.2%
#FDC965 color CMYK value is (0,21,60,1).
CMYK: (0,21,60,1) C0M21Y60K1 (0%,21%,60%,1%) (0.00/0.21/0.60/0.01)
FD | C9 | 65 | |
---|---|---|---|
RGB | 253 | 201 | 101 |
HSL | 39° | 97.44% | 69.41% |
HSB/HSV | 39° | 60.08% | 99.22% |
CMYK | 0.00% | 20.55% | 60.08% |
0.78% |
HEX | FD | C9 | 65 |
Decimal | 253 | 201 | 101 |
Binary | 11111101 | 11001001 | 1100101 |
Octal | 375 | 311 | 145 |
Examples of css and html codes for elements with #FDC965 color. Also use rgb(253,201,101) instead hex code.
.myTextColor { color: #FDC965; }
<p style="color:#FDC965">This sample text font color is #FDC965.</p>
This text font color is #FDC965.
.myBgColor { background-color: #FDC965; }
<div style="background-color:#FDC965">Inner text</div>
This div background color is #FDC965.
.myBorderColor { border: 1px solid #FDC965; }
<div style="border:3px solid #FDC965">Div</div>
This div border color is #FDC965.
.myOpacity80 { color: #FDC965; opacity: 0.8; }
<p style="color:#FDC965;opacity:0.8;">80%</p>
Text with #FDC965 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDC965;}
<p style="text-shadow: 3px 3px 1px #FDC965">Text here.</p>
This text has shadow with #FDC965 color.
.textShadow {text-shadow: 3px 3px 1px #FDC965, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDC965, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDC965 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDC965, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDC965, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDC965 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDC965; -webkit-box-shadow: 1px 1px 3px 2px #FDC965; box-shadow: 1px 1px 3px 2px #FDC965; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDC965; -webkit-box-shadow: 1px 1px 3px 2px #FDC965; box-shadow:1px 1px 3px 2px #FDC965;">
Div content here</div>
This text has color #FDC965 on black background.
This text has color #FDC965 on white background.
This text has black color on #FDC965 background.
This text has white color on #FDC965 background.