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