HEX: #4A60B2
RGB: (74,96,178)
#4A60B2 contains mainly blue color. Web safe color of #4A60B2 is #336699 (or #369).
#4A60B2 color RGB value is (74,96,178).
RGB: (74,96,178) (29%,38%,70%)
R 74 of 255 = 29%
G 96 of 255 = 38%
B 178 of 255 = 70%
R + G + B ~ 46%. #4A60B2 is middle color (not dark and not light).
R + G + B =
74 + 96 + 178 = 348 (100%)
R 74 of 348 ~ 21.26%
G 96 of 348 ~ 27.59%
B 178 of 348 ~ 51.15%
#4A60B2 color CMYK value is (58,46,0,30).
CMYK: (58,46,0,30) C58M46Y0K30 (58%,46%,0%,30%) (0.58/0.46/0.00/0.30)
4A | 60 | B2 | |
---|---|---|---|
RGB | 74 | 96 | 178 |
HSL | 227° | 41.27% | 49.41% |
HSB/HSV | 227° | 58.43% | 69.80% |
CMYK | 58.43% | 46.07% | 0.00% |
30.20% |
HEX | 4A | 60 | B2 |
Decimal | 74 | 96 | 178 |
Binary | 1001010 | 1100000 | 10110010 |
Octal | 112 | 140 | 262 |
Examples of css and html codes for elements with #4A60B2 color. Also use rgb(74,96,178) instead hex code.
.myTextColor { color: #4A60B2; }
<p style="color:#4A60B2">This sample text font color is #4A60B2.</p>
This text font color is #4A60B2.
.myBgColor { background-color: #4A60B2; }
<div style="background-color:#4A60B2">Inner text</div>
This div background color is #4A60B2.
.myBorderColor { border: 1px solid #4A60B2; }
<div style="border:3px solid #4A60B2">Div</div>
This div border color is #4A60B2.
.myOpacity80 { color: #4A60B2; opacity: 0.8; }
<p style="color:#4A60B2;opacity:0.8;">80%</p>
Text with #4A60B2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4A60B2;}
<p style="text-shadow: 3px 3px 1px #4A60B2">Text here.</p>
This text has shadow with #4A60B2 color.
.textShadow {text-shadow: 3px 3px 1px #4A60B2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4A60B2, 5px 5px 20px red">Text here.</p>
This text has shadow with #4A60B2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4A60B2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4A60B2, Direction=45, Strength=4)">Text</p>
This text has shadow with #4A60B2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4A60B2; -webkit-box-shadow: 1px 1px 3px 2px #4A60B2; box-shadow: 1px 1px 3px 2px #4A60B2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4A60B2; -webkit-box-shadow: 1px 1px 3px 2px #4A60B2; box-shadow:1px 1px 3px 2px #4A60B2;">
Div content here</div>
This text has color #4A60B2 on black background.
This text has color #4A60B2 on white background.
This text has black color on #4A60B2 background.
This text has white color on #4A60B2 background.