HEX: #505764
RGB: (80,87,100)
#505764 contains red, green and blue colors in about the same proportion. Web safe color of #505764 is #666666 (or #666).
#505764 color RGB value is (80,87,100).
RGB: (80,87,100) (31%,34%,39%)
R 80 of 255 = 31%
G 87 of 255 = 34%
B 100 of 255 = 39%
R + G + B ~ 35%. #505764 is quite dark color.
R + G + B =
80 + 87 + 100 = 267 (100%)
R 80 of 267 ~ 29.96%
G 87 of 267 ~ 32.58%
B 100 of 267 ~ 37.45%
#505764 color CMYK value is (20,13,0,61).
CMYK: (20,13,0,61) C20M13Y0K61 (20%,13%,0%,61%) (0.20/0.13/0.00/0.61)
50 | 57 | 64 | |
---|---|---|---|
RGB | 80 | 87 | 100 |
HSL | 219° | 11.11% | 35.29% |
HSB/HSV | 219° | 20.00% | 39.22% |
CMYK | 20.00% | 13.00% | 0.00% |
60.78% |
HEX | 50 | 57 | 64 |
Decimal | 80 | 87 | 100 |
Binary | 1010000 | 1010111 | 1100100 |
Octal | 120 | 127 | 144 |
Examples of css and html codes for elements with #505764 color. Also use rgb(80,87,100) instead hex code.
.myTextColor { color: #505764; }
<p style="color:#505764">This sample text font color is #505764.</p>
This text font color is #505764.
.myBgColor { background-color: #505764; }
<div style="background-color:#505764">Inner text</div>
This div background color is #505764.
.myBorderColor { border: 1px solid #505764; }
<div style="border:3px solid #505764">Div</div>
This div border color is #505764.
.myOpacity80 { color: #505764; opacity: 0.8; }
<p style="color:#505764;opacity:0.8;">80%</p>
Text with #505764 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #505764;}
<p style="text-shadow: 3px 3px 1px #505764">Text here.</p>
This text has shadow with #505764 color.
.textShadow {text-shadow: 3px 3px 1px #505764, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #505764, 5px 5px 20px red">Text here.</p>
This text has shadow with #505764 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#505764, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#505764, Direction=45, Strength=4)">Text</p>
This text has shadow with #505764 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #505764; -webkit-box-shadow: 1px 1px 3px 2px #505764; box-shadow: 1px 1px 3px 2px #505764; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #505764; -webkit-box-shadow: 1px 1px 3px 2px #505764; box-shadow:1px 1px 3px 2px #505764;">
Div content here</div>
This text has color #505764 on black background.
This text has color #505764 on white background.
This text has black color on #505764 background.
This text has white color on #505764 background.