HEX: #48494C
RGB: (72,73,76)
#48494C contains red, green and blue colors in about the same proportion. Web safe color of #48494C is #333333 (or #333).
#48494C color RGB value is (72,73,76).
RGB: (72,73,76) (28%,29%,30%)
R 72 of 255 = 28%
G 73 of 255 = 29%
B 76 of 255 = 30%
R + G + B ~ 29%. #48494C is quite dark color.
R + G + B =
72 + 73 + 76 = 221 (100%)
R 72 of 221 ~ 32.58%
G 73 of 221 ~ 33.03%
B 76 of 221 ~ 34.39%
#48494C color CMYK value is (5,4,0,70).
CMYK: (5,4,0,70) C5M4Y0K70 (5%,4%,0%,70%) (0.05/0.04/0.00/0.70)
48 | 49 | 4C | |
---|---|---|---|
RGB | 72 | 73 | 76 |
HSL | 225° | 2.70% | 29.02% |
HSB/HSV | 225° | 5.26% | 29.80% |
CMYK | 5.26% | 3.95% | 0.00% |
70.20% |
HEX | 48 | 49 | 4C |
Decimal | 72 | 73 | 76 |
Binary | 1001000 | 1001001 | 1001100 |
Octal | 110 | 111 | 114 |
Examples of css and html codes for elements with #48494C color. Also use rgb(72,73,76) instead hex code.
.myTextColor { color: #48494C; }
<p style="color:#48494C">This sample text font color is #48494C.</p>
This text font color is #48494C.
.myBgColor { background-color: #48494C; }
<div style="background-color:#48494C">Inner text</div>
This div background color is #48494C.
.myBorderColor { border: 1px solid #48494C; }
<div style="border:3px solid #48494C">Div</div>
This div border color is #48494C.
.myOpacity80 { color: #48494C; opacity: 0.8; }
<p style="color:#48494C;opacity:0.8;">80%</p>
Text with #48494C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48494C;}
<p style="text-shadow: 3px 3px 1px #48494C">Text here.</p>
This text has shadow with #48494C color.
.textShadow {text-shadow: 3px 3px 1px #48494C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48494C, 5px 5px 20px red">Text here.</p>
This text has shadow with #48494C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48494C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48494C, Direction=45, Strength=4)">Text</p>
This text has shadow with #48494C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48494C; -webkit-box-shadow: 1px 1px 3px 2px #48494C; box-shadow: 1px 1px 3px 2px #48494C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48494C; -webkit-box-shadow: 1px 1px 3px 2px #48494C; box-shadow:1px 1px 3px 2px #48494C;">
Div content here</div>
This text has color #48494C on black background.
This text has color #48494C on white background.
This text has black color on #48494C background.
This text has white color on #48494C background.