HEX: #6C996D
RGB: (108,153,109)
#6C996D contains red, green and blue colors in about the same proportion. Web safe color of #6C996D is #669966 (or #696).
#6C996D color RGB value is (108,153,109).
RGB: (108,153,109) (42%,60%,43%)
R 108 of 255 = 42%
G 153 of 255 = 60%
B 109 of 255 = 43%
R + G + B ~ 48%. #6C996D is middle color (not dark and not light).
R + G + B =
108 + 153 + 109 = 370 (100%)
R 108 of 370 ~ 29.19%
G 153 of 370 ~ 41.35%
B 109 of 370 ~ 29.46%
#6C996D color CMYK value is (29,0,29,40).
CMYK: (29,0,29,40) C29M0Y29K40 (29%,0%,29%,40%) (0.29/0.00/0.29/0.40)
6C | 99 | 6D | |
---|---|---|---|
RGB | 108 | 153 | 109 |
HSL | 121° | 18.07% | 51.18% |
HSB/HSV | 121° | 29.41% | 60.00% |
CMYK | 29.41% | 0.00% | 28.76% |
40.00% |
HEX | 6C | 99 | 6D |
Decimal | 108 | 153 | 109 |
Binary | 1101100 | 10011001 | 1101101 |
Octal | 154 | 231 | 155 |
Examples of css and html codes for elements with #6C996D color. Also use rgb(108,153,109) instead hex code.
.myTextColor { color: #6C996D; }
<p style="color:#6C996D">This sample text font color is #6C996D.</p>
This text font color is #6C996D.
.myBgColor { background-color: #6C996D; }
<div style="background-color:#6C996D">Inner text</div>
This div background color is #6C996D.
.myBorderColor { border: 1px solid #6C996D; }
<div style="border:3px solid #6C996D">Div</div>
This div border color is #6C996D.
.myOpacity80 { color: #6C996D; opacity: 0.8; }
<p style="color:#6C996D;opacity:0.8;">80%</p>
Text with #6C996D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6C996D;}
<p style="text-shadow: 3px 3px 1px #6C996D">Text here.</p>
This text has shadow with #6C996D color.
.textShadow {text-shadow: 3px 3px 1px #6C996D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6C996D, 5px 5px 20px red">Text here.</p>
This text has shadow with #6C996D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6C996D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6C996D, Direction=45, Strength=4)">Text</p>
This text has shadow with #6C996D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6C996D; -webkit-box-shadow: 1px 1px 3px 2px #6C996D; box-shadow: 1px 1px 3px 2px #6C996D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6C996D; -webkit-box-shadow: 1px 1px 3px 2px #6C996D; box-shadow:1px 1px 3px 2px #6C996D;">
Div content here</div>
This text has color #6C996D on black background.
This text has color #6C996D on white background.
This text has black color on #6C996D background.
This text has white color on #6C996D background.