HEX: #475964
RGB: (71,89,100)
#475964 contains red, green and blue colors in about the same proportion. Web safe color of #475964 is #336666 (or #366).
#475964 color RGB value is (71,89,100).
RGB: (71,89,100) (28%,35%,39%)
R 71 of 255 = 28%
G 89 of 255 = 35%
B 100 of 255 = 39%
R + G + B ~ 34%. #475964 is quite dark color.
R + G + B =
71 + 89 + 100 = 260 (100%)
R 71 of 260 ~ 27.31%
G 89 of 260 ~ 34.23%
B 100 of 260 ~ 38.46%
#475964 color CMYK value is (29,11,0,61).
CMYK: (29,11,0,61) C29M11Y0K61 (29%,11%,0%,61%) (0.29/0.11/0.00/0.61)
47 | 59 | 64 | |
---|---|---|---|
RGB | 71 | 89 | 100 |
HSL | 203° | 16.96% | 33.53% |
HSB/HSV | 203° | 29.00% | 39.22% |
CMYK | 29.00% | 11.00% | 0.00% |
60.78% |
HEX | 47 | 59 | 64 |
Decimal | 71 | 89 | 100 |
Binary | 1000111 | 1011001 | 1100100 |
Octal | 107 | 131 | 144 |
Examples of css and html codes for elements with #475964 color. Also use rgb(71,89,100) instead hex code.
.myTextColor { color: #475964; }
<p style="color:#475964">This sample text font color is #475964.</p>
This text font color is #475964.
.myBgColor { background-color: #475964; }
<div style="background-color:#475964">Inner text</div>
This div background color is #475964.
.myBorderColor { border: 1px solid #475964; }
<div style="border:3px solid #475964">Div</div>
This div border color is #475964.
.myOpacity80 { color: #475964; opacity: 0.8; }
<p style="color:#475964;opacity:0.8;">80%</p>
Text with #475964 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #475964;}
<p style="text-shadow: 3px 3px 1px #475964">Text here.</p>
This text has shadow with #475964 color.
.textShadow {text-shadow: 3px 3px 1px #475964, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #475964, 5px 5px 20px red">Text here.</p>
This text has shadow with #475964 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#475964, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#475964, Direction=45, Strength=4)">Text</p>
This text has shadow with #475964 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #475964; -webkit-box-shadow: 1px 1px 3px 2px #475964; box-shadow: 1px 1px 3px 2px #475964; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #475964; -webkit-box-shadow: 1px 1px 3px 2px #475964; box-shadow:1px 1px 3px 2px #475964;">
Div content here</div>
This text has color #475964 on black background.
This text has color #475964 on white background.
This text has black color on #475964 background.
This text has white color on #475964 background.