HEX: #53425C
RGB: (83,66,92)
#53425C contains red, green and blue colors in about the same proportion. Web safe color of #53425C is #663366 (or #636).
#53425C color RGB value is (83,66,92).
RGB: (83,66,92) (33%,26%,36%)
R 83 of 255 = 33%
G 66 of 255 = 26%
B 92 of 255 = 36%
R + G + B ~ 32%. #53425C is quite dark color.
R + G + B =
83 + 66 + 92 = 241 (100%)
R 83 of 241 ~ 34.44%
G 66 of 241 ~ 27.39%
B 92 of 241 ~ 38.17%
#53425C color CMYK value is (10,28,0,64).
CMYK: (10,28,0,64) C10M28Y0K64 (10%,28%,0%,64%) (0.10/0.28/0.00/0.64)
53 | 42 | 5C | |
---|---|---|---|
RGB | 83 | 66 | 92 |
HSL | 279° | 16.46% | 30.98% |
HSB/HSV | 279° | 28.26% | 36.08% |
CMYK | 9.78% | 28.26% | 0.00% |
63.92% |
HEX | 53 | 42 | 5C |
Decimal | 83 | 66 | 92 |
Binary | 1010011 | 1000010 | 1011100 |
Octal | 123 | 102 | 134 |
Examples of css and html codes for elements with #53425C color. Also use rgb(83,66,92) instead hex code.
.myTextColor { color: #53425C; }
<p style="color:#53425C">This sample text font color is #53425C.</p>
This text font color is #53425C.
.myBgColor { background-color: #53425C; }
<div style="background-color:#53425C">Inner text</div>
This div background color is #53425C.
.myBorderColor { border: 1px solid #53425C; }
<div style="border:3px solid #53425C">Div</div>
This div border color is #53425C.
.myOpacity80 { color: #53425C; opacity: 0.8; }
<p style="color:#53425C;opacity:0.8;">80%</p>
Text with #53425C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53425C;}
<p style="text-shadow: 3px 3px 1px #53425C">Text here.</p>
This text has shadow with #53425C color.
.textShadow {text-shadow: 3px 3px 1px #53425C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53425C, 5px 5px 20px red">Text here.</p>
This text has shadow with #53425C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53425C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53425C, Direction=45, Strength=4)">Text</p>
This text has shadow with #53425C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53425C; -webkit-box-shadow: 1px 1px 3px 2px #53425C; box-shadow: 1px 1px 3px 2px #53425C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53425C; -webkit-box-shadow: 1px 1px 3px 2px #53425C; box-shadow:1px 1px 3px 2px #53425C;">
Div content here</div>
This text has color #53425C on black background.
This text has color #53425C on white background.
This text has black color on #53425C background.
This text has white color on #53425C background.