HEX: #475450
RGB: (71,84,80)
#475450 contains red, green and blue colors in about the same proportion. Web safe color of #475450 is #336666 (or #366).
#475450 color RGB value is (71,84,80).
RGB: (71,84,80) (28%,33%,31%)
R 71 of 255 = 28%
G 84 of 255 = 33%
B 80 of 255 = 31%
R + G + B ~ 31%. #475450 is quite dark color.
R + G + B =
71 + 84 + 80 = 235 (100%)
R 71 of 235 ~ 30.21%
G 84 of 235 ~ 35.74%
B 80 of 235 ~ 34.04%
#475450 color CMYK value is (15,0,5,67).
CMYK: (15,0,5,67) C15M0Y5K67 (15%,0%,5%,67%) (0.15/0.00/0.05/0.67)
47 | 54 | 50 | |
---|---|---|---|
RGB | 71 | 84 | 80 |
HSL | 162° | 8.39% | 30.39% |
HSB/HSV | 162° | 15.48% | 32.94% |
CMYK | 15.48% | 0.00% | 4.76% |
67.06% |
HEX | 47 | 54 | 50 |
Decimal | 71 | 84 | 80 |
Binary | 1000111 | 1010100 | 1010000 |
Octal | 107 | 124 | 120 |
Examples of css and html codes for elements with #475450 color. Also use rgb(71,84,80) instead hex code.
.myTextColor { color: #475450; }
<p style="color:#475450">This sample text font color is #475450.</p>
This text font color is #475450.
.myBgColor { background-color: #475450; }
<div style="background-color:#475450">Inner text</div>
This div background color is #475450.
.myBorderColor { border: 1px solid #475450; }
<div style="border:3px solid #475450">Div</div>
This div border color is #475450.
.myOpacity80 { color: #475450; opacity: 0.8; }
<p style="color:#475450;opacity:0.8;">80%</p>
Text with #475450 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #475450;}
<p style="text-shadow: 3px 3px 1px #475450">Text here.</p>
This text has shadow with #475450 color.
.textShadow {text-shadow: 3px 3px 1px #475450, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #475450, 5px 5px 20px red">Text here.</p>
This text has shadow with #475450 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#475450, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#475450, Direction=45, Strength=4)">Text</p>
This text has shadow with #475450 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #475450; -webkit-box-shadow: 1px 1px 3px 2px #475450; box-shadow: 1px 1px 3px 2px #475450; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #475450; -webkit-box-shadow: 1px 1px 3px 2px #475450; box-shadow:1px 1px 3px 2px #475450;">
Div content here</div>
This text has color #475450 on black background.
This text has color #475450 on white background.
This text has black color on #475450 background.
This text has white color on #475450 background.