HEX: #4A777C
RGB: (74,119,124)
#4A777C contains red, green and blue colors in about the same proportion. Web safe color of #4A777C is #336666 (or #366).
#4A777C color RGB value is (74,119,124).
RGB: (74,119,124) (29%,47%,49%)
R 74 of 255 = 29%
G 119 of 255 = 47%
B 124 of 255 = 49%
R + G + B ~ 42%. #4A777C is middle color (not dark and not light).
R + G + B =
74 + 119 + 124 = 317 (100%)
R 74 of 317 ~ 23.34%
G 119 of 317 ~ 37.54%
B 124 of 317 ~ 39.12%
#4A777C color CMYK value is (40,4,0,51).
CMYK: (40,4,0,51) C40M4Y0K51 (40%,4%,0%,51%) (0.40/0.04/0.00/0.51)
4A | 77 | 7C | |
---|---|---|---|
RGB | 74 | 119 | 124 |
HSL | 186° | 25.25% | 38.82% |
HSB/HSV | 186° | 40.32% | 48.63% |
CMYK | 40.32% | 4.03% | 0.00% |
51.37% |
HEX | 4A | 77 | 7C |
Decimal | 74 | 119 | 124 |
Binary | 1001010 | 1110111 | 1111100 |
Octal | 112 | 167 | 174 |
Examples of css and html codes for elements with #4A777C color. Also use rgb(74,119,124) instead hex code.
.myTextColor { color: #4A777C; }
<p style="color:#4A777C">This sample text font color is #4A777C.</p>
This text font color is #4A777C.
.myBgColor { background-color: #4A777C; }
<div style="background-color:#4A777C">Inner text</div>
This div background color is #4A777C.
.myBorderColor { border: 1px solid #4A777C; }
<div style="border:3px solid #4A777C">Div</div>
This div border color is #4A777C.
.myOpacity80 { color: #4A777C; opacity: 0.8; }
<p style="color:#4A777C;opacity:0.8;">80%</p>
Text with #4A777C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4A777C;}
<p style="text-shadow: 3px 3px 1px #4A777C">Text here.</p>
This text has shadow with #4A777C color.
.textShadow {text-shadow: 3px 3px 1px #4A777C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4A777C, 5px 5px 20px red">Text here.</p>
This text has shadow with #4A777C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4A777C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4A777C, Direction=45, Strength=4)">Text</p>
This text has shadow with #4A777C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4A777C; -webkit-box-shadow: 1px 1px 3px 2px #4A777C; box-shadow: 1px 1px 3px 2px #4A777C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4A777C; -webkit-box-shadow: 1px 1px 3px 2px #4A777C; box-shadow:1px 1px 3px 2px #4A777C;">
Div content here</div>
This text has color #4A777C on black background.
This text has color #4A777C on white background.
This text has black color on #4A777C background.
This text has white color on #4A777C background.