HEX: #FFD424
RGB: (255,212,36)
#FFD424 contains mainly red and green colors. Web safe color of #FFD424 is #FFCC33 (or #FC3).
#FFD424 color RGB value is (255,212,36).
RGB: (255,212,36) (100%,83%,14%)
R 255 of 255 = 100%
G 212 of 255 = 83%
B 36 of 255 = 14%
R + G + B ~ 66%. #FFD424 is quite light color.
R + G + B =
255 + 212 + 36 = 503 (100%)
R 255 of 503 ~ 50.7%
G 212 of 503 ~ 42.15%
B 36 of 503 ~ 7.16%
#FFD424 color CMYK value is (0,17,86,0).
CMYK: (0,17,86,0) C0M17Y86K0 (0%,17%,86%,0%) (0.00/0.17/0.86/0.00)
FF | D4 | 24 | |
---|---|---|---|
RGB | 255 | 212 | 36 |
HSL | 48° | 100.00% | 57.06% |
HSB/HSV | 48° | 85.88% | 100.00% |
CMYK | 0.00% | 16.86% | 85.88% |
0.00% |
HEX | FF | D4 | 24 |
Decimal | 255 | 212 | 36 |
Binary | 11111111 | 11010100 | 100100 |
Octal | 377 | 324 | 44 |
Examples of css and html codes for elements with #FFD424 color. Also use rgb(255,212,36) instead hex code.
.myTextColor { color: #FFD424; }
<p style="color:#FFD424">This sample text font color is #FFD424.</p>
This text font color is #FFD424.
.myBgColor { background-color: #FFD424; }
<div style="background-color:#FFD424">Inner text</div>
This div background color is #FFD424.
.myBorderColor { border: 1px solid #FFD424; }
<div style="border:3px solid #FFD424">Div</div>
This div border color is #FFD424.
.myOpacity80 { color: #FFD424; opacity: 0.8; }
<p style="color:#FFD424;opacity:0.8;">80%</p>
Text with #FFD424 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFD424;}
<p style="text-shadow: 3px 3px 1px #FFD424">Text here.</p>
This text has shadow with #FFD424 color.
.textShadow {text-shadow: 3px 3px 1px #FFD424, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFD424, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFD424 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFD424, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFD424, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFD424 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFD424; -webkit-box-shadow: 1px 1px 3px 2px #FFD424; box-shadow: 1px 1px 3px 2px #FFD424; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFD424; -webkit-box-shadow: 1px 1px 3px 2px #FFD424; box-shadow:1px 1px 3px 2px #FFD424;">
Div content here</div>
This text has color #FFD424 on black background.
This text has color #FFD424 on white background.
This text has black color on #FFD424 background.
This text has white color on #FFD424 background.