HEX: #4A477D
RGB: (74,71,125)
#4A477D contains red, green and blue colors in about the same proportion. Web safe color of #4A477D is #333366 (or #336).
#4A477D color RGB value is (74,71,125).
RGB: (74,71,125) (29%,28%,49%)
R 74 of 255 = 29%
G 71 of 255 = 28%
B 125 of 255 = 49%
R + G + B ~ 35%. #4A477D is quite dark color.
R + G + B =
74 + 71 + 125 = 270 (100%)
R 74 of 270 ~ 27.41%
G 71 of 270 ~ 26.3%
B 125 of 270 ~ 46.3%
#4A477D color CMYK value is (41,43,0,51).
CMYK: (41,43,0,51) C41M43Y0K51 (41%,43%,0%,51%) (0.41/0.43/0.00/0.51)
4A | 47 | 7D | |
---|---|---|---|
RGB | 74 | 71 | 125 |
HSL | 243° | 27.55% | 38.43% |
HSB/HSV | 243° | 43.20% | 49.02% |
CMYK | 40.80% | 43.20% | 0.00% |
50.98% |
HEX | 4A | 47 | 7D |
Decimal | 74 | 71 | 125 |
Binary | 1001010 | 1000111 | 1111101 |
Octal | 112 | 107 | 175 |
Examples of css and html codes for elements with #4A477D color. Also use rgb(74,71,125) instead hex code.
.myTextColor { color: #4A477D; }
<p style="color:#4A477D">This sample text font color is #4A477D.</p>
This text font color is #4A477D.
.myBgColor { background-color: #4A477D; }
<div style="background-color:#4A477D">Inner text</div>
This div background color is #4A477D.
.myBorderColor { border: 1px solid #4A477D; }
<div style="border:3px solid #4A477D">Div</div>
This div border color is #4A477D.
.myOpacity80 { color: #4A477D; opacity: 0.8; }
<p style="color:#4A477D;opacity:0.8;">80%</p>
Text with #4A477D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4A477D;}
<p style="text-shadow: 3px 3px 1px #4A477D">Text here.</p>
This text has shadow with #4A477D color.
.textShadow {text-shadow: 3px 3px 1px #4A477D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4A477D, 5px 5px 20px red">Text here.</p>
This text has shadow with #4A477D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4A477D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4A477D, Direction=45, Strength=4)">Text</p>
This text has shadow with #4A477D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4A477D; -webkit-box-shadow: 1px 1px 3px 2px #4A477D; box-shadow: 1px 1px 3px 2px #4A477D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4A477D; -webkit-box-shadow: 1px 1px 3px 2px #4A477D; box-shadow:1px 1px 3px 2px #4A477D;">
Div content here</div>
This text has color #4A477D on black background.
This text has color #4A477D on white background.
This text has black color on #4A477D background.
This text has white color on #4A477D background.