HEX: #521D66
RGB: (82,29,102)
#521D66 contains mainly red and blue colors. Web safe color of #521D66 is #663366 (or #636).
#521D66 color RGB value is (82,29,102).
RGB: (82,29,102) (32%,11%,40%)
R 82 of 255 = 32%
G 29 of 255 = 11%
B 102 of 255 = 40%
R + G + B ~ 28%. #521D66 is quite dark color.
R + G + B =
82 + 29 + 102 = 213 (100%)
R 82 of 213 ~ 38.5%
G 29 of 213 ~ 13.62%
B 102 of 213 ~ 47.89%
#521D66 color CMYK value is (20,72,0,60).
CMYK: (20,72,0,60) C20M72Y0K60 (20%,72%,0%,60%) (0.20/0.72/0.00/0.60)
52 | 1D | 66 | |
---|---|---|---|
RGB | 82 | 29 | 102 |
HSL | 284° | 55.73% | 25.69% |
HSB/HSV | 284° | 71.57% | 40.00% |
CMYK | 19.61% | 71.57% | 0.00% |
60.00% |
HEX | 52 | 1D | 66 |
Decimal | 82 | 29 | 102 |
Binary | 1010010 | 11101 | 1100110 |
Octal | 122 | 35 | 146 |
Examples of css and html codes for elements with #521D66 color. Also use rgb(82,29,102) instead hex code.
.myTextColor { color: #521D66; }
<p style="color:#521D66">This sample text font color is #521D66.</p>
This text font color is #521D66.
.myBgColor { background-color: #521D66; }
<div style="background-color:#521D66">Inner text</div>
This div background color is #521D66.
.myBorderColor { border: 1px solid #521D66; }
<div style="border:3px solid #521D66">Div</div>
This div border color is #521D66.
.myOpacity80 { color: #521D66; opacity: 0.8; }
<p style="color:#521D66;opacity:0.8;">80%</p>
Text with #521D66 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #521D66;}
<p style="text-shadow: 3px 3px 1px #521D66">Text here.</p>
This text has shadow with #521D66 color.
.textShadow {text-shadow: 3px 3px 1px #521D66, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #521D66, 5px 5px 20px red">Text here.</p>
This text has shadow with #521D66 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#521D66, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#521D66, Direction=45, Strength=4)">Text</p>
This text has shadow with #521D66 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #521D66; -webkit-box-shadow: 1px 1px 3px 2px #521D66; box-shadow: 1px 1px 3px 2px #521D66; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #521D66; -webkit-box-shadow: 1px 1px 3px 2px #521D66; box-shadow:1px 1px 3px 2px #521D66;">
Div content here</div>
This text has color #521D66 on black background.
This text has color #521D66 on white background.
This text has black color on #521D66 background.
This text has white color on #521D66 background.