HEX: #481F14
RGB: (72,31,20)
#481F14 contains red, green and blue colors in about the same proportion. Web safe color of #481F14 is #333300 (or #330).
#481F14 color RGB value is (72,31,20).
RGB: (72,31,20) (28%,12%,8%)
R 72 of 255 = 28%
G 31 of 255 = 12%
B 20 of 255 = 8%
R + G + B ~ 16%. #481F14 is dark color.
R + G + B =
72 + 31 + 20 = 123 (100%)
R 72 of 123 ~ 58.54%
G 31 of 123 ~ 25.2%
B 20 of 123 ~ 16.26%
#481F14 color CMYK value is (0,57,72,72).
CMYK: (0,57,72,72) C0M57Y72K72 (0%,57%,72%,72%) (0.00/0.57/0.72/0.72)
48 | 1F | 14 | |
---|---|---|---|
RGB | 72 | 31 | 20 |
HSL | 13° | 56.52% | 18.04% |
HSB/HSV | 13° | 72.22% | 28.24% |
CMYK | 0.00% | 56.94% | 72.22% |
71.76% |
HEX | 48 | 1F | 14 |
Decimal | 72 | 31 | 20 |
Binary | 1001000 | 11111 | 10100 |
Octal | 110 | 37 | 24 |
Examples of css and html codes for elements with #481F14 color. Also use rgb(72,31,20) instead hex code.
.myTextColor { color: #481F14; }
<p style="color:#481F14">This sample text font color is #481F14.</p>
This text font color is #481F14.
.myBgColor { background-color: #481F14; }
<div style="background-color:#481F14">Inner text</div>
This div background color is #481F14.
.myBorderColor { border: 1px solid #481F14; }
<div style="border:3px solid #481F14">Div</div>
This div border color is #481F14.
.myOpacity80 { color: #481F14; opacity: 0.8; }
<p style="color:#481F14;opacity:0.8;">80%</p>
Text with #481F14 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #481F14;}
<p style="text-shadow: 3px 3px 1px #481F14">Text here.</p>
This text has shadow with #481F14 color.
.textShadow {text-shadow: 3px 3px 1px #481F14, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #481F14, 5px 5px 20px red">Text here.</p>
This text has shadow with #481F14 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#481F14, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#481F14, Direction=45, Strength=4)">Text</p>
This text has shadow with #481F14 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #481F14; -webkit-box-shadow: 1px 1px 3px 2px #481F14; box-shadow: 1px 1px 3px 2px #481F14; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #481F14; -webkit-box-shadow: 1px 1px 3px 2px #481F14; box-shadow:1px 1px 3px 2px #481F14;">
Div content here</div>
This text has color #481F14 on black background.
This text has color #481F14 on white background.
This text has black color on #481F14 background.
This text has white color on #481F14 background.