HEX: #52359D
RGB: (82,53,157)
#52359D contains mainly blue color. Web safe color of #52359D is #663399 (or #639).
#52359D color RGB value is (82,53,157).
RGB: (82,53,157) (32%,21%,62%)
R 82 of 255 = 32%
G 53 of 255 = 21%
B 157 of 255 = 62%
R + G + B ~ 38%. #52359D is quite dark color.
R + G + B =
82 + 53 + 157 = 292 (100%)
R 82 of 292 ~ 28.08%
G 53 of 292 ~ 18.15%
B 157 of 292 ~ 53.77%
#52359D color CMYK value is (48,66,0,38).
CMYK: (48,66,0,38) C48M66Y0K38 (48%,66%,0%,38%) (0.48/0.66/0.00/0.38)
52 | 35 | 9D | |
---|---|---|---|
RGB | 82 | 53 | 157 |
HSL | 257° | 49.52% | 41.18% |
HSB/HSV | 257° | 66.24% | 61.57% |
CMYK | 47.77% | 66.24% | 0.00% |
38.43% |
HEX | 52 | 35 | 9D |
Decimal | 82 | 53 | 157 |
Binary | 1010010 | 110101 | 10011101 |
Octal | 122 | 65 | 235 |
Examples of css and html codes for elements with #52359D color. Also use rgb(82,53,157) instead hex code.
.myTextColor { color: #52359D; }
<p style="color:#52359D">This sample text font color is #52359D.</p>
This text font color is #52359D.
.myBgColor { background-color: #52359D; }
<div style="background-color:#52359D">Inner text</div>
This div background color is #52359D.
.myBorderColor { border: 1px solid #52359D; }
<div style="border:3px solid #52359D">Div</div>
This div border color is #52359D.
.myOpacity80 { color: #52359D; opacity: 0.8; }
<p style="color:#52359D;opacity:0.8;">80%</p>
Text with #52359D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #52359D;}
<p style="text-shadow: 3px 3px 1px #52359D">Text here.</p>
This text has shadow with #52359D color.
.textShadow {text-shadow: 3px 3px 1px #52359D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #52359D, 5px 5px 20px red">Text here.</p>
This text has shadow with #52359D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#52359D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#52359D, Direction=45, Strength=4)">Text</p>
This text has shadow with #52359D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #52359D; -webkit-box-shadow: 1px 1px 3px 2px #52359D; box-shadow: 1px 1px 3px 2px #52359D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #52359D; -webkit-box-shadow: 1px 1px 3px 2px #52359D; box-shadow:1px 1px 3px 2px #52359D;">
Div content here</div>
This text has color #52359D on black background.
This text has color #52359D on white background.
This text has black color on #52359D background.
This text has white color on #52359D background.