HEX: #490C00
RGB: (73,12,0)
#490C00 contains mainly red color. Web safe color of #490C00 is #330000 (or #300).
#490C00 color RGB value is (73,12,0).
RGB: (73,12,0) (29%,5%,0%)
R 73 of 255 = 29%
G 12 of 255 = 5%
B 0 of 255 = 0%
R + G + B ~ 11%. #490C00 is dark color.
R + G + B =
73 + 12 + 0 = 85 (100%)
R 73 of 85 ~ 85.88%
G 12 of 85 ~ 14.12%
B 0 of 85 ~ 0%
#490C00 color CMYK value is (0,84,100,71).
CMYK: (0,84,100,71) C0M84Y100K71 (0%,84%,100%,71%) (0.00/0.84/1.00/0.71)
49 | 0C | 00 | |
---|---|---|---|
RGB | 73 | 12 | 0 |
HSL | 10° | 100.00% | 14.31% |
HSB/HSV | 10° | 100.00% | 28.63% |
CMYK | 0.00% | 83.56% | 100.00% |
71.37% |
HEX | 49 | 0C | 00 |
Decimal | 73 | 12 | 0 |
Binary | 1001001 | 1100 | 0 |
Octal | 111 | 14 | 0 |
Examples of css and html codes for elements with #490C00 color. Also use rgb(73,12,0) instead hex code.
.myTextColor { color: #490C00; }
<p style="color:#490C00">This sample text font color is #490C00.</p>
This text font color is #490C00.
.myBgColor { background-color: #490C00; }
<div style="background-color:#490C00">Inner text</div>
This div background color is #490C00.
.myBorderColor { border: 1px solid #490C00; }
<div style="border:3px solid #490C00">Div</div>
This div border color is #490C00.
.myOpacity80 { color: #490C00; opacity: 0.8; }
<p style="color:#490C00;opacity:0.8;">80%</p>
Text with #490C00 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #490C00;}
<p style="text-shadow: 3px 3px 1px #490C00">Text here.</p>
This text has shadow with #490C00 color.
.textShadow {text-shadow: 3px 3px 1px #490C00, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #490C00, 5px 5px 20px red">Text here.</p>
This text has shadow with #490C00 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#490C00, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#490C00, Direction=45, Strength=4)">Text</p>
This text has shadow with #490C00 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #490C00; -webkit-box-shadow: 1px 1px 3px 2px #490C00; box-shadow: 1px 1px 3px 2px #490C00; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #490C00; -webkit-box-shadow: 1px 1px 3px 2px #490C00; box-shadow:1px 1px 3px 2px #490C00;">
Div content here</div>
This text has color #490C00 on black background.
This text has color #490C00 on white background.
This text has black color on #490C00 background.
This text has white color on #490C00 background.