HEX: #3C6CBB
RGB: (60,108,187)
#3C6CBB contains mainly blue color. Web safe color of #3C6CBB is #3366CC (or #36C).
#3C6CBB color RGB value is (60,108,187).
RGB: (60,108,187) (24%,42%,73%)
R 60 of 255 = 24%
G 108 of 255 = 42%
B 187 of 255 = 73%
R + G + B ~ 46%. #3C6CBB is middle color (not dark and not light).
R + G + B =
60 + 108 + 187 = 355 (100%)
R 60 of 355 ~ 16.9%
G 108 of 355 ~ 30.42%
B 187 of 355 ~ 52.68%
#3C6CBB color CMYK value is (68,42,0,27).
CMYK: (68,42,0,27) C68M42Y0K27 (68%,42%,0%,27%) (0.68/0.42/0.00/0.27)
3C | 6C | BB | |
---|---|---|---|
RGB | 60 | 108 | 187 |
HSL | 217° | 51.42% | 48.43% |
HSB/HSV | 217° | 67.91% | 73.33% |
CMYK | 67.91% | 42.25% | 0.00% |
26.67% |
HEX | 3C | 6C | BB |
Decimal | 60 | 108 | 187 |
Binary | 111100 | 1101100 | 10111011 |
Octal | 74 | 154 | 273 |
Examples of css and html codes for elements with #3C6CBB color. Also use rgb(60,108,187) instead hex code.
.myTextColor { color: #3C6CBB; }
<p style="color:#3C6CBB">This sample text font color is #3C6CBB.</p>
This text font color is #3C6CBB.
.myBgColor { background-color: #3C6CBB; }
<div style="background-color:#3C6CBB">Inner text</div>
This div background color is #3C6CBB.
.myBorderColor { border: 1px solid #3C6CBB; }
<div style="border:3px solid #3C6CBB">Div</div>
This div border color is #3C6CBB.
.myOpacity80 { color: #3C6CBB; opacity: 0.8; }
<p style="color:#3C6CBB;opacity:0.8;">80%</p>
Text with #3C6CBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #3C6CBB;}
<p style="text-shadow: 3px 3px 1px #3C6CBB">Text here.</p>
This text has shadow with #3C6CBB color.
.textShadow {text-shadow: 3px 3px 1px #3C6CBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #3C6CBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #3C6CBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#3C6CBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#3C6CBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #3C6CBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #3C6CBB; -webkit-box-shadow: 1px 1px 3px 2px #3C6CBB; box-shadow: 1px 1px 3px 2px #3C6CBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #3C6CBB; -webkit-box-shadow: 1px 1px 3px 2px #3C6CBB; box-shadow:1px 1px 3px 2px #3C6CBB;">
Div content here</div>
This text has color #3C6CBB on black background.
This text has color #3C6CBB on white background.
This text has black color on #3C6CBB background.
This text has white color on #3C6CBB background.