HEX: #010300
RGB: (1,3,0)
#010300 contains only red and green colors. Web safe color of #010300 is #000000 (or #000).
#010300 color RGB value is (1,3,0).
RGB: (1,3,0) (0%,1%,0%)
R 1 of 255 = 0%
G 3 of 255 = 1%
B 0 of 255 = 0%
R + G + B ~ 0%. #010300 is dark color.
R + G + B =
1 + 3 + 0 = 4 (100%)
R 1 of 4 ~ 25%
G 3 of 4 ~ 75%
B 0 of 4 ~ 0%
#010300 color CMYK value is (67,0,100,99).
CMYK: (67,0,100,99) C67M0Y100K99 (67%,0%,100%,99%) (0.67/0.00/1.00/0.99)
01 | 03 | 00 | |
---|---|---|---|
RGB | 1 | 3 | 0 |
HSL | 100° | 100.00% | 0.59% |
HSB/HSV | 100° | 100.00% | 1.18% |
CMYK | 66.67% | 0.00% | 100.00% |
98.82% |
HEX | 01 | 03 | 00 |
Decimal | 1 | 3 | 0 |
Binary | 1 | 11 | 0 |
Octal | 1 | 3 | 0 |
Examples of css and html codes for elements with #010300 color. Also use rgb(1,3,0) instead hex code.
.myTextColor { color: #010300; }
<p style="color:#010300">This sample text font color is #010300.</p>
This text font color is #010300.
.myBgColor { background-color: #010300; }
<div style="background-color:#010300">Inner text</div>
This div background color is #010300.
.myBorderColor { border: 1px solid #010300; }
<div style="border:3px solid #010300">Div</div>
This div border color is #010300.
.myOpacity80 { color: #010300; opacity: 0.8; }
<p style="color:#010300;opacity:0.8;">80%</p>
Text with #010300 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #010300;}
<p style="text-shadow: 3px 3px 1px #010300">Text here.</p>
This text has shadow with #010300 color.
.textShadow {text-shadow: 3px 3px 1px #010300, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #010300, 5px 5px 20px red">Text here.</p>
This text has shadow with #010300 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#010300, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#010300, Direction=45, Strength=4)">Text</p>
This text has shadow with #010300 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #010300; -webkit-box-shadow: 1px 1px 3px 2px #010300; box-shadow: 1px 1px 3px 2px #010300; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #010300; -webkit-box-shadow: 1px 1px 3px 2px #010300; box-shadow:1px 1px 3px 2px #010300;">
Div content here</div>
This text has color #010300 on black background.
This text has color #010300 on white background.
This text has black color on #010300 background.
This text has white color on #010300 background.