HEX: #6C967D
RGB: (108,150,125)
#6C967D contains red, green and blue colors in about the same proportion. Web safe color of #6C967D is #669966 (or #696).
#6C967D color RGB value is (108,150,125).
RGB: (108,150,125) (42%,59%,49%)
R 108 of 255 = 42%
G 150 of 255 = 59%
B 125 of 255 = 49%
R + G + B ~ 50%. #6C967D is middle color (not dark and not light).
R + G + B =
108 + 150 + 125 = 383 (100%)
R 108 of 383 ~ 28.2%
G 150 of 383 ~ 39.16%
B 125 of 383 ~ 32.64%
#6C967D color CMYK value is (28,0,17,41).
CMYK: (28,0,17,41) C28M0Y17K41 (28%,0%,17%,41%) (0.28/0.00/0.17/0.41)
6C | 96 | 7D | |
---|---|---|---|
RGB | 108 | 150 | 125 |
HSL | 144° | 16.67% | 50.59% |
HSB/HSV | 144° | 28.00% | 58.82% |
CMYK | 28.00% | 0.00% | 16.67% |
41.18% |
HEX | 6C | 96 | 7D |
Decimal | 108 | 150 | 125 |
Binary | 1101100 | 10010110 | 1111101 |
Octal | 154 | 226 | 175 |
Examples of css and html codes for elements with #6C967D color. Also use rgb(108,150,125) instead hex code.
.myTextColor { color: #6C967D; }
<p style="color:#6C967D">This sample text font color is #6C967D.</p>
This text font color is #6C967D.
.myBgColor { background-color: #6C967D; }
<div style="background-color:#6C967D">Inner text</div>
This div background color is #6C967D.
.myBorderColor { border: 1px solid #6C967D; }
<div style="border:3px solid #6C967D">Div</div>
This div border color is #6C967D.
.myOpacity80 { color: #6C967D; opacity: 0.8; }
<p style="color:#6C967D;opacity:0.8;">80%</p>
Text with #6C967D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6C967D;}
<p style="text-shadow: 3px 3px 1px #6C967D">Text here.</p>
This text has shadow with #6C967D color.
.textShadow {text-shadow: 3px 3px 1px #6C967D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6C967D, 5px 5px 20px red">Text here.</p>
This text has shadow with #6C967D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6C967D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6C967D, Direction=45, Strength=4)">Text</p>
This text has shadow with #6C967D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6C967D; -webkit-box-shadow: 1px 1px 3px 2px #6C967D; box-shadow: 1px 1px 3px 2px #6C967D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6C967D; -webkit-box-shadow: 1px 1px 3px 2px #6C967D; box-shadow:1px 1px 3px 2px #6C967D;">
Div content here</div>
This text has color #6C967D on black background.
This text has color #6C967D on white background.
This text has black color on #6C967D background.
This text has white color on #6C967D background.