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