HEX: #6C74BB
RGB: (108,116,187)
#6C74BB contains mainly blue color. Web safe color of #6C74BB is #6666CC (or #66C).
#6C74BB color RGB value is (108,116,187).
RGB: (108,116,187) (42%,45%,73%)
R 108 of 255 = 42%
G 116 of 255 = 45%
B 187 of 255 = 73%
R + G + B ~ 53%. #6C74BB is middle color (not dark and not light).
R + G + B =
108 + 116 + 187 = 411 (100%)
R 108 of 411 ~ 26.28%
G 116 of 411 ~ 28.22%
B 187 of 411 ~ 45.5%
#6C74BB color CMYK value is (42,38,0,27).
CMYK: (42,38,0,27) C42M38Y0K27 (42%,38%,0%,27%) (0.42/0.38/0.00/0.27)
6C | 74 | BB | |
---|---|---|---|
RGB | 108 | 116 | 187 |
HSL | 234° | 36.74% | 57.84% |
HSB/HSV | 234° | 42.25% | 73.33% |
CMYK | 42.25% | 37.97% | 0.00% |
26.67% |
HEX | 6C | 74 | BB |
Decimal | 108 | 116 | 187 |
Binary | 1101100 | 1110100 | 10111011 |
Octal | 154 | 164 | 273 |
Examples of css and html codes for elements with #6C74BB color. Also use rgb(108,116,187) instead hex code.
.myTextColor { color: #6C74BB; }
<p style="color:#6C74BB">This sample text font color is #6C74BB.</p>
This text font color is #6C74BB.
.myBgColor { background-color: #6C74BB; }
<div style="background-color:#6C74BB">Inner text</div>
This div background color is #6C74BB.
.myBorderColor { border: 1px solid #6C74BB; }
<div style="border:3px solid #6C74BB">Div</div>
This div border color is #6C74BB.
.myOpacity80 { color: #6C74BB; opacity: 0.8; }
<p style="color:#6C74BB;opacity:0.8;">80%</p>
Text with #6C74BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6C74BB;}
<p style="text-shadow: 3px 3px 1px #6C74BB">Text here.</p>
This text has shadow with #6C74BB color.
.textShadow {text-shadow: 3px 3px 1px #6C74BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6C74BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #6C74BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6C74BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6C74BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #6C74BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6C74BB; -webkit-box-shadow: 1px 1px 3px 2px #6C74BB; box-shadow: 1px 1px 3px 2px #6C74BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6C74BB; -webkit-box-shadow: 1px 1px 3px 2px #6C74BB; box-shadow:1px 1px 3px 2px #6C74BB;">
Div content here</div>
This text has color #6C74BB on black background.
This text has color #6C74BB on white background.
This text has black color on #6C74BB background.
This text has white color on #6C74BB background.