HEX: #505966
RGB: (80,89,102)
#505966 contains red, green and blue colors in about the same proportion. Web safe color of #505966 is #666666 (or #666).
#505966 color RGB value is (80,89,102).
RGB: (80,89,102) (31%,35%,40%)
R 80 of 255 = 31%
G 89 of 255 = 35%
B 102 of 255 = 40%
R + G + B ~ 35%. #505966 is quite dark color.
R + G + B =
80 + 89 + 102 = 271 (100%)
R 80 of 271 ~ 29.52%
G 89 of 271 ~ 32.84%
B 102 of 271 ~ 37.64%
#505966 color CMYK value is (22,13,0,60).
CMYK: (22,13,0,60) C22M13Y0K60 (22%,13%,0%,60%) (0.22/0.13/0.00/0.60)
50 | 59 | 66 | |
---|---|---|---|
RGB | 80 | 89 | 102 |
HSL | 215° | 12.09% | 35.69% |
HSB/HSV | 215° | 21.57% | 40.00% |
CMYK | 21.57% | 12.75% | 0.00% |
60.00% |
HEX | 50 | 59 | 66 |
Decimal | 80 | 89 | 102 |
Binary | 1010000 | 1011001 | 1100110 |
Octal | 120 | 131 | 146 |
Examples of css and html codes for elements with #505966 color. Also use rgb(80,89,102) instead hex code.
.myTextColor { color: #505966; }
<p style="color:#505966">This sample text font color is #505966.</p>
This text font color is #505966.
.myBgColor { background-color: #505966; }
<div style="background-color:#505966">Inner text</div>
This div background color is #505966.
.myBorderColor { border: 1px solid #505966; }
<div style="border:3px solid #505966">Div</div>
This div border color is #505966.
.myOpacity80 { color: #505966; opacity: 0.8; }
<p style="color:#505966;opacity:0.8;">80%</p>
Text with #505966 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #505966;}
<p style="text-shadow: 3px 3px 1px #505966">Text here.</p>
This text has shadow with #505966 color.
.textShadow {text-shadow: 3px 3px 1px #505966, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #505966, 5px 5px 20px red">Text here.</p>
This text has shadow with #505966 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#505966, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#505966, Direction=45, Strength=4)">Text</p>
This text has shadow with #505966 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #505966; -webkit-box-shadow: 1px 1px 3px 2px #505966; box-shadow: 1px 1px 3px 2px #505966; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #505966; -webkit-box-shadow: 1px 1px 3px 2px #505966; box-shadow:1px 1px 3px 2px #505966;">
Div content here</div>
This text has color #505966 on black background.
This text has color #505966 on white background.
This text has black color on #505966 background.
This text has white color on #505966 background.