HEX: #6E825A
RGB: (110,130,90)
#6E825A contains red, green and blue colors in about the same proportion. Web safe color of #6E825A is #669966 (or #696).
#6E825A color RGB value is (110,130,90).
RGB: (110,130,90) (43%,51%,35%)
R 110 of 255 = 43%
G 130 of 255 = 51%
B 90 of 255 = 35%
R + G + B ~ 43%. #6E825A is middle color (not dark and not light).
R + G + B =
110 + 130 + 90 = 330 (100%)
R 110 of 330 ~ 33.33%
G 130 of 330 ~ 39.39%
B 90 of 330 ~ 27.27%
#6E825A color CMYK value is (15,0,31,49).
CMYK: (15,0,31,49) C15M0Y31K49 (15%,0%,31%,49%) (0.15/0.00/0.31/0.49)
6E | 82 | 5A | |
---|---|---|---|
RGB | 110 | 130 | 90 |
HSL | 90° | 18.18% | 43.14% |
HSB/HSV | 90° | 30.77% | 50.98% |
CMYK | 15.38% | 0.00% | 30.77% |
49.02% |
HEX | 6E | 82 | 5A |
Decimal | 110 | 130 | 90 |
Binary | 1101110 | 10000010 | 1011010 |
Octal | 156 | 202 | 132 |
Examples of css and html codes for elements with #6E825A color. Also use rgb(110,130,90) instead hex code.
.myTextColor { color: #6E825A; }
<p style="color:#6E825A">This sample text font color is #6E825A.</p>
This text font color is #6E825A.
.myBgColor { background-color: #6E825A; }
<div style="background-color:#6E825A">Inner text</div>
This div background color is #6E825A.
.myBorderColor { border: 1px solid #6E825A; }
<div style="border:3px solid #6E825A">Div</div>
This div border color is #6E825A.
.myOpacity80 { color: #6E825A; opacity: 0.8; }
<p style="color:#6E825A;opacity:0.8;">80%</p>
Text with #6E825A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E825A;}
<p style="text-shadow: 3px 3px 1px #6E825A">Text here.</p>
This text has shadow with #6E825A color.
.textShadow {text-shadow: 3px 3px 1px #6E825A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E825A, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E825A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E825A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E825A, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E825A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E825A; -webkit-box-shadow: 1px 1px 3px 2px #6E825A; box-shadow: 1px 1px 3px 2px #6E825A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E825A; -webkit-box-shadow: 1px 1px 3px 2px #6E825A; box-shadow:1px 1px 3px 2px #6E825A;">
Div content here</div>
This text has color #6E825A on black background.
This text has color #6E825A on white background.
This text has black color on #6E825A background.
This text has white color on #6E825A background.