HEX: #4A6AA2
RGB: (74,106,162)
#4A6AA2 contains mainly green and blue colors. Web safe color of #4A6AA2 is #336699 (or #369).
#4A6AA2 color RGB value is (74,106,162).
RGB: (74,106,162) (29%,42%,64%)
R 74 of 255 = 29%
G 106 of 255 = 42%
B 162 of 255 = 64%
R + G + B ~ 45%. #4A6AA2 is middle color (not dark and not light).
R + G + B =
74 + 106 + 162 = 342 (100%)
R 74 of 342 ~ 21.64%
G 106 of 342 ~ 30.99%
B 162 of 342 ~ 47.37%
#4A6AA2 color CMYK value is (54,35,0,36).
CMYK: (54,35,0,36) C54M35Y0K36 (54%,35%,0%,36%) (0.54/0.35/0.00/0.36)
4A | 6A | A2 | |
---|---|---|---|
RGB | 74 | 106 | 162 |
HSL | 218° | 37.29% | 46.27% |
HSB/HSV | 218° | 54.32% | 63.53% |
CMYK | 54.32% | 34.57% | 0.00% |
36.47% |
HEX | 4A | 6A | A2 |
Decimal | 74 | 106 | 162 |
Binary | 1001010 | 1101010 | 10100010 |
Octal | 112 | 152 | 242 |
Examples of css and html codes for elements with #4A6AA2 color. Also use rgb(74,106,162) instead hex code.
.myTextColor { color: #4A6AA2; }
<p style="color:#4A6AA2">This sample text font color is #4A6AA2.</p>
This text font color is #4A6AA2.
.myBgColor { background-color: #4A6AA2; }
<div style="background-color:#4A6AA2">Inner text</div>
This div background color is #4A6AA2.
.myBorderColor { border: 1px solid #4A6AA2; }
<div style="border:3px solid #4A6AA2">Div</div>
This div border color is #4A6AA2.
.myOpacity80 { color: #4A6AA2; opacity: 0.8; }
<p style="color:#4A6AA2;opacity:0.8;">80%</p>
Text with #4A6AA2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4A6AA2;}
<p style="text-shadow: 3px 3px 1px #4A6AA2">Text here.</p>
This text has shadow with #4A6AA2 color.
.textShadow {text-shadow: 3px 3px 1px #4A6AA2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4A6AA2, 5px 5px 20px red">Text here.</p>
This text has shadow with #4A6AA2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4A6AA2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4A6AA2, Direction=45, Strength=4)">Text</p>
This text has shadow with #4A6AA2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4A6AA2; -webkit-box-shadow: 1px 1px 3px 2px #4A6AA2; box-shadow: 1px 1px 3px 2px #4A6AA2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4A6AA2; -webkit-box-shadow: 1px 1px 3px 2px #4A6AA2; box-shadow:1px 1px 3px 2px #4A6AA2;">
Div content here</div>
This text has color #4A6AA2 on black background.
This text has color #4A6AA2 on white background.
This text has black color on #4A6AA2 background.
This text has white color on #4A6AA2 background.