HEX: #FDC67A
RGB: (253,198,122)
#FDC67A contains mainly red and green colors. Web safe color of #FDC67A is #FFCC66 (or #FC6).
#FDC67A color RGB value is (253,198,122).
RGB: (253,198,122) (99%,78%,48%)
R 253 of 255 = 99%
G 198 of 255 = 78%
B 122 of 255 = 48%
R + G + B ~ 75%. #FDC67A is quite light color.
R + G + B =
253 + 198 + 122 = 573 (100%)
R 253 of 573 ~ 44.15%
G 198 of 573 ~ 34.55%
B 122 of 573 ~ 21.29%
#FDC67A color CMYK value is (0,22,52,1).
CMYK: (0,22,52,1) C0M22Y52K1 (0%,22%,52%,1%) (0.00/0.22/0.52/0.01)
FD | C6 | 7A | |
---|---|---|---|
RGB | 253 | 198 | 122 |
HSL | 35° | 97.04% | 73.53% |
HSB/HSV | 35° | 51.78% | 99.22% |
CMYK | 0.00% | 21.74% | 51.78% |
0.78% |
HEX | FD | C6 | 7A |
Decimal | 253 | 198 | 122 |
Binary | 11111101 | 11000110 | 1111010 |
Octal | 375 | 306 | 172 |
Examples of css and html codes for elements with #FDC67A color. Also use rgb(253,198,122) instead hex code.
.myTextColor { color: #FDC67A; }
<p style="color:#FDC67A">This sample text font color is #FDC67A.</p>
This text font color is #FDC67A.
.myBgColor { background-color: #FDC67A; }
<div style="background-color:#FDC67A">Inner text</div>
This div background color is #FDC67A.
.myBorderColor { border: 1px solid #FDC67A; }
<div style="border:3px solid #FDC67A">Div</div>
This div border color is #FDC67A.
.myOpacity80 { color: #FDC67A; opacity: 0.8; }
<p style="color:#FDC67A;opacity:0.8;">80%</p>
Text with #FDC67A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDC67A;}
<p style="text-shadow: 3px 3px 1px #FDC67A">Text here.</p>
This text has shadow with #FDC67A color.
.textShadow {text-shadow: 3px 3px 1px #FDC67A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDC67A, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDC67A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDC67A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDC67A, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDC67A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDC67A; -webkit-box-shadow: 1px 1px 3px 2px #FDC67A; box-shadow: 1px 1px 3px 2px #FDC67A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDC67A; -webkit-box-shadow: 1px 1px 3px 2px #FDC67A; box-shadow:1px 1px 3px 2px #FDC67A;">
Div content here</div>
This text has color #FDC67A on black background.
This text has color #FDC67A on white background.
This text has black color on #FDC67A background.
This text has white color on #FDC67A background.