HEX: #48514B
RGB: (72,81,75)
#48514B contains red, green and blue colors in about the same proportion. Web safe color of #48514B is #336633 (or #363).
#48514B color RGB value is (72,81,75).
RGB: (72,81,75) (28%,32%,29%)
R 72 of 255 = 28%
G 81 of 255 = 32%
B 75 of 255 = 29%
R + G + B ~ 30%. #48514B is quite dark color.
R + G + B =
72 + 81 + 75 = 228 (100%)
R 72 of 228 ~ 31.58%
G 81 of 228 ~ 35.53%
B 75 of 228 ~ 32.89%
#48514B color CMYK value is (11,0,7,68).
CMYK: (11,0,7,68) C11M0Y7K68 (11%,0%,7%,68%) (0.11/0.00/0.07/0.68)
48 | 51 | 4B | |
---|---|---|---|
RGB | 72 | 81 | 75 |
HSL | 140° | 5.88% | 30.00% |
HSB/HSV | 140° | 11.11% | 31.76% |
CMYK | 11.11% | 0.00% | 7.41% |
68.24% |
HEX | 48 | 51 | 4B |
Decimal | 72 | 81 | 75 |
Binary | 1001000 | 1010001 | 1001011 |
Octal | 110 | 121 | 113 |
Examples of css and html codes for elements with #48514B color. Also use rgb(72,81,75) instead hex code.
.myTextColor { color: #48514B; }
<p style="color:#48514B">This sample text font color is #48514B.</p>
This text font color is #48514B.
.myBgColor { background-color: #48514B; }
<div style="background-color:#48514B">Inner text</div>
This div background color is #48514B.
.myBorderColor { border: 1px solid #48514B; }
<div style="border:3px solid #48514B">Div</div>
This div border color is #48514B.
.myOpacity80 { color: #48514B; opacity: 0.8; }
<p style="color:#48514B;opacity:0.8;">80%</p>
Text with #48514B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48514B;}
<p style="text-shadow: 3px 3px 1px #48514B">Text here.</p>
This text has shadow with #48514B color.
.textShadow {text-shadow: 3px 3px 1px #48514B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48514B, 5px 5px 20px red">Text here.</p>
This text has shadow with #48514B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48514B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48514B, Direction=45, Strength=4)">Text</p>
This text has shadow with #48514B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48514B; -webkit-box-shadow: 1px 1px 3px 2px #48514B; box-shadow: 1px 1px 3px 2px #48514B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48514B; -webkit-box-shadow: 1px 1px 3px 2px #48514B; box-shadow:1px 1px 3px 2px #48514B;">
Div content here</div>
This text has color #48514B on black background.
This text has color #48514B on white background.
This text has black color on #48514B background.
This text has white color on #48514B background.