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