HEX: #6B8DBD
RGB: (107,141,189)
#6B8DBD contains mainly green and blue colors. Web safe color of #6B8DBD is #6699CC (or #69C).
#6B8DBD color RGB value is (107,141,189).
RGB: (107,141,189) (42%,55%,74%)
R 107 of 255 = 42%
G 141 of 255 = 55%
B 189 of 255 = 74%
R + G + B ~ 57%. #6B8DBD is middle color (not dark and not light).
R + G + B =
107 + 141 + 189 = 437 (100%)
R 107 of 437 ~ 24.49%
G 141 of 437 ~ 32.27%
B 189 of 437 ~ 43.25%
#6B8DBD color CMYK value is (43,25,0,26).
CMYK: (43,25,0,26) C43M25Y0K26 (43%,25%,0%,26%) (0.43/0.25/0.00/0.26)
6B | 8D | BD | |
---|---|---|---|
RGB | 107 | 141 | 189 |
HSL | 215° | 38.32% | 58.04% |
HSB/HSV | 215° | 43.39% | 74.12% |
CMYK | 43.39% | 25.40% | 0.00% |
25.88% |
HEX | 6B | 8D | BD |
Decimal | 107 | 141 | 189 |
Binary | 1101011 | 10001101 | 10111101 |
Octal | 153 | 215 | 275 |
Examples of css and html codes for elements with #6B8DBD color. Also use rgb(107,141,189) instead hex code.
.myTextColor { color: #6B8DBD; }
<p style="color:#6B8DBD">This sample text font color is #6B8DBD.</p>
This text font color is #6B8DBD.
.myBgColor { background-color: #6B8DBD; }
<div style="background-color:#6B8DBD">Inner text</div>
This div background color is #6B8DBD.
.myBorderColor { border: 1px solid #6B8DBD; }
<div style="border:3px solid #6B8DBD">Div</div>
This div border color is #6B8DBD.
.myOpacity80 { color: #6B8DBD; opacity: 0.8; }
<p style="color:#6B8DBD;opacity:0.8;">80%</p>
Text with #6B8DBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6B8DBD;}
<p style="text-shadow: 3px 3px 1px #6B8DBD">Text here.</p>
This text has shadow with #6B8DBD color.
.textShadow {text-shadow: 3px 3px 1px #6B8DBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6B8DBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #6B8DBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6B8DBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6B8DBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #6B8DBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6B8DBD; -webkit-box-shadow: 1px 1px 3px 2px #6B8DBD; box-shadow: 1px 1px 3px 2px #6B8DBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6B8DBD; -webkit-box-shadow: 1px 1px 3px 2px #6B8DBD; box-shadow:1px 1px 3px 2px #6B8DBD;">
Div content here</div>
This text has color #6B8DBD on black background.
This text has color #6B8DBD on white background.
This text has black color on #6B8DBD background.
This text has white color on #6B8DBD background.