HEX: #689D50
RGB: (104,157,80)
#689D50 contains mainly red and green colors. Web safe color of #689D50 is #669966 (or #696).
#689D50 color RGB value is (104,157,80).
RGB: (104,157,80) (41%,62%,31%)
R 104 of 255 = 41%
G 157 of 255 = 62%
B 80 of 255 = 31%
R + G + B ~ 45%. #689D50 is middle color (not dark and not light).
R + G + B =
104 + 157 + 80 = 341 (100%)
R 104 of 341 ~ 30.5%
G 157 of 341 ~ 46.04%
B 80 of 341 ~ 23.46%
#689D50 color CMYK value is (34,0,49,38).
CMYK: (34,0,49,38) C34M0Y49K38 (34%,0%,49%,38%) (0.34/0.00/0.49/0.38)
68 | 9D | 50 | |
---|---|---|---|
RGB | 104 | 157 | 80 |
HSL | 101° | 32.49% | 46.47% |
HSB/HSV | 101° | 49.04% | 61.57% |
CMYK | 33.76% | 0.00% | 49.04% |
38.43% |
HEX | 68 | 9D | 50 |
Decimal | 104 | 157 | 80 |
Binary | 1101000 | 10011101 | 1010000 |
Octal | 150 | 235 | 120 |
Examples of css and html codes for elements with #689D50 color. Also use rgb(104,157,80) instead hex code.
.myTextColor { color: #689D50; }
<p style="color:#689D50">This sample text font color is #689D50.</p>
This text font color is #689D50.
.myBgColor { background-color: #689D50; }
<div style="background-color:#689D50">Inner text</div>
This div background color is #689D50.
.myBorderColor { border: 1px solid #689D50; }
<div style="border:3px solid #689D50">Div</div>
This div border color is #689D50.
.myOpacity80 { color: #689D50; opacity: 0.8; }
<p style="color:#689D50;opacity:0.8;">80%</p>
Text with #689D50 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #689D50;}
<p style="text-shadow: 3px 3px 1px #689D50">Text here.</p>
This text has shadow with #689D50 color.
.textShadow {text-shadow: 3px 3px 1px #689D50, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #689D50, 5px 5px 20px red">Text here.</p>
This text has shadow with #689D50 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#689D50, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#689D50, Direction=45, Strength=4)">Text</p>
This text has shadow with #689D50 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #689D50; -webkit-box-shadow: 1px 1px 3px 2px #689D50; box-shadow: 1px 1px 3px 2px #689D50; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #689D50; -webkit-box-shadow: 1px 1px 3px 2px #689D50; box-shadow:1px 1px 3px 2px #689D50;">
Div content here</div>
This text has color #689D50 on black background.
This text has color #689D50 on white background.
This text has black color on #689D50 background.
This text has white color on #689D50 background.