HEX: #6E88AD
RGB: (110,136,173)
#6E88AD contains mainly green and blue colors. Web safe color of #6E88AD is #669999 (or #699).
#6E88AD color RGB value is (110,136,173).
RGB: (110,136,173) (43%,53%,68%)
R 110 of 255 = 43%
G 136 of 255 = 53%
B 173 of 255 = 68%
R + G + B ~ 55%. #6E88AD is middle color (not dark and not light).
R + G + B =
110 + 136 + 173 = 419 (100%)
R 110 of 419 ~ 26.25%
G 136 of 419 ~ 32.46%
B 173 of 419 ~ 41.29%
#6E88AD color CMYK value is (36,21,0,32).
CMYK: (36,21,0,32) C36M21Y0K32 (36%,21%,0%,32%) (0.36/0.21/0.00/0.32)
6E | 88 | AD | |
---|---|---|---|
RGB | 110 | 136 | 173 |
HSL | 215° | 27.75% | 55.49% |
HSB/HSV | 215° | 36.42% | 67.84% |
CMYK | 36.42% | 21.39% | 0.00% |
32.16% |
HEX | 6E | 88 | AD |
Decimal | 110 | 136 | 173 |
Binary | 1101110 | 10001000 | 10101101 |
Octal | 156 | 210 | 255 |
Examples of css and html codes for elements with #6E88AD color. Also use rgb(110,136,173) instead hex code.
.myTextColor { color: #6E88AD; }
<p style="color:#6E88AD">This sample text font color is #6E88AD.</p>
This text font color is #6E88AD.
.myBgColor { background-color: #6E88AD; }
<div style="background-color:#6E88AD">Inner text</div>
This div background color is #6E88AD.
.myBorderColor { border: 1px solid #6E88AD; }
<div style="border:3px solid #6E88AD">Div</div>
This div border color is #6E88AD.
.myOpacity80 { color: #6E88AD; opacity: 0.8; }
<p style="color:#6E88AD;opacity:0.8;">80%</p>
Text with #6E88AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E88AD;}
<p style="text-shadow: 3px 3px 1px #6E88AD">Text here.</p>
This text has shadow with #6E88AD color.
.textShadow {text-shadow: 3px 3px 1px #6E88AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E88AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E88AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E88AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E88AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E88AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E88AD; -webkit-box-shadow: 1px 1px 3px 2px #6E88AD; box-shadow: 1px 1px 3px 2px #6E88AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E88AD; -webkit-box-shadow: 1px 1px 3px 2px #6E88AD; box-shadow:1px 1px 3px 2px #6E88AD;">
Div content here</div>
This text has color #6E88AD on black background.
This text has color #6E88AD on white background.
This text has black color on #6E88AD background.
This text has white color on #6E88AD background.