HEX: #FD475B
RGB: (253,71,91)
#FD475B contains mainly red color. Web safe color of #FD475B is #FF3366 (or #F36).
#FD475B color RGB value is (253,71,91).
RGB: (253,71,91) (99%,28%,36%)
R 253 of 255 = 99%
G 71 of 255 = 28%
B 91 of 255 = 36%
R + G + B ~ 54%. #FD475B is middle color (not dark and not light).
R + G + B =
253 + 71 + 91 = 415 (100%)
R 253 of 415 ~ 60.96%
G 71 of 415 ~ 17.11%
B 91 of 415 ~ 21.93%
#FD475B color CMYK value is (0,72,64,1).
CMYK: (0,72,64,1) C0M72Y64K1 (0%,72%,64%,1%) (0.00/0.72/0.64/0.01)
FD | 47 | 5B | |
---|---|---|---|
RGB | 253 | 71 | 91 |
HSL | 353° | 97.85% | 63.53% |
HSB/HSV | 353° | 71.94% | 99.22% |
CMYK | 0.00% | 71.94% | 64.03% |
0.78% |
HEX | FD | 47 | 5B |
Decimal | 253 | 71 | 91 |
Binary | 11111101 | 1000111 | 1011011 |
Octal | 375 | 107 | 133 |
Examples of css and html codes for elements with #FD475B color. Also use rgb(253,71,91) instead hex code.
.myTextColor { color: #FD475B; }
<p style="color:#FD475B">This sample text font color is #FD475B.</p>
This text font color is #FD475B.
.myBgColor { background-color: #FD475B; }
<div style="background-color:#FD475B">Inner text</div>
This div background color is #FD475B.
.myBorderColor { border: 1px solid #FD475B; }
<div style="border:3px solid #FD475B">Div</div>
This div border color is #FD475B.
.myOpacity80 { color: #FD475B; opacity: 0.8; }
<p style="color:#FD475B;opacity:0.8;">80%</p>
Text with #FD475B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FD475B;}
<p style="text-shadow: 3px 3px 1px #FD475B">Text here.</p>
This text has shadow with #FD475B color.
.textShadow {text-shadow: 3px 3px 1px #FD475B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FD475B, 5px 5px 20px red">Text here.</p>
This text has shadow with #FD475B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FD475B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FD475B, Direction=45, Strength=4)">Text</p>
This text has shadow with #FD475B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FD475B; -webkit-box-shadow: 1px 1px 3px 2px #FD475B; box-shadow: 1px 1px 3px 2px #FD475B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FD475B; -webkit-box-shadow: 1px 1px 3px 2px #FD475B; box-shadow:1px 1px 3px 2px #FD475B;">
Div content here</div>
This text has color #FD475B on black background.
This text has color #FD475B on white background.
This text has black color on #FD475B background.
This text has white color on #FD475B background.