HEX: #6E9DB2
RGB: (110,157,178)
#6E9DB2 contains mainly green and blue colors. Web safe color of #6E9DB2 is #669999 (or #699).
#6E9DB2 color RGB value is (110,157,178).
RGB: (110,157,178) (43%,62%,70%)
R 110 of 255 = 43%
G 157 of 255 = 62%
B 178 of 255 = 70%
R + G + B ~ 58%. #6E9DB2 is middle color (not dark and not light).
R + G + B =
110 + 157 + 178 = 445 (100%)
R 110 of 445 ~ 24.72%
G 157 of 445 ~ 35.28%
B 178 of 445 ~ 40%
#6E9DB2 color CMYK value is (38,12,0,30).
CMYK: (38,12,0,30) C38M12Y0K30 (38%,12%,0%,30%) (0.38/0.12/0.00/0.30)
6E | 9D | B2 | |
---|---|---|---|
RGB | 110 | 157 | 178 |
HSL | 199° | 30.63% | 56.47% |
HSB/HSV | 199° | 38.20% | 69.80% |
CMYK | 38.20% | 11.80% | 0.00% |
30.20% |
HEX | 6E | 9D | B2 |
Decimal | 110 | 157 | 178 |
Binary | 1101110 | 10011101 | 10110010 |
Octal | 156 | 235 | 262 |
Examples of css and html codes for elements with #6E9DB2 color. Also use rgb(110,157,178) instead hex code.
.myTextColor { color: #6E9DB2; }
<p style="color:#6E9DB2">This sample text font color is #6E9DB2.</p>
This text font color is #6E9DB2.
.myBgColor { background-color: #6E9DB2; }
<div style="background-color:#6E9DB2">Inner text</div>
This div background color is #6E9DB2.
.myBorderColor { border: 1px solid #6E9DB2; }
<div style="border:3px solid #6E9DB2">Div</div>
This div border color is #6E9DB2.
.myOpacity80 { color: #6E9DB2; opacity: 0.8; }
<p style="color:#6E9DB2;opacity:0.8;">80%</p>
Text with #6E9DB2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E9DB2;}
<p style="text-shadow: 3px 3px 1px #6E9DB2">Text here.</p>
This text has shadow with #6E9DB2 color.
.textShadow {text-shadow: 3px 3px 1px #6E9DB2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E9DB2, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E9DB2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E9DB2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E9DB2, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E9DB2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E9DB2; -webkit-box-shadow: 1px 1px 3px 2px #6E9DB2; box-shadow: 1px 1px 3px 2px #6E9DB2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E9DB2; -webkit-box-shadow: 1px 1px 3px 2px #6E9DB2; box-shadow:1px 1px 3px 2px #6E9DB2;">
Div content here</div>
This text has color #6E9DB2 on black background.
This text has color #6E9DB2 on white background.
This text has black color on #6E9DB2 background.
This text has white color on #6E9DB2 background.