HEX: #688788
RGB: (104,135,136)
#688788 contains red, green and blue colors in about the same proportion. Web safe color of #688788 is #669999 (or #699).
#688788 color RGB value is (104,135,136).
RGB: (104,135,136) (41%,53%,53%)
R 104 of 255 = 41%
G 135 of 255 = 53%
B 136 of 255 = 53%
R + G + B ~ 49%. #688788 is middle color (not dark and not light).
R + G + B =
104 + 135 + 136 = 375 (100%)
R 104 of 375 ~ 27.73%
G 135 of 375 ~ 36%
B 136 of 375 ~ 36.27%
#688788 color CMYK value is (24,1,0,47).
CMYK: (24,1,0,47) C24M1Y0K47 (24%,1%,0%,47%) (0.24/0.01/0.00/0.47)
68 | 87 | 88 | |
---|---|---|---|
RGB | 104 | 135 | 136 |
HSL | 182° | 13.33% | 47.06% |
HSB/HSV | 182° | 23.53% | 53.33% |
CMYK | 23.53% | 0.74% | 0.00% |
46.67% |
HEX | 68 | 87 | 88 |
Decimal | 104 | 135 | 136 |
Binary | 1101000 | 10000111 | 10001000 |
Octal | 150 | 207 | 210 |
Examples of css and html codes for elements with #688788 color. Also use rgb(104,135,136) instead hex code.
.myTextColor { color: #688788; }
<p style="color:#688788">This sample text font color is #688788.</p>
This text font color is #688788.
.myBgColor { background-color: #688788; }
<div style="background-color:#688788">Inner text</div>
This div background color is #688788.
.myBorderColor { border: 1px solid #688788; }
<div style="border:3px solid #688788">Div</div>
This div border color is #688788.
.myOpacity80 { color: #688788; opacity: 0.8; }
<p style="color:#688788;opacity:0.8;">80%</p>
Text with #688788 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #688788;}
<p style="text-shadow: 3px 3px 1px #688788">Text here.</p>
This text has shadow with #688788 color.
.textShadow {text-shadow: 3px 3px 1px #688788, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #688788, 5px 5px 20px red">Text here.</p>
This text has shadow with #688788 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#688788, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#688788, Direction=45, Strength=4)">Text</p>
This text has shadow with #688788 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #688788; -webkit-box-shadow: 1px 1px 3px 2px #688788; box-shadow: 1px 1px 3px 2px #688788; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #688788; -webkit-box-shadow: 1px 1px 3px 2px #688788; box-shadow:1px 1px 3px 2px #688788;">
Div content here</div>
This text has color #688788 on black background.
This text has color #688788 on white background.
This text has black color on #688788 background.
This text has white color on #688788 background.