HEX: #6CC3DB
RGB: (108,195,219)
#6CC3DB contains mainly green and blue colors. Web safe color of #6CC3DB is #66CCCC (or #6CC).
#6CC3DB color RGB value is (108,195,219).
RGB: (108,195,219) (42%,76%,86%)
R 108 of 255 = 42%
G 195 of 255 = 76%
B 219 of 255 = 86%
R + G + B ~ 68%. #6CC3DB is quite light color.
R + G + B =
108 + 195 + 219 = 522 (100%)
R 108 of 522 ~ 20.69%
G 195 of 522 ~ 37.36%
B 219 of 522 ~ 41.95%
#6CC3DB color CMYK value is (51,11,0,14).
CMYK: (51,11,0,14) C51M11Y0K14 (51%,11%,0%,14%) (0.51/0.11/0.00/0.14)
6C | C3 | DB | |
---|---|---|---|
RGB | 108 | 195 | 219 |
HSL | 193° | 60.66% | 64.12% |
HSB/HSV | 193° | 50.68% | 85.88% |
CMYK | 50.68% | 10.96% | 0.00% |
14.12% |
HEX | 6C | C3 | DB |
Decimal | 108 | 195 | 219 |
Binary | 1101100 | 11000011 | 11011011 |
Octal | 154 | 303 | 333 |
Examples of css and html codes for elements with #6CC3DB color. Also use rgb(108,195,219) instead hex code.
.myTextColor { color: #6CC3DB; }
<p style="color:#6CC3DB">This sample text font color is #6CC3DB.</p>
This text font color is #6CC3DB.
.myBgColor { background-color: #6CC3DB; }
<div style="background-color:#6CC3DB">Inner text</div>
This div background color is #6CC3DB.
.myBorderColor { border: 1px solid #6CC3DB; }
<div style="border:3px solid #6CC3DB">Div</div>
This div border color is #6CC3DB.
.myOpacity80 { color: #6CC3DB; opacity: 0.8; }
<p style="color:#6CC3DB;opacity:0.8;">80%</p>
Text with #6CC3DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6CC3DB;}
<p style="text-shadow: 3px 3px 1px #6CC3DB">Text here.</p>
This text has shadow with #6CC3DB color.
.textShadow {text-shadow: 3px 3px 1px #6CC3DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6CC3DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #6CC3DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6CC3DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6CC3DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #6CC3DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6CC3DB; -webkit-box-shadow: 1px 1px 3px 2px #6CC3DB; box-shadow: 1px 1px 3px 2px #6CC3DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6CC3DB; -webkit-box-shadow: 1px 1px 3px 2px #6CC3DB; box-shadow:1px 1px 3px 2px #6CC3DB;">
Div content here</div>
This text has color #6CC3DB on black background.
This text has color #6CC3DB on white background.
This text has black color on #6CC3DB background.
This text has white color on #6CC3DB background.