HEX: #53497F
RGB: (83,73,127)
#53497F contains red, green and blue colors in about the same proportion. Web safe color of #53497F is #663366 (or #636).
#53497F color RGB value is (83,73,127).
RGB: (83,73,127) (33%,29%,50%)
R 83 of 255 = 33%
G 73 of 255 = 29%
B 127 of 255 = 50%
R + G + B ~ 37%. #53497F is quite dark color.
R + G + B =
83 + 73 + 127 = 283 (100%)
R 83 of 283 ~ 29.33%
G 73 of 283 ~ 25.8%
B 127 of 283 ~ 44.88%
#53497F color CMYK value is (35,43,0,50).
CMYK: (35,43,0,50) C35M43Y0K50 (35%,43%,0%,50%) (0.35/0.43/0.00/0.50)
53 | 49 | 7F | |
---|---|---|---|
RGB | 83 | 73 | 127 |
HSL | 251° | 27.00% | 39.22% |
HSB/HSV | 251° | 42.52% | 49.80% |
CMYK | 34.65% | 42.52% | 0.00% |
50.20% |
HEX | 53 | 49 | 7F |
Decimal | 83 | 73 | 127 |
Binary | 1010011 | 1001001 | 1111111 |
Octal | 123 | 111 | 177 |
Examples of css and html codes for elements with #53497F color. Also use rgb(83,73,127) instead hex code.
.myTextColor { color: #53497F; }
<p style="color:#53497F">This sample text font color is #53497F.</p>
This text font color is #53497F.
.myBgColor { background-color: #53497F; }
<div style="background-color:#53497F">Inner text</div>
This div background color is #53497F.
.myBorderColor { border: 1px solid #53497F; }
<div style="border:3px solid #53497F">Div</div>
This div border color is #53497F.
.myOpacity80 { color: #53497F; opacity: 0.8; }
<p style="color:#53497F;opacity:0.8;">80%</p>
Text with #53497F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53497F;}
<p style="text-shadow: 3px 3px 1px #53497F">Text here.</p>
This text has shadow with #53497F color.
.textShadow {text-shadow: 3px 3px 1px #53497F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53497F, 5px 5px 20px red">Text here.</p>
This text has shadow with #53497F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53497F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53497F, Direction=45, Strength=4)">Text</p>
This text has shadow with #53497F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53497F; -webkit-box-shadow: 1px 1px 3px 2px #53497F; box-shadow: 1px 1px 3px 2px #53497F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53497F; -webkit-box-shadow: 1px 1px 3px 2px #53497F; box-shadow:1px 1px 3px 2px #53497F;">
Div content here</div>
This text has color #53497F on black background.
This text has color #53497F on white background.
This text has black color on #53497F background.
This text has white color on #53497F background.