HEX: #6F9959
RGB: (111,153,89)
#6F9959 contains mainly red and green colors. Web safe color of #6F9959 is #669966 (or #696).
#6F9959 color RGB value is (111,153,89).
RGB: (111,153,89) (44%,60%,35%)
R 111 of 255 = 44%
G 153 of 255 = 60%
B 89 of 255 = 35%
R + G + B ~ 46%. #6F9959 is middle color (not dark and not light).
R + G + B =
111 + 153 + 89 = 353 (100%)
R 111 of 353 ~ 31.44%
G 153 of 353 ~ 43.34%
B 89 of 353 ~ 25.21%
#6F9959 color CMYK value is (27,0,42,40).
CMYK: (27,0,42,40) C27M0Y42K40 (27%,0%,42%,40%) (0.27/0.00/0.42/0.40)
6F | 99 | 59 | |
---|---|---|---|
RGB | 111 | 153 | 89 |
HSL | 99° | 26.45% | 47.45% |
HSB/HSV | 99° | 41.83% | 60.00% |
CMYK | 27.45% | 0.00% | 41.83% |
40.00% |
HEX | 6F | 99 | 59 |
Decimal | 111 | 153 | 89 |
Binary | 1101111 | 10011001 | 1011001 |
Octal | 157 | 231 | 131 |
Examples of css and html codes for elements with #6F9959 color. Also use rgb(111,153,89) instead hex code.
.myTextColor { color: #6F9959; }
<p style="color:#6F9959">This sample text font color is #6F9959.</p>
This text font color is #6F9959.
.myBgColor { background-color: #6F9959; }
<div style="background-color:#6F9959">Inner text</div>
This div background color is #6F9959.
.myBorderColor { border: 1px solid #6F9959; }
<div style="border:3px solid #6F9959">Div</div>
This div border color is #6F9959.
.myOpacity80 { color: #6F9959; opacity: 0.8; }
<p style="color:#6F9959;opacity:0.8;">80%</p>
Text with #6F9959 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6F9959;}
<p style="text-shadow: 3px 3px 1px #6F9959">Text here.</p>
This text has shadow with #6F9959 color.
.textShadow {text-shadow: 3px 3px 1px #6F9959, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6F9959, 5px 5px 20px red">Text here.</p>
This text has shadow with #6F9959 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6F9959, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6F9959, Direction=45, Strength=4)">Text</p>
This text has shadow with #6F9959 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6F9959; -webkit-box-shadow: 1px 1px 3px 2px #6F9959; box-shadow: 1px 1px 3px 2px #6F9959; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6F9959; -webkit-box-shadow: 1px 1px 3px 2px #6F9959; box-shadow:1px 1px 3px 2px #6F9959;">
Div content here</div>
This text has color #6F9959 on black background.
This text has color #6F9959 on white background.
This text has black color on #6F9959 background.
This text has white color on #6F9959 background.