HEX: #6DB6CB
RGB: (109,182,203)
#6DB6CB contains mainly green and blue colors. Web safe color of #6DB6CB is #66CCCC (or #6CC).
#6DB6CB color RGB value is (109,182,203).
RGB: (109,182,203) (43%,71%,80%)
R 109 of 255 = 43%
G 182 of 255 = 71%
B 203 of 255 = 80%
R + G + B ~ 65%. #6DB6CB is quite light color.
R + G + B =
109 + 182 + 203 = 494 (100%)
R 109 of 494 ~ 22.06%
G 182 of 494 ~ 36.84%
B 203 of 494 ~ 41.09%
#6DB6CB color CMYK value is (46,10,0,20).
CMYK: (46,10,0,20) C46M10Y0K20 (46%,10%,0%,20%) (0.46/0.10/0.00/0.20)
6D | B6 | CB | |
---|---|---|---|
RGB | 109 | 182 | 203 |
HSL | 193° | 47.47% | 61.18% |
HSB/HSV | 193° | 46.31% | 79.61% |
CMYK | 46.31% | 10.34% | 0.00% |
20.39% |
HEX | 6D | B6 | CB |
Decimal | 109 | 182 | 203 |
Binary | 1101101 | 10110110 | 11001011 |
Octal | 155 | 266 | 313 |
Examples of css and html codes for elements with #6DB6CB color. Also use rgb(109,182,203) instead hex code.
.myTextColor { color: #6DB6CB; }
<p style="color:#6DB6CB">This sample text font color is #6DB6CB.</p>
This text font color is #6DB6CB.
.myBgColor { background-color: #6DB6CB; }
<div style="background-color:#6DB6CB">Inner text</div>
This div background color is #6DB6CB.
.myBorderColor { border: 1px solid #6DB6CB; }
<div style="border:3px solid #6DB6CB">Div</div>
This div border color is #6DB6CB.
.myOpacity80 { color: #6DB6CB; opacity: 0.8; }
<p style="color:#6DB6CB;opacity:0.8;">80%</p>
Text with #6DB6CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6DB6CB;}
<p style="text-shadow: 3px 3px 1px #6DB6CB">Text here.</p>
This text has shadow with #6DB6CB color.
.textShadow {text-shadow: 3px 3px 1px #6DB6CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6DB6CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #6DB6CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6DB6CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6DB6CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #6DB6CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6DB6CB; -webkit-box-shadow: 1px 1px 3px 2px #6DB6CB; box-shadow: 1px 1px 3px 2px #6DB6CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6DB6CB; -webkit-box-shadow: 1px 1px 3px 2px #6DB6CB; box-shadow:1px 1px 3px 2px #6DB6CB;">
Div content here</div>
This text has color #6DB6CB on black background.
This text has color #6DB6CB on white background.
This text has black color on #6DB6CB background.
This text has white color on #6DB6CB background.