HEX: #6D8FAA
RGB: (109,143,170)
#6D8FAA contains mainly green and blue colors. Web safe color of #6D8FAA is #669999 (or #699).
#6D8FAA color RGB value is (109,143,170).
RGB: (109,143,170) (43%,56%,67%)
R 109 of 255 = 43%
G 143 of 255 = 56%
B 170 of 255 = 67%
R + G + B ~ 55%. #6D8FAA is middle color (not dark and not light).
R + G + B =
109 + 143 + 170 = 422 (100%)
R 109 of 422 ~ 25.83%
G 143 of 422 ~ 33.89%
B 170 of 422 ~ 40.28%
#6D8FAA color CMYK value is (36,16,0,33).
CMYK: (36,16,0,33) C36M16Y0K33 (36%,16%,0%,33%) (0.36/0.16/0.00/0.33)
6D | 8F | AA | |
---|---|---|---|
RGB | 109 | 143 | 170 |
HSL | 207° | 26.41% | 54.71% |
HSB/HSV | 207° | 35.88% | 66.67% |
CMYK | 35.88% | 15.88% | 0.00% |
33.33% |
HEX | 6D | 8F | AA |
Decimal | 109 | 143 | 170 |
Binary | 1101101 | 10001111 | 10101010 |
Octal | 155 | 217 | 252 |
Examples of css and html codes for elements with #6D8FAA color. Also use rgb(109,143,170) instead hex code.
.myTextColor { color: #6D8FAA; }
<p style="color:#6D8FAA">This sample text font color is #6D8FAA.</p>
This text font color is #6D8FAA.
.myBgColor { background-color: #6D8FAA; }
<div style="background-color:#6D8FAA">Inner text</div>
This div background color is #6D8FAA.
.myBorderColor { border: 1px solid #6D8FAA; }
<div style="border:3px solid #6D8FAA">Div</div>
This div border color is #6D8FAA.
.myOpacity80 { color: #6D8FAA; opacity: 0.8; }
<p style="color:#6D8FAA;opacity:0.8;">80%</p>
Text with #6D8FAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6D8FAA;}
<p style="text-shadow: 3px 3px 1px #6D8FAA">Text here.</p>
This text has shadow with #6D8FAA color.
.textShadow {text-shadow: 3px 3px 1px #6D8FAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6D8FAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #6D8FAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6D8FAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6D8FAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #6D8FAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6D8FAA; -webkit-box-shadow: 1px 1px 3px 2px #6D8FAA; box-shadow: 1px 1px 3px 2px #6D8FAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6D8FAA; -webkit-box-shadow: 1px 1px 3px 2px #6D8FAA; box-shadow:1px 1px 3px 2px #6D8FAA;">
Div content here</div>
This text has color #6D8FAA on black background.
This text has color #6D8FAA on white background.
This text has black color on #6D8FAA background.
This text has white color on #6D8FAA background.