HEX: #6B77BE
RGB: (107,119,190)
#6B77BE contains mainly blue color. Web safe color of #6B77BE is #6666CC (or #66C).
#6B77BE color RGB value is (107,119,190).
RGB: (107,119,190) (42%,47%,75%)
R 107 of 255 = 42%
G 119 of 255 = 47%
B 190 of 255 = 75%
R + G + B ~ 55%. #6B77BE is middle color (not dark and not light).
R + G + B =
107 + 119 + 190 = 416 (100%)
R 107 of 416 ~ 25.72%
G 119 of 416 ~ 28.61%
B 190 of 416 ~ 45.67%
#6B77BE color CMYK value is (44,37,0,25).
CMYK: (44,37,0,25) C44M37Y0K25 (44%,37%,0%,25%) (0.44/0.37/0.00/0.25)
6B | 77 | BE | |
---|---|---|---|
RGB | 107 | 119 | 190 |
HSL | 231° | 38.97% | 58.24% |
HSB/HSV | 231° | 43.68% | 74.51% |
CMYK | 43.68% | 37.37% | 0.00% |
25.49% |
HEX | 6B | 77 | BE |
Decimal | 107 | 119 | 190 |
Binary | 1101011 | 1110111 | 10111110 |
Octal | 153 | 167 | 276 |
Examples of css and html codes for elements with #6B77BE color. Also use rgb(107,119,190) instead hex code.
.myTextColor { color: #6B77BE; }
<p style="color:#6B77BE">This sample text font color is #6B77BE.</p>
This text font color is #6B77BE.
.myBgColor { background-color: #6B77BE; }
<div style="background-color:#6B77BE">Inner text</div>
This div background color is #6B77BE.
.myBorderColor { border: 1px solid #6B77BE; }
<div style="border:3px solid #6B77BE">Div</div>
This div border color is #6B77BE.
.myOpacity80 { color: #6B77BE; opacity: 0.8; }
<p style="color:#6B77BE;opacity:0.8;">80%</p>
Text with #6B77BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6B77BE;}
<p style="text-shadow: 3px 3px 1px #6B77BE">Text here.</p>
This text has shadow with #6B77BE color.
.textShadow {text-shadow: 3px 3px 1px #6B77BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6B77BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #6B77BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6B77BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6B77BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #6B77BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6B77BE; -webkit-box-shadow: 1px 1px 3px 2px #6B77BE; box-shadow: 1px 1px 3px 2px #6B77BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6B77BE; -webkit-box-shadow: 1px 1px 3px 2px #6B77BE; box-shadow:1px 1px 3px 2px #6B77BE;">
Div content here</div>
This text has color #6B77BE on black background.
This text has color #6B77BE on white background.
This text has black color on #6B77BE background.
This text has white color on #6B77BE background.