HEX: #475255
RGB: (71,82,85)
#475255 contains red, green and blue colors in about the same proportion. Web safe color of #475255 is #336666 (or #366).
#475255 color RGB value is (71,82,85).
RGB: (71,82,85) (28%,32%,33%)
R 71 of 255 = 28%
G 82 of 255 = 32%
B 85 of 255 = 33%
R + G + B ~ 31%. #475255 is quite dark color.
R + G + B =
71 + 82 + 85 = 238 (100%)
R 71 of 238 ~ 29.83%
G 82 of 238 ~ 34.45%
B 85 of 238 ~ 35.71%
#475255 color CMYK value is (16,4,0,67).
CMYK: (16,4,0,67) C16M4Y0K67 (16%,4%,0%,67%) (0.16/0.04/0.00/0.67)
47 | 52 | 55 | |
---|---|---|---|
RGB | 71 | 82 | 85 |
HSL | 193° | 8.97% | 30.59% |
HSB/HSV | 193° | 16.47% | 33.33% |
CMYK | 16.47% | 3.53% | 0.00% |
66.67% |
HEX | 47 | 52 | 55 |
Decimal | 71 | 82 | 85 |
Binary | 1000111 | 1010010 | 1010101 |
Octal | 107 | 122 | 125 |
Examples of css and html codes for elements with #475255 color. Also use rgb(71,82,85) instead hex code.
.myTextColor { color: #475255; }
<p style="color:#475255">This sample text font color is #475255.</p>
This text font color is #475255.
.myBgColor { background-color: #475255; }
<div style="background-color:#475255">Inner text</div>
This div background color is #475255.
.myBorderColor { border: 1px solid #475255; }
<div style="border:3px solid #475255">Div</div>
This div border color is #475255.
.myOpacity80 { color: #475255; opacity: 0.8; }
<p style="color:#475255;opacity:0.8;">80%</p>
Text with #475255 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #475255;}
<p style="text-shadow: 3px 3px 1px #475255">Text here.</p>
This text has shadow with #475255 color.
.textShadow {text-shadow: 3px 3px 1px #475255, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #475255, 5px 5px 20px red">Text here.</p>
This text has shadow with #475255 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#475255, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#475255, Direction=45, Strength=4)">Text</p>
This text has shadow with #475255 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #475255; -webkit-box-shadow: 1px 1px 3px 2px #475255; box-shadow: 1px 1px 3px 2px #475255; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #475255; -webkit-box-shadow: 1px 1px 3px 2px #475255; box-shadow:1px 1px 3px 2px #475255;">
Div content here</div>
This text has color #475255 on black background.
This text has color #475255 on white background.
This text has black color on #475255 background.
This text has white color on #475255 background.