HEX: #4B509C
RGB: (75,80,156)
#4B509C contains mainly blue color. Web safe color of #4B509C is #336699 (or #369).
#4B509C color RGB value is (75,80,156).
RGB: (75,80,156) (29%,31%,61%)
R 75 of 255 = 29%
G 80 of 255 = 31%
B 156 of 255 = 61%
R + G + B ~ 40%. #4B509C is middle color (not dark and not light).
R + G + B =
75 + 80 + 156 = 311 (100%)
R 75 of 311 ~ 24.12%
G 80 of 311 ~ 25.72%
B 156 of 311 ~ 50.16%
#4B509C color CMYK value is (52,49,0,39).
CMYK: (52,49,0,39) C52M49Y0K39 (52%,49%,0%,39%) (0.52/0.49/0.00/0.39)
4B | 50 | 9C | |
---|---|---|---|
RGB | 75 | 80 | 156 |
HSL | 236° | 35.06% | 45.29% |
HSB/HSV | 236° | 51.92% | 61.18% |
CMYK | 51.92% | 48.72% | 0.00% |
38.82% |
HEX | 4B | 50 | 9C |
Decimal | 75 | 80 | 156 |
Binary | 1001011 | 1010000 | 10011100 |
Octal | 113 | 120 | 234 |
Examples of css and html codes for elements with #4B509C color. Also use rgb(75,80,156) instead hex code.
.myTextColor { color: #4B509C; }
<p style="color:#4B509C">This sample text font color is #4B509C.</p>
This text font color is #4B509C.
.myBgColor { background-color: #4B509C; }
<div style="background-color:#4B509C">Inner text</div>
This div background color is #4B509C.
.myBorderColor { border: 1px solid #4B509C; }
<div style="border:3px solid #4B509C">Div</div>
This div border color is #4B509C.
.myOpacity80 { color: #4B509C; opacity: 0.8; }
<p style="color:#4B509C;opacity:0.8;">80%</p>
Text with #4B509C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4B509C;}
<p style="text-shadow: 3px 3px 1px #4B509C">Text here.</p>
This text has shadow with #4B509C color.
.textShadow {text-shadow: 3px 3px 1px #4B509C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4B509C, 5px 5px 20px red">Text here.</p>
This text has shadow with #4B509C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4B509C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4B509C, Direction=45, Strength=4)">Text</p>
This text has shadow with #4B509C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4B509C; -webkit-box-shadow: 1px 1px 3px 2px #4B509C; box-shadow: 1px 1px 3px 2px #4B509C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4B509C; -webkit-box-shadow: 1px 1px 3px 2px #4B509C; box-shadow:1px 1px 3px 2px #4B509C;">
Div content here</div>
This text has color #4B509C on black background.
This text has color #4B509C on white background.
This text has black color on #4B509C background.
This text has white color on #4B509C background.