HEX: #FD004A
RGB: (253,0,74)
#FD004A contains mainly red color. Web safe color of #FD004A is #FF0033 (or #F03).
#FD004A color RGB value is (253,0,74).
RGB: (253,0,74) (99%,0%,29%)
R 253 of 255 = 99%
G 0 of 255 = 0%
B 74 of 255 = 29%
R + G + B ~ 43%. #FD004A is middle color (not dark and not light).
R + G + B =
253 + 0 + 74 = 327 (100%)
R 253 of 327 ~ 77.37%
G 0 of 327 ~ 0%
B 74 of 327 ~ 22.63%
#FD004A color CMYK value is (0,100,71,1).
CMYK: (0,100,71,1) C0M100Y71K1 (0%,100%,71%,1%) (0.00/1.00/0.71/0.01)
FD | 00 | 4A | |
---|---|---|---|
RGB | 253 | 0 | 74 |
HSL | 342° | 100.00% | 49.61% |
HSB/HSV | 342° | 100.00% | 99.22% |
CMYK | 0.00% | 100.00% | 70.75% |
0.78% |
HEX | FD | 00 | 4A |
Decimal | 253 | 0 | 74 |
Binary | 11111101 | 0 | 1001010 |
Octal | 375 | 0 | 112 |
Examples of css and html codes for elements with #FD004A color. Also use rgb(253,0,74) instead hex code.
.myTextColor { color: #FD004A; }
<p style="color:#FD004A">This sample text font color is #FD004A.</p>
This text font color is #FD004A.
.myBgColor { background-color: #FD004A; }
<div style="background-color:#FD004A">Inner text</div>
This div background color is #FD004A.
.myBorderColor { border: 1px solid #FD004A; }
<div style="border:3px solid #FD004A">Div</div>
This div border color is #FD004A.
.myOpacity80 { color: #FD004A; opacity: 0.8; }
<p style="color:#FD004A;opacity:0.8;">80%</p>
Text with #FD004A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FD004A;}
<p style="text-shadow: 3px 3px 1px #FD004A">Text here.</p>
This text has shadow with #FD004A color.
.textShadow {text-shadow: 3px 3px 1px #FD004A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FD004A, 5px 5px 20px red">Text here.</p>
This text has shadow with #FD004A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FD004A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FD004A, Direction=45, Strength=4)">Text</p>
This text has shadow with #FD004A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FD004A; -webkit-box-shadow: 1px 1px 3px 2px #FD004A; box-shadow: 1px 1px 3px 2px #FD004A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FD004A; -webkit-box-shadow: 1px 1px 3px 2px #FD004A; box-shadow:1px 1px 3px 2px #FD004A;">
Div content here</div>
This text has color #FD004A on black background.
This text has color #FD004A on white background.
This text has black color on #FD004A background.
This text has white color on #FD004A background.