HEX: #475A0D
RGB: (71,90,13)
#475A0D contains mainly red and green colors. Web safe color of #475A0D is #336600 (or #360).
#475A0D color RGB value is (71,90,13).
RGB: (71,90,13) (28%,35%,5%)
R 71 of 255 = 28%
G 90 of 255 = 35%
B 13 of 255 = 5%
R + G + B ~ 23%. #475A0D is dark color.
R + G + B =
71 + 90 + 13 = 174 (100%)
R 71 of 174 ~ 40.8%
G 90 of 174 ~ 51.72%
B 13 of 174 ~ 7.47%
#475A0D color CMYK value is (21,0,86,65).
CMYK: (21,0,86,65) C21M0Y86K65 (21%,0%,86%,65%) (0.21/0.00/0.86/0.65)
47 | 5A | 0D | |
---|---|---|---|
RGB | 71 | 90 | 13 |
HSL | 75° | 74.76% | 20.20% |
HSB/HSV | 75° | 85.56% | 35.29% |
CMYK | 21.11% | 0.00% | 85.56% |
64.71% |
HEX | 47 | 5A | 0D |
Decimal | 71 | 90 | 13 |
Binary | 1000111 | 1011010 | 1101 |
Octal | 107 | 132 | 15 |
Examples of css and html codes for elements with #475A0D color. Also use rgb(71,90,13) instead hex code.
.myTextColor { color: #475A0D; }
<p style="color:#475A0D">This sample text font color is #475A0D.</p>
This text font color is #475A0D.
.myBgColor { background-color: #475A0D; }
<div style="background-color:#475A0D">Inner text</div>
This div background color is #475A0D.
.myBorderColor { border: 1px solid #475A0D; }
<div style="border:3px solid #475A0D">Div</div>
This div border color is #475A0D.
.myOpacity80 { color: #475A0D; opacity: 0.8; }
<p style="color:#475A0D;opacity:0.8;">80%</p>
Text with #475A0D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #475A0D;}
<p style="text-shadow: 3px 3px 1px #475A0D">Text here.</p>
This text has shadow with #475A0D color.
.textShadow {text-shadow: 3px 3px 1px #475A0D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #475A0D, 5px 5px 20px red">Text here.</p>
This text has shadow with #475A0D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#475A0D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#475A0D, Direction=45, Strength=4)">Text</p>
This text has shadow with #475A0D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #475A0D; -webkit-box-shadow: 1px 1px 3px 2px #475A0D; box-shadow: 1px 1px 3px 2px #475A0D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #475A0D; -webkit-box-shadow: 1px 1px 3px 2px #475A0D; box-shadow:1px 1px 3px 2px #475A0D;">
Div content here</div>
This text has color #475A0D on black background.
This text has color #475A0D on white background.
This text has black color on #475A0D background.
This text has white color on #475A0D background.