HEX: #6C825D
RGB: (108,130,93)
#6C825D contains red, green and blue colors in about the same proportion. Web safe color of #6C825D is #669966 (or #696).
#6C825D color RGB value is (108,130,93).
RGB: (108,130,93) (42%,51%,36%)
R 108 of 255 = 42%
G 130 of 255 = 51%
B 93 of 255 = 36%
R + G + B ~ 43%. #6C825D is middle color (not dark and not light).
R + G + B =
108 + 130 + 93 = 331 (100%)
R 108 of 331 ~ 32.63%
G 130 of 331 ~ 39.27%
B 93 of 331 ~ 28.1%
#6C825D color CMYK value is (17,0,28,49).
CMYK: (17,0,28,49) C17M0Y28K49 (17%,0%,28%,49%) (0.17/0.00/0.28/0.49)
6C | 82 | 5D | |
---|---|---|---|
RGB | 108 | 130 | 93 |
HSL | 96° | 16.59% | 43.73% |
HSB/HSV | 96° | 28.46% | 50.98% |
CMYK | 16.92% | 0.00% | 28.46% |
49.02% |
HEX | 6C | 82 | 5D |
Decimal | 108 | 130 | 93 |
Binary | 1101100 | 10000010 | 1011101 |
Octal | 154 | 202 | 135 |
Examples of css and html codes for elements with #6C825D color. Also use rgb(108,130,93) instead hex code.
.myTextColor { color: #6C825D; }
<p style="color:#6C825D">This sample text font color is #6C825D.</p>
This text font color is #6C825D.
.myBgColor { background-color: #6C825D; }
<div style="background-color:#6C825D">Inner text</div>
This div background color is #6C825D.
.myBorderColor { border: 1px solid #6C825D; }
<div style="border:3px solid #6C825D">Div</div>
This div border color is #6C825D.
.myOpacity80 { color: #6C825D; opacity: 0.8; }
<p style="color:#6C825D;opacity:0.8;">80%</p>
Text with #6C825D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6C825D;}
<p style="text-shadow: 3px 3px 1px #6C825D">Text here.</p>
This text has shadow with #6C825D color.
.textShadow {text-shadow: 3px 3px 1px #6C825D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6C825D, 5px 5px 20px red">Text here.</p>
This text has shadow with #6C825D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6C825D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6C825D, Direction=45, Strength=4)">Text</p>
This text has shadow with #6C825D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6C825D; -webkit-box-shadow: 1px 1px 3px 2px #6C825D; box-shadow: 1px 1px 3px 2px #6C825D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6C825D; -webkit-box-shadow: 1px 1px 3px 2px #6C825D; box-shadow:1px 1px 3px 2px #6C825D;">
Div content here</div>
This text has color #6C825D on black background.
This text has color #6C825D on white background.
This text has black color on #6C825D background.
This text has white color on #6C825D background.