HEX: #4C488C
RGB: (76,72,140)
#4C488C contains mainly blue color. Web safe color of #4C488C is #333399 (or #339).
#4C488C color RGB value is (76,72,140).
RGB: (76,72,140) (30%,28%,55%)
R 76 of 255 = 30%
G 72 of 255 = 28%
B 140 of 255 = 55%
R + G + B ~ 38%. #4C488C is quite dark color.
R + G + B =
76 + 72 + 140 = 288 (100%)
R 76 of 288 ~ 26.39%
G 72 of 288 ~ 25%
B 140 of 288 ~ 48.61%
#4C488C color CMYK value is (46,49,0,45).
CMYK: (46,49,0,45) C46M49Y0K45 (46%,49%,0%,45%) (0.46/0.49/0.00/0.45)
4C | 48 | 8C | |
---|---|---|---|
RGB | 76 | 72 | 140 |
HSL | 244° | 32.08% | 41.57% |
HSB/HSV | 244° | 48.57% | 54.90% |
CMYK | 45.71% | 48.57% | 0.00% |
45.10% |
HEX | 4C | 48 | 8C |
Decimal | 76 | 72 | 140 |
Binary | 1001100 | 1001000 | 10001100 |
Octal | 114 | 110 | 214 |
Examples of css and html codes for elements with #4C488C color. Also use rgb(76,72,140) instead hex code.
.myTextColor { color: #4C488C; }
<p style="color:#4C488C">This sample text font color is #4C488C.</p>
This text font color is #4C488C.
.myBgColor { background-color: #4C488C; }
<div style="background-color:#4C488C">Inner text</div>
This div background color is #4C488C.
.myBorderColor { border: 1px solid #4C488C; }
<div style="border:3px solid #4C488C">Div</div>
This div border color is #4C488C.
.myOpacity80 { color: #4C488C; opacity: 0.8; }
<p style="color:#4C488C;opacity:0.8;">80%</p>
Text with #4C488C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4C488C;}
<p style="text-shadow: 3px 3px 1px #4C488C">Text here.</p>
This text has shadow with #4C488C color.
.textShadow {text-shadow: 3px 3px 1px #4C488C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4C488C, 5px 5px 20px red">Text here.</p>
This text has shadow with #4C488C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4C488C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4C488C, Direction=45, Strength=4)">Text</p>
This text has shadow with #4C488C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4C488C; -webkit-box-shadow: 1px 1px 3px 2px #4C488C; box-shadow: 1px 1px 3px 2px #4C488C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4C488C; -webkit-box-shadow: 1px 1px 3px 2px #4C488C; box-shadow:1px 1px 3px 2px #4C488C;">
Div content here</div>
This text has color #4C488C on black background.
This text has color #4C488C on white background.
This text has black color on #4C488C background.
This text has white color on #4C488C background.