HEX: #48273A
RGB: (72,39,58)
#48273A contains red, green and blue colors in about the same proportion. Web safe color of #48273A is #333333 (or #333).
#48273A color RGB value is (72,39,58).
RGB: (72,39,58) (28%,15%,23%)
R 72 of 255 = 28%
G 39 of 255 = 15%
B 58 of 255 = 23%
R + G + B ~ 22%. #48273A is dark color.
R + G + B =
72 + 39 + 58 = 169 (100%)
R 72 of 169 ~ 42.6%
G 39 of 169 ~ 23.08%
B 58 of 169 ~ 34.32%
#48273A color CMYK value is (0,46,19,72).
CMYK: (0,46,19,72) C0M46Y19K72 (0%,46%,19%,72%) (0.00/0.46/0.19/0.72)
48 | 27 | 3A | |
---|---|---|---|
RGB | 72 | 39 | 58 |
HSL | 325° | 29.73% | 21.76% |
HSB/HSV | 325° | 45.83% | 28.24% |
CMYK | 0.00% | 45.83% | 19.44% |
71.76% |
HEX | 48 | 27 | 3A |
Decimal | 72 | 39 | 58 |
Binary | 1001000 | 100111 | 111010 |
Octal | 110 | 47 | 72 |
Examples of css and html codes for elements with #48273A color. Also use rgb(72,39,58) instead hex code.
.myTextColor { color: #48273A; }
<p style="color:#48273A">This sample text font color is #48273A.</p>
This text font color is #48273A.
.myBgColor { background-color: #48273A; }
<div style="background-color:#48273A">Inner text</div>
This div background color is #48273A.
.myBorderColor { border: 1px solid #48273A; }
<div style="border:3px solid #48273A">Div</div>
This div border color is #48273A.
.myOpacity80 { color: #48273A; opacity: 0.8; }
<p style="color:#48273A;opacity:0.8;">80%</p>
Text with #48273A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48273A;}
<p style="text-shadow: 3px 3px 1px #48273A">Text here.</p>
This text has shadow with #48273A color.
.textShadow {text-shadow: 3px 3px 1px #48273A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48273A, 5px 5px 20px red">Text here.</p>
This text has shadow with #48273A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48273A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48273A, Direction=45, Strength=4)">Text</p>
This text has shadow with #48273A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48273A; -webkit-box-shadow: 1px 1px 3px 2px #48273A; box-shadow: 1px 1px 3px 2px #48273A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48273A; -webkit-box-shadow: 1px 1px 3px 2px #48273A; box-shadow:1px 1px 3px 2px #48273A;">
Div content here</div>
This text has color #48273A on black background.
This text has color #48273A on white background.
This text has black color on #48273A background.
This text has white color on #48273A background.