HEX: #6EA2BC
RGB: (110,162,188)
#6EA2BC contains mainly green and blue colors. Web safe color of #6EA2BC is #6699CC (or #69C).
#6EA2BC color RGB value is (110,162,188).
RGB: (110,162,188) (43%,64%,74%)
R 110 of 255 = 43%
G 162 of 255 = 64%
B 188 of 255 = 74%
R + G + B ~ 60%. #6EA2BC is middle color (not dark and not light).
R + G + B =
110 + 162 + 188 = 460 (100%)
R 110 of 460 ~ 23.91%
G 162 of 460 ~ 35.22%
B 188 of 460 ~ 40.87%
#6EA2BC color CMYK value is (41,14,0,26).
CMYK: (41,14,0,26) C41M14Y0K26 (41%,14%,0%,26%) (0.41/0.14/0.00/0.26)
6E | A2 | BC | |
---|---|---|---|
RGB | 110 | 162 | 188 |
HSL | 200° | 36.79% | 58.43% |
HSB/HSV | 200° | 41.49% | 73.73% |
CMYK | 41.49% | 13.83% | 0.00% |
26.27% |
HEX | 6E | A2 | BC |
Decimal | 110 | 162 | 188 |
Binary | 1101110 | 10100010 | 10111100 |
Octal | 156 | 242 | 274 |
Examples of css and html codes for elements with #6EA2BC color. Also use rgb(110,162,188) instead hex code.
.myTextColor { color: #6EA2BC; }
<p style="color:#6EA2BC">This sample text font color is #6EA2BC.</p>
This text font color is #6EA2BC.
.myBgColor { background-color: #6EA2BC; }
<div style="background-color:#6EA2BC">Inner text</div>
This div background color is #6EA2BC.
.myBorderColor { border: 1px solid #6EA2BC; }
<div style="border:3px solid #6EA2BC">Div</div>
This div border color is #6EA2BC.
.myOpacity80 { color: #6EA2BC; opacity: 0.8; }
<p style="color:#6EA2BC;opacity:0.8;">80%</p>
Text with #6EA2BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6EA2BC;}
<p style="text-shadow: 3px 3px 1px #6EA2BC">Text here.</p>
This text has shadow with #6EA2BC color.
.textShadow {text-shadow: 3px 3px 1px #6EA2BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6EA2BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #6EA2BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6EA2BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6EA2BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #6EA2BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6EA2BC; -webkit-box-shadow: 1px 1px 3px 2px #6EA2BC; box-shadow: 1px 1px 3px 2px #6EA2BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6EA2BC; -webkit-box-shadow: 1px 1px 3px 2px #6EA2BC; box-shadow:1px 1px 3px 2px #6EA2BC;">
Div content here</div>
This text has color #6EA2BC on black background.
This text has color #6EA2BC on white background.
This text has black color on #6EA2BC background.
This text has white color on #6EA2BC background.