HEX: #689882
RGB: (104,152,130)
#689882 contains red, green and blue colors in about the same proportion. Web safe color of #689882 is #669999 (or #699).
#689882 color RGB value is (104,152,130).
RGB: (104,152,130) (41%,60%,51%)
R 104 of 255 = 41%
G 152 of 255 = 60%
B 130 of 255 = 51%
R + G + B ~ 51%. #689882 is middle color (not dark and not light).
R + G + B =
104 + 152 + 130 = 386 (100%)
R 104 of 386 ~ 26.94%
G 152 of 386 ~ 39.38%
B 130 of 386 ~ 33.68%
#689882 color CMYK value is (32,0,14,40).
CMYK: (32,0,14,40) C32M0Y14K40 (32%,0%,14%,40%) (0.32/0.00/0.14/0.40)
68 | 98 | 82 | |
---|---|---|---|
RGB | 104 | 152 | 130 |
HSL | 153° | 18.90% | 50.20% |
HSB/HSV | 153° | 31.58% | 59.61% |
CMYK | 31.58% | 0.00% | 14.47% |
40.39% |
HEX | 68 | 98 | 82 |
Decimal | 104 | 152 | 130 |
Binary | 1101000 | 10011000 | 10000010 |
Octal | 150 | 230 | 202 |
Examples of css and html codes for elements with #689882 color. Also use rgb(104,152,130) instead hex code.
.myTextColor { color: #689882; }
<p style="color:#689882">This sample text font color is #689882.</p>
This text font color is #689882.
.myBgColor { background-color: #689882; }
<div style="background-color:#689882">Inner text</div>
This div background color is #689882.
.myBorderColor { border: 1px solid #689882; }
<div style="border:3px solid #689882">Div</div>
This div border color is #689882.
.myOpacity80 { color: #689882; opacity: 0.8; }
<p style="color:#689882;opacity:0.8;">80%</p>
Text with #689882 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #689882;}
<p style="text-shadow: 3px 3px 1px #689882">Text here.</p>
This text has shadow with #689882 color.
.textShadow {text-shadow: 3px 3px 1px #689882, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #689882, 5px 5px 20px red">Text here.</p>
This text has shadow with #689882 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#689882, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#689882, Direction=45, Strength=4)">Text</p>
This text has shadow with #689882 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #689882; -webkit-box-shadow: 1px 1px 3px 2px #689882; box-shadow: 1px 1px 3px 2px #689882; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #689882; -webkit-box-shadow: 1px 1px 3px 2px #689882; box-shadow:1px 1px 3px 2px #689882;">
Div content here</div>
This text has color #689882 on black background.
This text has color #689882 on white background.
This text has black color on #689882 background.
This text has white color on #689882 background.