HEX: #6B9EAD
RGB: (107,158,173)
#6B9EAD contains mainly green and blue colors. Web safe color of #6B9EAD is #669999 (or #699).
#6B9EAD color RGB value is (107,158,173).
RGB: (107,158,173) (42%,62%,68%)
R 107 of 255 = 42%
G 158 of 255 = 62%
B 173 of 255 = 68%
R + G + B ~ 57%. #6B9EAD is middle color (not dark and not light).
R + G + B =
107 + 158 + 173 = 438 (100%)
R 107 of 438 ~ 24.43%
G 158 of 438 ~ 36.07%
B 173 of 438 ~ 39.5%
#6B9EAD color CMYK value is (38,9,0,32).
CMYK: (38,9,0,32) C38M9Y0K32 (38%,9%,0%,32%) (0.38/0.09/0.00/0.32)
6B | 9E | AD | |
---|---|---|---|
RGB | 107 | 158 | 173 |
HSL | 194° | 28.70% | 54.90% |
HSB/HSV | 194° | 38.15% | 67.84% |
CMYK | 38.15% | 8.67% | 0.00% |
32.16% |
HEX | 6B | 9E | AD |
Decimal | 107 | 158 | 173 |
Binary | 1101011 | 10011110 | 10101101 |
Octal | 153 | 236 | 255 |
Examples of css and html codes for elements with #6B9EAD color. Also use rgb(107,158,173) instead hex code.
.myTextColor { color: #6B9EAD; }
<p style="color:#6B9EAD">This sample text font color is #6B9EAD.</p>
This text font color is #6B9EAD.
.myBgColor { background-color: #6B9EAD; }
<div style="background-color:#6B9EAD">Inner text</div>
This div background color is #6B9EAD.
.myBorderColor { border: 1px solid #6B9EAD; }
<div style="border:3px solid #6B9EAD">Div</div>
This div border color is #6B9EAD.
.myOpacity80 { color: #6B9EAD; opacity: 0.8; }
<p style="color:#6B9EAD;opacity:0.8;">80%</p>
Text with #6B9EAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6B9EAD;}
<p style="text-shadow: 3px 3px 1px #6B9EAD">Text here.</p>
This text has shadow with #6B9EAD color.
.textShadow {text-shadow: 3px 3px 1px #6B9EAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6B9EAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #6B9EAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6B9EAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6B9EAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #6B9EAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6B9EAD; -webkit-box-shadow: 1px 1px 3px 2px #6B9EAD; box-shadow: 1px 1px 3px 2px #6B9EAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6B9EAD; -webkit-box-shadow: 1px 1px 3px 2px #6B9EAD; box-shadow:1px 1px 3px 2px #6B9EAD;">
Div content here</div>
This text has color #6B9EAD on black background.
This text has color #6B9EAD on white background.
This text has black color on #6B9EAD background.
This text has white color on #6B9EAD background.