HEX: #6C89DB
RGB: (108,137,219)
#6C89DB contains mainly blue color. Web safe color of #6C89DB is #6699CC (or #69C).
#6C89DB color RGB value is (108,137,219).
RGB: (108,137,219) (42%,54%,86%)
R 108 of 255 = 42%
G 137 of 255 = 54%
B 219 of 255 = 86%
R + G + B ~ 61%. #6C89DB is quite light color.
R + G + B =
108 + 137 + 219 = 464 (100%)
R 108 of 464 ~ 23.28%
G 137 of 464 ~ 29.53%
B 219 of 464 ~ 47.2%
#6C89DB color CMYK value is (51,37,0,14).
CMYK: (51,37,0,14) C51M37Y0K14 (51%,37%,0%,14%) (0.51/0.37/0.00/0.14)
6C | 89 | DB | |
---|---|---|---|
RGB | 108 | 137 | 219 |
HSL | 224° | 60.66% | 64.12% |
HSB/HSV | 224° | 50.68% | 85.88% |
CMYK | 50.68% | 37.44% | 0.00% |
14.12% |
HEX | 6C | 89 | DB |
Decimal | 108 | 137 | 219 |
Binary | 1101100 | 10001001 | 11011011 |
Octal | 154 | 211 | 333 |
Examples of css and html codes for elements with #6C89DB color. Also use rgb(108,137,219) instead hex code.
.myTextColor { color: #6C89DB; }
<p style="color:#6C89DB">This sample text font color is #6C89DB.</p>
This text font color is #6C89DB.
.myBgColor { background-color: #6C89DB; }
<div style="background-color:#6C89DB">Inner text</div>
This div background color is #6C89DB.
.myBorderColor { border: 1px solid #6C89DB; }
<div style="border:3px solid #6C89DB">Div</div>
This div border color is #6C89DB.
.myOpacity80 { color: #6C89DB; opacity: 0.8; }
<p style="color:#6C89DB;opacity:0.8;">80%</p>
Text with #6C89DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6C89DB;}
<p style="text-shadow: 3px 3px 1px #6C89DB">Text here.</p>
This text has shadow with #6C89DB color.
.textShadow {text-shadow: 3px 3px 1px #6C89DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6C89DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #6C89DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6C89DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6C89DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #6C89DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6C89DB; -webkit-box-shadow: 1px 1px 3px 2px #6C89DB; box-shadow: 1px 1px 3px 2px #6C89DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6C89DB; -webkit-box-shadow: 1px 1px 3px 2px #6C89DB; box-shadow:1px 1px 3px 2px #6C89DB;">
Div content here</div>
This text has color #6C89DB on black background.
This text has color #6C89DB on white background.
This text has black color on #6C89DB background.
This text has white color on #6C89DB background.