HEX: #48284A
RGB: (72,40,74)
#48284A contains red, green and blue colors in about the same proportion. Web safe color of #48284A is #333333 (or #333).
#48284A color RGB value is (72,40,74).
RGB: (72,40,74) (28%,16%,29%)
R 72 of 255 = 28%
G 40 of 255 = 16%
B 74 of 255 = 29%
R + G + B ~ 24%. #48284A is dark color.
R + G + B =
72 + 40 + 74 = 186 (100%)
R 72 of 186 ~ 38.71%
G 40 of 186 ~ 21.51%
B 74 of 186 ~ 39.78%
#48284A color CMYK value is (3,46,0,71).
CMYK: (3,46,0,71) C3M46Y0K71 (3%,46%,0%,71%) (0.03/0.46/0.00/0.71)
48 | 28 | 4A | |
---|---|---|---|
RGB | 72 | 40 | 74 |
HSL | 296° | 29.82% | 22.35% |
HSB/HSV | 296° | 45.95% | 29.02% |
CMYK | 2.70% | 45.95% | 0.00% |
70.98% |
HEX | 48 | 28 | 4A |
Decimal | 72 | 40 | 74 |
Binary | 1001000 | 101000 | 1001010 |
Octal | 110 | 50 | 112 |
Examples of css and html codes for elements with #48284A color. Also use rgb(72,40,74) instead hex code.
.myTextColor { color: #48284A; }
<p style="color:#48284A">This sample text font color is #48284A.</p>
This text font color is #48284A.
.myBgColor { background-color: #48284A; }
<div style="background-color:#48284A">Inner text</div>
This div background color is #48284A.
.myBorderColor { border: 1px solid #48284A; }
<div style="border:3px solid #48284A">Div</div>
This div border color is #48284A.
.myOpacity80 { color: #48284A; opacity: 0.8; }
<p style="color:#48284A;opacity:0.8;">80%</p>
Text with #48284A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48284A;}
<p style="text-shadow: 3px 3px 1px #48284A">Text here.</p>
This text has shadow with #48284A color.
.textShadow {text-shadow: 3px 3px 1px #48284A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48284A, 5px 5px 20px red">Text here.</p>
This text has shadow with #48284A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48284A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48284A, Direction=45, Strength=4)">Text</p>
This text has shadow with #48284A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48284A; -webkit-box-shadow: 1px 1px 3px 2px #48284A; box-shadow: 1px 1px 3px 2px #48284A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48284A; -webkit-box-shadow: 1px 1px 3px 2px #48284A; box-shadow:1px 1px 3px 2px #48284A;">
Div content here</div>
This text has color #48284A on black background.
This text has color #48284A on white background.
This text has black color on #48284A background.
This text has white color on #48284A background.