HEX: #52665D
RGB: (82,102,93)
#52665D contains red, green and blue colors in about the same proportion. Web safe color of #52665D is #666666 (or #666).
#52665D color RGB value is (82,102,93).
RGB: (82,102,93) (32%,40%,36%)
R 82 of 255 = 32%
G 102 of 255 = 40%
B 93 of 255 = 36%
R + G + B ~ 36%. #52665D is quite dark color.
R + G + B =
82 + 102 + 93 = 277 (100%)
R 82 of 277 ~ 29.6%
G 102 of 277 ~ 36.82%
B 93 of 277 ~ 33.57%
#52665D color CMYK value is (20,0,9,60).
CMYK: (20,0,9,60) C20M0Y9K60 (20%,0%,9%,60%) (0.20/0.00/0.09/0.60)
52 | 66 | 5D | |
---|---|---|---|
RGB | 82 | 102 | 93 |
HSL | 153° | 10.87% | 36.08% |
HSB/HSV | 153° | 19.61% | 40.00% |
CMYK | 19.61% | 0.00% | 8.82% |
60.00% |
HEX | 52 | 66 | 5D |
Decimal | 82 | 102 | 93 |
Binary | 1010010 | 1100110 | 1011101 |
Octal | 122 | 146 | 135 |
Examples of css and html codes for elements with #52665D color. Also use rgb(82,102,93) instead hex code.
.myTextColor { color: #52665D; }
<p style="color:#52665D">This sample text font color is #52665D.</p>
This text font color is #52665D.
.myBgColor { background-color: #52665D; }
<div style="background-color:#52665D">Inner text</div>
This div background color is #52665D.
.myBorderColor { border: 1px solid #52665D; }
<div style="border:3px solid #52665D">Div</div>
This div border color is #52665D.
.myOpacity80 { color: #52665D; opacity: 0.8; }
<p style="color:#52665D;opacity:0.8;">80%</p>
Text with #52665D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #52665D;}
<p style="text-shadow: 3px 3px 1px #52665D">Text here.</p>
This text has shadow with #52665D color.
.textShadow {text-shadow: 3px 3px 1px #52665D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #52665D, 5px 5px 20px red">Text here.</p>
This text has shadow with #52665D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#52665D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#52665D, Direction=45, Strength=4)">Text</p>
This text has shadow with #52665D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #52665D; -webkit-box-shadow: 1px 1px 3px 2px #52665D; box-shadow: 1px 1px 3px 2px #52665D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #52665D; -webkit-box-shadow: 1px 1px 3px 2px #52665D; box-shadow:1px 1px 3px 2px #52665D;">
Div content here</div>
This text has color #52665D on black background.
This text has color #52665D on white background.
This text has black color on #52665D background.
This text has white color on #52665D background.