HEX: #214711
RGB: (33,71,17)
#214711 contains red, green and blue colors in about the same proportion. Web safe color of #214711 is #333300 (or #330).
#214711 color RGB value is (33,71,17).
RGB: (33,71,17) (13%,28%,7%)
R 33 of 255 = 13%
G 71 of 255 = 28%
B 17 of 255 = 7%
R + G + B ~ 16%. #214711 is dark color.
R + G + B =
33 + 71 + 17 = 121 (100%)
R 33 of 121 ~ 27.27%
G 71 of 121 ~ 58.68%
B 17 of 121 ~ 14.05%
#214711 color CMYK value is (54,0,76,72).
CMYK: (54,0,76,72) C54M0Y76K72 (54%,0%,76%,72%) (0.54/0.00/0.76/0.72)
21 | 47 | 11 | |
---|---|---|---|
RGB | 33 | 71 | 17 |
HSL | 102° | 61.36% | 17.25% |
HSB/HSV | 102° | 76.06% | 27.84% |
CMYK | 53.52% | 0.00% | 76.06% |
72.16% |
HEX | 21 | 47 | 11 |
Decimal | 33 | 71 | 17 |
Binary | 100001 | 1000111 | 10001 |
Octal | 41 | 107 | 21 |
Examples of css and html codes for elements with #214711 color. Also use rgb(33,71,17) instead hex code.
.myTextColor { color: #214711; }
<p style="color:#214711">This sample text font color is #214711.</p>
This text font color is #214711.
.myBgColor { background-color: #214711; }
<div style="background-color:#214711">Inner text</div>
This div background color is #214711.
.myBorderColor { border: 1px solid #214711; }
<div style="border:3px solid #214711">Div</div>
This div border color is #214711.
.myOpacity80 { color: #214711; opacity: 0.8; }
<p style="color:#214711;opacity:0.8;">80%</p>
Text with #214711 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #214711;}
<p style="text-shadow: 3px 3px 1px #214711">Text here.</p>
This text has shadow with #214711 color.
.textShadow {text-shadow: 3px 3px 1px #214711, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #214711, 5px 5px 20px red">Text here.</p>
This text has shadow with #214711 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#214711, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#214711, Direction=45, Strength=4)">Text</p>
This text has shadow with #214711 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #214711; -webkit-box-shadow: 1px 1px 3px 2px #214711; box-shadow: 1px 1px 3px 2px #214711; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #214711; -webkit-box-shadow: 1px 1px 3px 2px #214711; box-shadow:1px 1px 3px 2px #214711;">
Div content here</div>
This text has color #214711 on black background.
This text has color #214711 on white background.
This text has black color on #214711 background.
This text has white color on #214711 background.