HEX: #4C6DDD
RGB: (76,109,221)
#4C6DDD contains mainly blue color. Web safe color of #4C6DDD is #3366CC (or #36C).
#4C6DDD color RGB value is (76,109,221).
RGB: (76,109,221) (30%,43%,87%)
R 76 of 255 = 30%
G 109 of 255 = 43%
B 221 of 255 = 87%
R + G + B ~ 53%. #4C6DDD is middle color (not dark and not light).
R + G + B =
76 + 109 + 221 = 406 (100%)
R 76 of 406 ~ 18.72%
G 109 of 406 ~ 26.85%
B 221 of 406 ~ 54.43%
#4C6DDD color CMYK value is (66,51,0,13).
CMYK: (66,51,0,13) C66M51Y0K13 (66%,51%,0%,13%) (0.66/0.51/0.00/0.13)
4C | 6D | DD | |
---|---|---|---|
RGB | 76 | 109 | 221 |
HSL | 226° | 68.08% | 58.24% |
HSB/HSV | 226° | 65.61% | 86.67% |
CMYK | 65.61% | 50.68% | 0.00% |
13.33% |
HEX | 4C | 6D | DD |
Decimal | 76 | 109 | 221 |
Binary | 1001100 | 1101101 | 11011101 |
Octal | 114 | 155 | 335 |
Examples of css and html codes for elements with #4C6DDD color. Also use rgb(76,109,221) instead hex code.
.myTextColor { color: #4C6DDD; }
<p style="color:#4C6DDD">This sample text font color is #4C6DDD.</p>
This text font color is #4C6DDD.
.myBgColor { background-color: #4C6DDD; }
<div style="background-color:#4C6DDD">Inner text</div>
This div background color is #4C6DDD.
.myBorderColor { border: 1px solid #4C6DDD; }
<div style="border:3px solid #4C6DDD">Div</div>
This div border color is #4C6DDD.
.myOpacity80 { color: #4C6DDD; opacity: 0.8; }
<p style="color:#4C6DDD;opacity:0.8;">80%</p>
Text with #4C6DDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4C6DDD;}
<p style="text-shadow: 3px 3px 1px #4C6DDD">Text here.</p>
This text has shadow with #4C6DDD color.
.textShadow {text-shadow: 3px 3px 1px #4C6DDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4C6DDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #4C6DDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4C6DDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4C6DDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #4C6DDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4C6DDD; -webkit-box-shadow: 1px 1px 3px 2px #4C6DDD; box-shadow: 1px 1px 3px 2px #4C6DDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4C6DDD; -webkit-box-shadow: 1px 1px 3px 2px #4C6DDD; box-shadow:1px 1px 3px 2px #4C6DDD;">
Div content here</div>
This text has color #4C6DDD on black background.
This text has color #4C6DDD on white background.
This text has black color on #4C6DDD background.
This text has white color on #4C6DDD background.