HEX: #6688CE
RGB: (102,136,206)
#6688CE contains mainly blue color. Web safe color of #6688CE is #6699CC (or #69C).
#6688CE color RGB value is (102,136,206).
RGB: (102,136,206) (40%,53%,81%)
R 102 of 255 = 40%
G 136 of 255 = 53%
B 206 of 255 = 81%
R + G + B ~ 58%. #6688CE is middle color (not dark and not light).
R + G + B =
102 + 136 + 206 = 444 (100%)
R 102 of 444 ~ 22.97%
G 136 of 444 ~ 30.63%
B 206 of 444 ~ 46.4%
#6688CE color CMYK value is (50,34,0,19).
CMYK: (50,34,0,19) C50M34Y0K19 (50%,34%,0%,19%) (0.50/0.34/0.00/0.19)
66 | 88 | CE | |
---|---|---|---|
RGB | 102 | 136 | 206 |
HSL | 220° | 51.49% | 60.39% |
HSB/HSV | 220° | 50.49% | 80.78% |
CMYK | 50.49% | 33.98% | 0.00% |
19.22% |
HEX | 66 | 88 | CE |
Decimal | 102 | 136 | 206 |
Binary | 1100110 | 10001000 | 11001110 |
Octal | 146 | 210 | 316 |
Examples of css and html codes for elements with #6688CE color. Also use rgb(102,136,206) instead hex code.
.myTextColor { color: #6688CE; }
<p style="color:#6688CE">This sample text font color is #6688CE.</p>
This text font color is #6688CE.
.myBgColor { background-color: #6688CE; }
<div style="background-color:#6688CE">Inner text</div>
This div background color is #6688CE.
.myBorderColor { border: 1px solid #6688CE; }
<div style="border:3px solid #6688CE">Div</div>
This div border color is #6688CE.
.myOpacity80 { color: #6688CE; opacity: 0.8; }
<p style="color:#6688CE;opacity:0.8;">80%</p>
Text with #6688CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6688CE;}
<p style="text-shadow: 3px 3px 1px #6688CE">Text here.</p>
This text has shadow with #6688CE color.
.textShadow {text-shadow: 3px 3px 1px #6688CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6688CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #6688CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6688CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6688CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #6688CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6688CE; -webkit-box-shadow: 1px 1px 3px 2px #6688CE; box-shadow: 1px 1px 3px 2px #6688CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6688CE; -webkit-box-shadow: 1px 1px 3px 2px #6688CE; box-shadow:1px 1px 3px 2px #6688CE;">
Div content here</div>
This text has color #6688CE on black background.
This text has color #6688CE on white background.
This text has black color on #6688CE background.
This text has white color on #6688CE background.