HEX: #52777D
RGB: (82,119,125)
#52777D contains red, green and blue colors in about the same proportion. Web safe color of #52777D is #666666 (or #666).
#52777D color RGB value is (82,119,125).
RGB: (82,119,125) (32%,47%,49%)
R 82 of 255 = 32%
G 119 of 255 = 47%
B 125 of 255 = 49%
R + G + B ~ 43%. #52777D is middle color (not dark and not light).
R + G + B =
82 + 119 + 125 = 326 (100%)
R 82 of 326 ~ 25.15%
G 119 of 326 ~ 36.5%
B 125 of 326 ~ 38.34%
#52777D color CMYK value is (34,5,0,51).
CMYK: (34,5,0,51) C34M5Y0K51 (34%,5%,0%,51%) (0.34/0.05/0.00/0.51)
52 | 77 | 7D | |
---|---|---|---|
RGB | 82 | 119 | 125 |
HSL | 188° | 20.77% | 40.59% |
HSB/HSV | 188° | 34.40% | 49.02% |
CMYK | 34.40% | 4.80% | 0.00% |
50.98% |
HEX | 52 | 77 | 7D |
Decimal | 82 | 119 | 125 |
Binary | 1010010 | 1110111 | 1111101 |
Octal | 122 | 167 | 175 |
Examples of css and html codes for elements with #52777D color. Also use rgb(82,119,125) instead hex code.
.myTextColor { color: #52777D; }
<p style="color:#52777D">This sample text font color is #52777D.</p>
This text font color is #52777D.
.myBgColor { background-color: #52777D; }
<div style="background-color:#52777D">Inner text</div>
This div background color is #52777D.
.myBorderColor { border: 1px solid #52777D; }
<div style="border:3px solid #52777D">Div</div>
This div border color is #52777D.
.myOpacity80 { color: #52777D; opacity: 0.8; }
<p style="color:#52777D;opacity:0.8;">80%</p>
Text with #52777D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #52777D;}
<p style="text-shadow: 3px 3px 1px #52777D">Text here.</p>
This text has shadow with #52777D color.
.textShadow {text-shadow: 3px 3px 1px #52777D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #52777D, 5px 5px 20px red">Text here.</p>
This text has shadow with #52777D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#52777D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#52777D, Direction=45, Strength=4)">Text</p>
This text has shadow with #52777D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #52777D; -webkit-box-shadow: 1px 1px 3px 2px #52777D; box-shadow: 1px 1px 3px 2px #52777D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #52777D; -webkit-box-shadow: 1px 1px 3px 2px #52777D; box-shadow:1px 1px 3px 2px #52777D;">
Div content here</div>
This text has color #52777D on black background.
This text has color #52777D on white background.
This text has black color on #52777D background.
This text has white color on #52777D background.