HEX: #6B6DCD
RGB: (107,109,205)
#6B6DCD contains mainly blue color. Web safe color of #6B6DCD is #6666CC (or #66C).
#6B6DCD color RGB value is (107,109,205).
RGB: (107,109,205) (42%,43%,80%)
R 107 of 255 = 42%
G 109 of 255 = 43%
B 205 of 255 = 80%
R + G + B ~ 55%. #6B6DCD is middle color (not dark and not light).
R + G + B =
107 + 109 + 205 = 421 (100%)
R 107 of 421 ~ 25.42%
G 109 of 421 ~ 25.89%
B 205 of 421 ~ 48.69%
#6B6DCD color CMYK value is (48,47,0,20).
CMYK: (48,47,0,20) C48M47Y0K20 (48%,47%,0%,20%) (0.48/0.47/0.00/0.20)
6B | 6D | CD | |
---|---|---|---|
RGB | 107 | 109 | 205 |
HSL | 239° | 49.49% | 61.18% |
HSB/HSV | 239° | 47.80% | 80.39% |
CMYK | 47.80% | 46.83% | 0.00% |
19.61% |
HEX | 6B | 6D | CD |
Decimal | 107 | 109 | 205 |
Binary | 1101011 | 1101101 | 11001101 |
Octal | 153 | 155 | 315 |
Examples of css and html codes for elements with #6B6DCD color. Also use rgb(107,109,205) instead hex code.
.myTextColor { color: #6B6DCD; }
<p style="color:#6B6DCD">This sample text font color is #6B6DCD.</p>
This text font color is #6B6DCD.
.myBgColor { background-color: #6B6DCD; }
<div style="background-color:#6B6DCD">Inner text</div>
This div background color is #6B6DCD.
.myBorderColor { border: 1px solid #6B6DCD; }
<div style="border:3px solid #6B6DCD">Div</div>
This div border color is #6B6DCD.
.myOpacity80 { color: #6B6DCD; opacity: 0.8; }
<p style="color:#6B6DCD;opacity:0.8;">80%</p>
Text with #6B6DCD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6B6DCD;}
<p style="text-shadow: 3px 3px 1px #6B6DCD">Text here.</p>
This text has shadow with #6B6DCD color.
.textShadow {text-shadow: 3px 3px 1px #6B6DCD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6B6DCD, 5px 5px 20px red">Text here.</p>
This text has shadow with #6B6DCD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6B6DCD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6B6DCD, Direction=45, Strength=4)">Text</p>
This text has shadow with #6B6DCD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6B6DCD; -webkit-box-shadow: 1px 1px 3px 2px #6B6DCD; box-shadow: 1px 1px 3px 2px #6B6DCD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6B6DCD; -webkit-box-shadow: 1px 1px 3px 2px #6B6DCD; box-shadow:1px 1px 3px 2px #6B6DCD;">
Div content here</div>
This text has color #6B6DCD on black background.
This text has color #6B6DCD on white background.
This text has black color on #6B6DCD background.
This text has white color on #6B6DCD background.