HEX: #FDD480
RGB: (253,212,128)
#FDD480 contains mainly red and green colors. Web safe color of #FDD480 is #FFCC66 (or #FC6).
#FDD480 color RGB value is (253,212,128).
RGB: (253,212,128) (99%,83%,50%)
R 253 of 255 = 99%
G 212 of 255 = 83%
B 128 of 255 = 50%
R + G + B ~ 77%. #FDD480 is quite light color.
R + G + B =
253 + 212 + 128 = 593 (100%)
R 253 of 593 ~ 42.66%
G 212 of 593 ~ 35.75%
B 128 of 593 ~ 21.59%
#FDD480 color CMYK value is (0,16,49,1).
CMYK: (0,16,49,1) C0M16Y49K1 (0%,16%,49%,1%) (0.00/0.16/0.49/0.01)
FD | D4 | 80 | |
---|---|---|---|
RGB | 253 | 212 | 128 |
HSL | 40° | 96.90% | 74.71% |
HSB/HSV | 40° | 49.41% | 99.22% |
CMYK | 0.00% | 16.21% | 49.41% |
0.78% |
HEX | FD | D4 | 80 |
Decimal | 253 | 212 | 128 |
Binary | 11111101 | 11010100 | 10000000 |
Octal | 375 | 324 | 200 |
Examples of css and html codes for elements with #FDD480 color. Also use rgb(253,212,128) instead hex code.
.myTextColor { color: #FDD480; }
<p style="color:#FDD480">This sample text font color is #FDD480.</p>
This text font color is #FDD480.
.myBgColor { background-color: #FDD480; }
<div style="background-color:#FDD480">Inner text</div>
This div background color is #FDD480.
.myBorderColor { border: 1px solid #FDD480; }
<div style="border:3px solid #FDD480">Div</div>
This div border color is #FDD480.
.myOpacity80 { color: #FDD480; opacity: 0.8; }
<p style="color:#FDD480;opacity:0.8;">80%</p>
Text with #FDD480 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDD480;}
<p style="text-shadow: 3px 3px 1px #FDD480">Text here.</p>
This text has shadow with #FDD480 color.
.textShadow {text-shadow: 3px 3px 1px #FDD480, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDD480, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDD480 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDD480, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDD480, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDD480 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDD480; -webkit-box-shadow: 1px 1px 3px 2px #FDD480; box-shadow: 1px 1px 3px 2px #FDD480; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDD480; -webkit-box-shadow: 1px 1px 3px 2px #FDD480; box-shadow:1px 1px 3px 2px #FDD480;">
Div content here</div>
This text has color #FDD480 on black background.
This text has color #FDD480 on white background.
This text has black color on #FDD480 background.
This text has white color on #FDD480 background.