HEX: #013300
RGB: (1,51,0)
#013300 contains only red and green colors. Web safe color of #013300 is #003300 (or #030).
#013300 color RGB value is (1,51,0).
RGB: (1,51,0) (0%,20%,0%)
R 1 of 255 = 0%
G 51 of 255 = 20%
B 0 of 255 = 0%
R + G + B ~ 7%. #013300 is dark color.
R + G + B =
1 + 51 + 0 = 52 (100%)
R 1 of 52 ~ 1.92%
G 51 of 52 ~ 98.08%
B 0 of 52 ~ 0%
#013300 color CMYK value is (98,0,100,80).
CMYK: (98,0,100,80) C98M0Y100K80 (98%,0%,100%,80%) (0.98/0.00/1.00/0.80)
01 | 33 | 00 | |
---|---|---|---|
RGB | 1 | 51 | 0 |
HSL | 119° | 100.00% | 10.00% |
HSB/HSV | 119° | 100.00% | 20.00% |
CMYK | 98.04% | 0.00% | 100.00% |
80.00% |
HEX | 01 | 33 | 00 |
Decimal | 1 | 51 | 0 |
Binary | 1 | 110011 | 0 |
Octal | 1 | 63 | 0 |
Examples of css and html codes for elements with #013300 color. Also use rgb(1,51,0) instead hex code.
.myTextColor { color: #013300; }
<p style="color:#013300">This sample text font color is #013300.</p>
This text font color is #013300.
.myBgColor { background-color: #013300; }
<div style="background-color:#013300">Inner text</div>
This div background color is #013300.
.myBorderColor { border: 1px solid #013300; }
<div style="border:3px solid #013300">Div</div>
This div border color is #013300.
.myOpacity80 { color: #013300; opacity: 0.8; }
<p style="color:#013300;opacity:0.8;">80%</p>
Text with #013300 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #013300;}
<p style="text-shadow: 3px 3px 1px #013300">Text here.</p>
This text has shadow with #013300 color.
.textShadow {text-shadow: 3px 3px 1px #013300, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #013300, 5px 5px 20px red">Text here.</p>
This text has shadow with #013300 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#013300, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#013300, Direction=45, Strength=4)">Text</p>
This text has shadow with #013300 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #013300; -webkit-box-shadow: 1px 1px 3px 2px #013300; box-shadow: 1px 1px 3px 2px #013300; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #013300; -webkit-box-shadow: 1px 1px 3px 2px #013300; box-shadow:1px 1px 3px 2px #013300;">
Div content here</div>
This text has color #013300 on black background.
This text has color #013300 on white background.
This text has black color on #013300 background.
This text has white color on #013300 background.