HEX: #53585D
RGB: (83,88,93)
#53585D contains red, green and blue colors in about the same proportion. Web safe color of #53585D is #666666 (or #666).
#53585D color RGB value is (83,88,93).
RGB: (83,88,93) (33%,35%,36%)
R 83 of 255 = 33%
G 88 of 255 = 35%
B 93 of 255 = 36%
R + G + B ~ 35%. #53585D is quite dark color.
R + G + B =
83 + 88 + 93 = 264 (100%)
R 83 of 264 ~ 31.44%
G 88 of 264 ~ 33.33%
B 93 of 264 ~ 35.23%
#53585D color CMYK value is (11,5,0,64).
CMYK: (11,5,0,64) C11M5Y0K64 (11%,5%,0%,64%) (0.11/0.05/0.00/0.64)
53 | 58 | 5D | |
---|---|---|---|
RGB | 83 | 88 | 93 |
HSL | 210° | 5.68% | 34.51% |
HSB/HSV | 210° | 10.75% | 36.47% |
CMYK | 10.75% | 5.38% | 0.00% |
63.53% |
HEX | 53 | 58 | 5D |
Decimal | 83 | 88 | 93 |
Binary | 1010011 | 1011000 | 1011101 |
Octal | 123 | 130 | 135 |
Examples of css and html codes for elements with #53585D color. Also use rgb(83,88,93) instead hex code.
.myTextColor { color: #53585D; }
<p style="color:#53585D">This sample text font color is #53585D.</p>
This text font color is #53585D.
.myBgColor { background-color: #53585D; }
<div style="background-color:#53585D">Inner text</div>
This div background color is #53585D.
.myBorderColor { border: 1px solid #53585D; }
<div style="border:3px solid #53585D">Div</div>
This div border color is #53585D.
.myOpacity80 { color: #53585D; opacity: 0.8; }
<p style="color:#53585D;opacity:0.8;">80%</p>
Text with #53585D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53585D;}
<p style="text-shadow: 3px 3px 1px #53585D">Text here.</p>
This text has shadow with #53585D color.
.textShadow {text-shadow: 3px 3px 1px #53585D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53585D, 5px 5px 20px red">Text here.</p>
This text has shadow with #53585D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53585D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53585D, Direction=45, Strength=4)">Text</p>
This text has shadow with #53585D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53585D; -webkit-box-shadow: 1px 1px 3px 2px #53585D; box-shadow: 1px 1px 3px 2px #53585D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53585D; -webkit-box-shadow: 1px 1px 3px 2px #53585D; box-shadow:1px 1px 3px 2px #53585D;">
Div content here</div>
This text has color #53585D on black background.
This text has color #53585D on white background.
This text has black color on #53585D background.
This text has white color on #53585D background.