HEX: #53586B
RGB: (83,88,107)
#53586B contains red, green and blue colors in about the same proportion. Web safe color of #53586B is #666666 (or #666).
#53586B color RGB value is (83,88,107).
RGB: (83,88,107) (33%,35%,42%)
R 83 of 255 = 33%
G 88 of 255 = 35%
B 107 of 255 = 42%
R + G + B ~ 37%. #53586B is quite dark color.
R + G + B =
83 + 88 + 107 = 278 (100%)
R 83 of 278 ~ 29.86%
G 88 of 278 ~ 31.65%
B 107 of 278 ~ 38.49%
#53586B color CMYK value is (22,18,0,58).
CMYK: (22,18,0,58) C22M18Y0K58 (22%,18%,0%,58%) (0.22/0.18/0.00/0.58)
53 | 58 | 6B | |
---|---|---|---|
RGB | 83 | 88 | 107 |
HSL | 228° | 12.63% | 37.25% |
HSB/HSV | 228° | 22.43% | 41.96% |
CMYK | 22.43% | 17.76% | 0.00% |
58.04% |
HEX | 53 | 58 | 6B |
Decimal | 83 | 88 | 107 |
Binary | 1010011 | 1011000 | 1101011 |
Octal | 123 | 130 | 153 |
Examples of css and html codes for elements with #53586B color. Also use rgb(83,88,107) instead hex code.
.myTextColor { color: #53586B; }
<p style="color:#53586B">This sample text font color is #53586B.</p>
This text font color is #53586B.
.myBgColor { background-color: #53586B; }
<div style="background-color:#53586B">Inner text</div>
This div background color is #53586B.
.myBorderColor { border: 1px solid #53586B; }
<div style="border:3px solid #53586B">Div</div>
This div border color is #53586B.
.myOpacity80 { color: #53586B; opacity: 0.8; }
<p style="color:#53586B;opacity:0.8;">80%</p>
Text with #53586B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53586B;}
<p style="text-shadow: 3px 3px 1px #53586B">Text here.</p>
This text has shadow with #53586B color.
.textShadow {text-shadow: 3px 3px 1px #53586B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53586B, 5px 5px 20px red">Text here.</p>
This text has shadow with #53586B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53586B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53586B, Direction=45, Strength=4)">Text</p>
This text has shadow with #53586B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53586B; -webkit-box-shadow: 1px 1px 3px 2px #53586B; box-shadow: 1px 1px 3px 2px #53586B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53586B; -webkit-box-shadow: 1px 1px 3px 2px #53586B; box-shadow:1px 1px 3px 2px #53586B;">
Div content here</div>
This text has color #53586B on black background.
This text has color #53586B on white background.
This text has black color on #53586B background.
This text has white color on #53586B background.