HEX: #505363
RGB: (80,83,99)
#505363 contains red, green and blue colors in about the same proportion. Web safe color of #505363 is #666666 (or #666).
#505363 color RGB value is (80,83,99).
RGB: (80,83,99) (31%,33%,39%)
R 80 of 255 = 31%
G 83 of 255 = 33%
B 99 of 255 = 39%
R + G + B ~ 34%. #505363 is quite dark color.
R + G + B =
80 + 83 + 99 = 262 (100%)
R 80 of 262 ~ 30.53%
G 83 of 262 ~ 31.68%
B 99 of 262 ~ 37.79%
#505363 color CMYK value is (19,16,0,61).
CMYK: (19,16,0,61) C19M16Y0K61 (19%,16%,0%,61%) (0.19/0.16/0.00/0.61)
50 | 53 | 63 | |
---|---|---|---|
RGB | 80 | 83 | 99 |
HSL | 231° | 10.61% | 35.10% |
HSB/HSV | 231° | 19.19% | 38.82% |
CMYK | 19.19% | 16.16% | 0.00% |
61.18% |
HEX | 50 | 53 | 63 |
Decimal | 80 | 83 | 99 |
Binary | 1010000 | 1010011 | 1100011 |
Octal | 120 | 123 | 143 |
Examples of css and html codes for elements with #505363 color. Also use rgb(80,83,99) instead hex code.
.myTextColor { color: #505363; }
<p style="color:#505363">This sample text font color is #505363.</p>
This text font color is #505363.
.myBgColor { background-color: #505363; }
<div style="background-color:#505363">Inner text</div>
This div background color is #505363.
.myBorderColor { border: 1px solid #505363; }
<div style="border:3px solid #505363">Div</div>
This div border color is #505363.
.myOpacity80 { color: #505363; opacity: 0.8; }
<p style="color:#505363;opacity:0.8;">80%</p>
Text with #505363 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #505363;}
<p style="text-shadow: 3px 3px 1px #505363">Text here.</p>
This text has shadow with #505363 color.
.textShadow {text-shadow: 3px 3px 1px #505363, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #505363, 5px 5px 20px red">Text here.</p>
This text has shadow with #505363 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#505363, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#505363, Direction=45, Strength=4)">Text</p>
This text has shadow with #505363 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #505363; -webkit-box-shadow: 1px 1px 3px 2px #505363; box-shadow: 1px 1px 3px 2px #505363; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #505363; -webkit-box-shadow: 1px 1px 3px 2px #505363; box-shadow:1px 1px 3px 2px #505363;">
Div content here</div>
This text has color #505363 on black background.
This text has color #505363 on white background.
This text has black color on #505363 background.
This text has white color on #505363 background.