HEX: #53047D
RGB: (83,4,125)
#53047D contains mainly red and blue colors. Web safe color of #53047D is #660066 (or #606).
#53047D color RGB value is (83,4,125).
RGB: (83,4,125) (33%,2%,49%)
R 83 of 255 = 33%
G 4 of 255 = 2%
B 125 of 255 = 49%
R + G + B ~ 28%. #53047D is quite dark color.
R + G + B =
83 + 4 + 125 = 212 (100%)
R 83 of 212 ~ 39.15%
G 4 of 212 ~ 1.89%
B 125 of 212 ~ 58.96%
#53047D color CMYK value is (34,97,0,51).
CMYK: (34,97,0,51) C34M97Y0K51 (34%,97%,0%,51%) (0.34/0.97/0.00/0.51)
53 | 04 | 7D | |
---|---|---|---|
RGB | 83 | 4 | 125 |
HSL | 279° | 93.80% | 25.29% |
HSB/HSV | 279° | 96.80% | 49.02% |
CMYK | 33.60% | 96.80% | 0.00% |
50.98% |
HEX | 53 | 04 | 7D |
Decimal | 83 | 4 | 125 |
Binary | 1010011 | 100 | 1111101 |
Octal | 123 | 4 | 175 |
Examples of css and html codes for elements with #53047D color. Also use rgb(83,4,125) instead hex code.
.myTextColor { color: #53047D; }
<p style="color:#53047D">This sample text font color is #53047D.</p>
This text font color is #53047D.
.myBgColor { background-color: #53047D; }
<div style="background-color:#53047D">Inner text</div>
This div background color is #53047D.
.myBorderColor { border: 1px solid #53047D; }
<div style="border:3px solid #53047D">Div</div>
This div border color is #53047D.
.myOpacity80 { color: #53047D; opacity: 0.8; }
<p style="color:#53047D;opacity:0.8;">80%</p>
Text with #53047D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53047D;}
<p style="text-shadow: 3px 3px 1px #53047D">Text here.</p>
This text has shadow with #53047D color.
.textShadow {text-shadow: 3px 3px 1px #53047D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53047D, 5px 5px 20px red">Text here.</p>
This text has shadow with #53047D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53047D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53047D, Direction=45, Strength=4)">Text</p>
This text has shadow with #53047D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53047D; -webkit-box-shadow: 1px 1px 3px 2px #53047D; box-shadow: 1px 1px 3px 2px #53047D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53047D; -webkit-box-shadow: 1px 1px 3px 2px #53047D; box-shadow:1px 1px 3px 2px #53047D;">
Div content here</div>
This text has color #53047D on black background.
This text has color #53047D on white background.
This text has black color on #53047D background.
This text has white color on #53047D background.