HEX: #001319
RGB: (0,19,25)
#001319 contains only green and blue colors. Web safe color of #001319 is #000000 (or #000).
#001319 color RGB value is (0,19,25).
RGB: (0,19,25) (0%,7%,10%)
R 0 of 255 = 0%
G 19 of 255 = 7%
B 25 of 255 = 10%
R + G + B ~ 6%. #001319 is dark color.
R + G + B =
0 + 19 + 25 = 44 (100%)
R 0 of 44 ~ 0%
G 19 of 44 ~ 43.18%
B 25 of 44 ~ 56.82%
#001319 color CMYK value is (100,24,0,90).
CMYK: (100,24,0,90) C100M24Y0K90 (100%,24%,0%,90%) (1.00/0.24/0.00/0.90)
00 | 13 | 19 | |
---|---|---|---|
RGB | 0 | 19 | 25 |
HSL | 194° | 100.00% | 4.90% |
HSB/HSV | 194° | 100.00% | 9.80% |
CMYK | 100.00% | 24.00% | 0.00% |
90.20% |
HEX | 00 | 13 | 19 |
Decimal | 0 | 19 | 25 |
Binary | 0 | 10011 | 11001 |
Octal | 0 | 23 | 31 |
Examples of css and html codes for elements with #001319 color. Also use rgb(0,19,25) instead hex code.
.myTextColor { color: #001319; }
<p style="color:#001319">This sample text font color is #001319.</p>
This text font color is #001319.
.myBgColor { background-color: #001319; }
<div style="background-color:#001319">Inner text</div>
This div background color is #001319.
.myBorderColor { border: 1px solid #001319; }
<div style="border:3px solid #001319">Div</div>
This div border color is #001319.
.myOpacity80 { color: #001319; opacity: 0.8; }
<p style="color:#001319;opacity:0.8;">80%</p>
Text with #001319 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #001319;}
<p style="text-shadow: 3px 3px 1px #001319">Text here.</p>
This text has shadow with #001319 color.
.textShadow {text-shadow: 3px 3px 1px #001319, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #001319, 5px 5px 20px red">Text here.</p>
This text has shadow with #001319 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#001319, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#001319, Direction=45, Strength=4)">Text</p>
This text has shadow with #001319 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #001319; -webkit-box-shadow: 1px 1px 3px 2px #001319; box-shadow: 1px 1px 3px 2px #001319; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #001319; -webkit-box-shadow: 1px 1px 3px 2px #001319; box-shadow:1px 1px 3px 2px #001319;">
Div content here</div>
This text has color #001319 on black background.
This text has color #001319 on white background.
This text has black color on #001319 background.
This text has white color on #001319 background.