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