HEX: #581F57
RGB: (88,31,87)
#581F57 contains red, green and blue colors in about the same proportion. Web safe color of #581F57 is #663366 (or #636).
#581F57 color RGB value is (88,31,87).
RGB: (88,31,87) (35%,12%,34%)
R 88 of 255 = 35%
G 31 of 255 = 12%
B 87 of 255 = 34%
R + G + B ~ 27%. #581F57 is quite dark color.
R + G + B =
88 + 31 + 87 = 206 (100%)
R 88 of 206 ~ 42.72%
G 31 of 206 ~ 15.05%
B 87 of 206 ~ 42.23%
#581F57 color CMYK value is (0,65,1,65).
CMYK: (0,65,1,65) C0M65Y1K65 (0%,65%,1%,65%) (0.00/0.65/0.01/0.65)
58 | 1F | 57 | |
---|---|---|---|
RGB | 88 | 31 | 87 |
HSL | 301° | 47.90% | 23.33% |
HSB/HSV | 301° | 64.77% | 34.51% |
CMYK | 0.00% | 64.77% | 1.14% |
65.49% |
HEX | 58 | 1F | 57 |
Decimal | 88 | 31 | 87 |
Binary | 1011000 | 11111 | 1010111 |
Octal | 130 | 37 | 127 |
Examples of css and html codes for elements with #581F57 color. Also use rgb(88,31,87) instead hex code.
.myTextColor { color: #581F57; }
<p style="color:#581F57">This sample text font color is #581F57.</p>
This text font color is #581F57.
.myBgColor { background-color: #581F57; }
<div style="background-color:#581F57">Inner text</div>
This div background color is #581F57.
.myBorderColor { border: 1px solid #581F57; }
<div style="border:3px solid #581F57">Div</div>
This div border color is #581F57.
.myOpacity80 { color: #581F57; opacity: 0.8; }
<p style="color:#581F57;opacity:0.8;">80%</p>
Text with #581F57 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #581F57;}
<p style="text-shadow: 3px 3px 1px #581F57">Text here.</p>
This text has shadow with #581F57 color.
.textShadow {text-shadow: 3px 3px 1px #581F57, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #581F57, 5px 5px 20px red">Text here.</p>
This text has shadow with #581F57 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#581F57, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#581F57, Direction=45, Strength=4)">Text</p>
This text has shadow with #581F57 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #581F57; -webkit-box-shadow: 1px 1px 3px 2px #581F57; box-shadow: 1px 1px 3px 2px #581F57; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #581F57; -webkit-box-shadow: 1px 1px 3px 2px #581F57; box-shadow:1px 1px 3px 2px #581F57;">
Div content here</div>
This text has color #581F57 on black background.
This text has color #581F57 on white background.
This text has black color on #581F57 background.
This text has white color on #581F57 background.