HEX: #481D0A
RGB: (72,29,10)
#481D0A contains mainly red and green colors. Web safe color of #481D0A is #333300 (or #330).
#481D0A color RGB value is (72,29,10).
RGB: (72,29,10) (28%,11%,4%)
R 72 of 255 = 28%
G 29 of 255 = 11%
B 10 of 255 = 4%
R + G + B ~ 14%. #481D0A is dark color.
R + G + B =
72 + 29 + 10 = 111 (100%)
R 72 of 111 ~ 64.86%
G 29 of 111 ~ 26.13%
B 10 of 111 ~ 9.01%
#481D0A color CMYK value is (0,60,86,72).
CMYK: (0,60,86,72) C0M60Y86K72 (0%,60%,86%,72%) (0.00/0.60/0.86/0.72)
48 | 1D | 0A | |
---|---|---|---|
RGB | 72 | 29 | 10 |
HSL | 18° | 75.61% | 16.08% |
HSB/HSV | 18° | 86.11% | 28.24% |
CMYK | 0.00% | 59.72% | 86.11% |
71.76% |
HEX | 48 | 1D | 0A |
Decimal | 72 | 29 | 10 |
Binary | 1001000 | 11101 | 1010 |
Octal | 110 | 35 | 12 |
Examples of css and html codes for elements with #481D0A color. Also use rgb(72,29,10) instead hex code.
.myTextColor { color: #481D0A; }
<p style="color:#481D0A">This sample text font color is #481D0A.</p>
This text font color is #481D0A.
.myBgColor { background-color: #481D0A; }
<div style="background-color:#481D0A">Inner text</div>
This div background color is #481D0A.
.myBorderColor { border: 1px solid #481D0A; }
<div style="border:3px solid #481D0A">Div</div>
This div border color is #481D0A.
.myOpacity80 { color: #481D0A; opacity: 0.8; }
<p style="color:#481D0A;opacity:0.8;">80%</p>
Text with #481D0A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #481D0A;}
<p style="text-shadow: 3px 3px 1px #481D0A">Text here.</p>
This text has shadow with #481D0A color.
.textShadow {text-shadow: 3px 3px 1px #481D0A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #481D0A, 5px 5px 20px red">Text here.</p>
This text has shadow with #481D0A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#481D0A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#481D0A, Direction=45, Strength=4)">Text</p>
This text has shadow with #481D0A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #481D0A; -webkit-box-shadow: 1px 1px 3px 2px #481D0A; box-shadow: 1px 1px 3px 2px #481D0A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #481D0A; -webkit-box-shadow: 1px 1px 3px 2px #481D0A; box-shadow:1px 1px 3px 2px #481D0A;">
Div content here</div>
This text has color #481D0A on black background.
This text has color #481D0A on white background.
This text has black color on #481D0A background.
This text has white color on #481D0A background.