HEX: #6E730B
RGB: (110,115,11)
#6E730B contains mainly red and green colors. Web safe color of #6E730B is #666600 (or #660).
#6E730B color RGB value is (110,115,11).
RGB: (110,115,11) (43%,45%,4%)
R 110 of 255 = 43%
G 115 of 255 = 45%
B 11 of 255 = 4%
R + G + B ~ 31%. #6E730B is quite dark color.
R + G + B =
110 + 115 + 11 = 236 (100%)
R 110 of 236 ~ 46.61%
G 115 of 236 ~ 48.73%
B 11 of 236 ~ 4.66%
#6E730B color CMYK value is (4,0,90,55).
CMYK: (4,0,90,55) C4M0Y90K55 (4%,0%,90%,55%) (0.04/0.00/0.90/0.55)
6E | 73 | 0B | |
---|---|---|---|
RGB | 110 | 115 | 11 |
HSL | 63° | 82.54% | 24.71% |
HSB/HSV | 63° | 90.43% | 45.10% |
CMYK | 4.35% | 0.00% | 90.43% |
54.90% |
HEX | 6E | 73 | 0B |
Decimal | 110 | 115 | 11 |
Binary | 1101110 | 1110011 | 1011 |
Octal | 156 | 163 | 13 |
Examples of css and html codes for elements with #6E730B color. Also use rgb(110,115,11) instead hex code.
.myTextColor { color: #6E730B; }
<p style="color:#6E730B">This sample text font color is #6E730B.</p>
This text font color is #6E730B.
.myBgColor { background-color: #6E730B; }
<div style="background-color:#6E730B">Inner text</div>
This div background color is #6E730B.
.myBorderColor { border: 1px solid #6E730B; }
<div style="border:3px solid #6E730B">Div</div>
This div border color is #6E730B.
.myOpacity80 { color: #6E730B; opacity: 0.8; }
<p style="color:#6E730B;opacity:0.8;">80%</p>
Text with #6E730B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E730B;}
<p style="text-shadow: 3px 3px 1px #6E730B">Text here.</p>
This text has shadow with #6E730B color.
.textShadow {text-shadow: 3px 3px 1px #6E730B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E730B, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E730B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E730B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E730B, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E730B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E730B; -webkit-box-shadow: 1px 1px 3px 2px #6E730B; box-shadow: 1px 1px 3px 2px #6E730B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E730B; -webkit-box-shadow: 1px 1px 3px 2px #6E730B; box-shadow:1px 1px 3px 2px #6E730B;">
Div content here</div>
This text has color #6E730B on black background.
This text has color #6E730B on white background.
This text has black color on #6E730B background.
This text has white color on #6E730B background.