HEX: #476F5A
RGB: (71,111,90)
#476F5A contains red, green and blue colors in about the same proportion. Web safe color of #476F5A is #336666 (or #366).
#476F5A color RGB value is (71,111,90).
RGB: (71,111,90) (28%,44%,35%)
R 71 of 255 = 28%
G 111 of 255 = 44%
B 90 of 255 = 35%
R + G + B ~ 36%. #476F5A is quite dark color.
R + G + B =
71 + 111 + 90 = 272 (100%)
R 71 of 272 ~ 26.1%
G 111 of 272 ~ 40.81%
B 90 of 272 ~ 33.09%
#476F5A color CMYK value is (36,0,19,56).
CMYK: (36,0,19,56) C36M0Y19K56 (36%,0%,19%,56%) (0.36/0.00/0.19/0.56)
47 | 6F | 5A | |
---|---|---|---|
RGB | 71 | 111 | 90 |
HSL | 149° | 21.98% | 35.69% |
HSB/HSV | 149° | 36.04% | 43.53% |
CMYK | 36.04% | 0.00% | 18.92% |
56.47% |
HEX | 47 | 6F | 5A |
Decimal | 71 | 111 | 90 |
Binary | 1000111 | 1101111 | 1011010 |
Octal | 107 | 157 | 132 |
Examples of css and html codes for elements with #476F5A color. Also use rgb(71,111,90) instead hex code.
.myTextColor { color: #476F5A; }
<p style="color:#476F5A">This sample text font color is #476F5A.</p>
This text font color is #476F5A.
.myBgColor { background-color: #476F5A; }
<div style="background-color:#476F5A">Inner text</div>
This div background color is #476F5A.
.myBorderColor { border: 1px solid #476F5A; }
<div style="border:3px solid #476F5A">Div</div>
This div border color is #476F5A.
.myOpacity80 { color: #476F5A; opacity: 0.8; }
<p style="color:#476F5A;opacity:0.8;">80%</p>
Text with #476F5A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #476F5A;}
<p style="text-shadow: 3px 3px 1px #476F5A">Text here.</p>
This text has shadow with #476F5A color.
.textShadow {text-shadow: 3px 3px 1px #476F5A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #476F5A, 5px 5px 20px red">Text here.</p>
This text has shadow with #476F5A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#476F5A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#476F5A, Direction=45, Strength=4)">Text</p>
This text has shadow with #476F5A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #476F5A; -webkit-box-shadow: 1px 1px 3px 2px #476F5A; box-shadow: 1px 1px 3px 2px #476F5A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #476F5A; -webkit-box-shadow: 1px 1px 3px 2px #476F5A; box-shadow:1px 1px 3px 2px #476F5A;">
Div content here</div>
This text has color #476F5A on black background.
This text has color #476F5A on white background.
This text has black color on #476F5A background.
This text has white color on #476F5A background.