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