HEX: #57425D
RGB: (87,66,93)
#57425D contains red, green and blue colors in about the same proportion. Web safe color of #57425D is #663366 (or #636).
#57425D color RGB value is (87,66,93).
RGB: (87,66,93) (34%,26%,36%)
R 87 of 255 = 34%
G 66 of 255 = 26%
B 93 of 255 = 36%
R + G + B ~ 32%. #57425D is quite dark color.
R + G + B =
87 + 66 + 93 = 246 (100%)
R 87 of 246 ~ 35.37%
G 66 of 246 ~ 26.83%
B 93 of 246 ~ 37.8%
#57425D color CMYK value is (6,29,0,64).
CMYK: (6,29,0,64) C6M29Y0K64 (6%,29%,0%,64%) (0.06/0.29/0.00/0.64)
57 | 42 | 5D | |
---|---|---|---|
RGB | 87 | 66 | 93 |
HSL | 287° | 16.98% | 31.18% |
HSB/HSV | 287° | 29.03% | 36.47% |
CMYK | 6.45% | 29.03% | 0.00% |
63.53% |
HEX | 57 | 42 | 5D |
Decimal | 87 | 66 | 93 |
Binary | 1010111 | 1000010 | 1011101 |
Octal | 127 | 102 | 135 |
Examples of css and html codes for elements with #57425D color. Also use rgb(87,66,93) instead hex code.
.myTextColor { color: #57425D; }
<p style="color:#57425D">This sample text font color is #57425D.</p>
This text font color is #57425D.
.myBgColor { background-color: #57425D; }
<div style="background-color:#57425D">Inner text</div>
This div background color is #57425D.
.myBorderColor { border: 1px solid #57425D; }
<div style="border:3px solid #57425D">Div</div>
This div border color is #57425D.
.myOpacity80 { color: #57425D; opacity: 0.8; }
<p style="color:#57425D;opacity:0.8;">80%</p>
Text with #57425D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #57425D;}
<p style="text-shadow: 3px 3px 1px #57425D">Text here.</p>
This text has shadow with #57425D color.
.textShadow {text-shadow: 3px 3px 1px #57425D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #57425D, 5px 5px 20px red">Text here.</p>
This text has shadow with #57425D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#57425D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#57425D, Direction=45, Strength=4)">Text</p>
This text has shadow with #57425D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #57425D; -webkit-box-shadow: 1px 1px 3px 2px #57425D; box-shadow: 1px 1px 3px 2px #57425D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #57425D; -webkit-box-shadow: 1px 1px 3px 2px #57425D; box-shadow:1px 1px 3px 2px #57425D;">
Div content here</div>
This text has color #57425D on black background.
This text has color #57425D on white background.
This text has black color on #57425D background.
This text has white color on #57425D background.