HEX: #48484D
RGB: (72,72,77)
#48484D contains red, green and blue colors in about the same proportion. Web safe color of #48484D is #333333 (or #333).
#48484D color RGB value is (72,72,77).
RGB: (72,72,77) (28%,28%,30%)
R 72 of 255 = 28%
G 72 of 255 = 28%
B 77 of 255 = 30%
R + G + B ~ 29%. #48484D is quite dark color.
R + G + B =
72 + 72 + 77 = 221 (100%)
R 72 of 221 ~ 32.58%
G 72 of 221 ~ 32.58%
B 77 of 221 ~ 34.84%
#48484D color CMYK value is (6,6,0,70).
CMYK: (6,6,0,70) C6M6Y0K70 (6%,6%,0%,70%) (0.06/0.06/0.00/0.70)
48 | 48 | 4D | |
---|---|---|---|
RGB | 72 | 72 | 77 |
HSL | 240° | 3.36% | 29.22% |
HSB/HSV | 240° | 6.49% | 30.20% |
CMYK | 6.49% | 6.49% | 0.00% |
69.80% |
HEX | 48 | 48 | 4D |
Decimal | 72 | 72 | 77 |
Binary | 1001000 | 1001000 | 1001101 |
Octal | 110 | 110 | 115 |
Examples of css and html codes for elements with #48484D color. Also use rgb(72,72,77) instead hex code.
.myTextColor { color: #48484D; }
<p style="color:#48484D">This sample text font color is #48484D.</p>
This text font color is #48484D.
.myBgColor { background-color: #48484D; }
<div style="background-color:#48484D">Inner text</div>
This div background color is #48484D.
.myBorderColor { border: 1px solid #48484D; }
<div style="border:3px solid #48484D">Div</div>
This div border color is #48484D.
.myOpacity80 { color: #48484D; opacity: 0.8; }
<p style="color:#48484D;opacity:0.8;">80%</p>
Text with #48484D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48484D;}
<p style="text-shadow: 3px 3px 1px #48484D">Text here.</p>
This text has shadow with #48484D color.
.textShadow {text-shadow: 3px 3px 1px #48484D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48484D, 5px 5px 20px red">Text here.</p>
This text has shadow with #48484D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48484D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48484D, Direction=45, Strength=4)">Text</p>
This text has shadow with #48484D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48484D; -webkit-box-shadow: 1px 1px 3px 2px #48484D; box-shadow: 1px 1px 3px 2px #48484D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48484D; -webkit-box-shadow: 1px 1px 3px 2px #48484D; box-shadow:1px 1px 3px 2px #48484D;">
Div content here</div>
This text has color #48484D on black background.
This text has color #48484D on white background.
This text has black color on #48484D background.
This text has white color on #48484D background.