HEX: #58347C
RGB: (88,52,124)
#58347C contains mainly red and blue colors. Web safe color of #58347C is #663366 (or #636).
#58347C color RGB value is (88,52,124).
RGB: (88,52,124) (35%,20%,49%)
R 88 of 255 = 35%
G 52 of 255 = 20%
B 124 of 255 = 49%
R + G + B ~ 35%. #58347C is quite dark color.
R + G + B =
88 + 52 + 124 = 264 (100%)
R 88 of 264 ~ 33.33%
G 52 of 264 ~ 19.7%
B 124 of 264 ~ 46.97%
#58347C color CMYK value is (29,58,0,51).
CMYK: (29,58,0,51) C29M58Y0K51 (29%,58%,0%,51%) (0.29/0.58/0.00/0.51)
58 | 34 | 7C | |
---|---|---|---|
RGB | 88 | 52 | 124 |
HSL | 270° | 40.91% | 34.51% |
HSB/HSV | 270° | 58.06% | 48.63% |
CMYK | 29.03% | 58.06% | 0.00% |
51.37% |
HEX | 58 | 34 | 7C |
Decimal | 88 | 52 | 124 |
Binary | 1011000 | 110100 | 1111100 |
Octal | 130 | 64 | 174 |
Examples of css and html codes for elements with #58347C color. Also use rgb(88,52,124) instead hex code.
.myTextColor { color: #58347C; }
<p style="color:#58347C">This sample text font color is #58347C.</p>
This text font color is #58347C.
.myBgColor { background-color: #58347C; }
<div style="background-color:#58347C">Inner text</div>
This div background color is #58347C.
.myBorderColor { border: 1px solid #58347C; }
<div style="border:3px solid #58347C">Div</div>
This div border color is #58347C.
.myOpacity80 { color: #58347C; opacity: 0.8; }
<p style="color:#58347C;opacity:0.8;">80%</p>
Text with #58347C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58347C;}
<p style="text-shadow: 3px 3px 1px #58347C">Text here.</p>
This text has shadow with #58347C color.
.textShadow {text-shadow: 3px 3px 1px #58347C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58347C, 5px 5px 20px red">Text here.</p>
This text has shadow with #58347C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58347C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58347C, Direction=45, Strength=4)">Text</p>
This text has shadow with #58347C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58347C; -webkit-box-shadow: 1px 1px 3px 2px #58347C; box-shadow: 1px 1px 3px 2px #58347C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58347C; -webkit-box-shadow: 1px 1px 3px 2px #58347C; box-shadow:1px 1px 3px 2px #58347C;">
Div content here</div>
This text has color #58347C on black background.
This text has color #58347C on white background.
This text has black color on #58347C background.
This text has white color on #58347C background.