HEX: #001814
RGB: (0,24,20)
#001814 contains only green and blue colors. Web safe color of #001814 is #000000 (or #000).
#001814 color RGB value is (0,24,20).
RGB: (0,24,20) (0%,9%,8%)
R 0 of 255 = 0%
G 24 of 255 = 9%
B 20 of 255 = 8%
R + G + B ~ 6%. #001814 is dark color.
R + G + B =
0 + 24 + 20 = 44 (100%)
R 0 of 44 ~ 0%
G 24 of 44 ~ 54.55%
B 20 of 44 ~ 45.45%
#001814 color CMYK value is (100,0,17,91).
CMYK: (100,0,17,91) C100M0Y17K91 (100%,0%,17%,91%) (1.00/0.00/0.17/0.91)
00 | 18 | 14 | |
---|---|---|---|
RGB | 0 | 24 | 20 |
HSL | 170° | 100.00% | 4.71% |
HSB/HSV | 170° | 100.00% | 9.41% |
CMYK | 100.00% | 0.00% | 16.67% |
90.59% |
HEX | 00 | 18 | 14 |
Decimal | 0 | 24 | 20 |
Binary | 0 | 11000 | 10100 |
Octal | 0 | 30 | 24 |
Examples of css and html codes for elements with #001814 color. Also use rgb(0,24,20) instead hex code.
.myTextColor { color: #001814; }
<p style="color:#001814">This sample text font color is #001814.</p>
This text font color is #001814.
.myBgColor { background-color: #001814; }
<div style="background-color:#001814">Inner text</div>
This div background color is #001814.
.myBorderColor { border: 1px solid #001814; }
<div style="border:3px solid #001814">Div</div>
This div border color is #001814.
.myOpacity80 { color: #001814; opacity: 0.8; }
<p style="color:#001814;opacity:0.8;">80%</p>
Text with #001814 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #001814;}
<p style="text-shadow: 3px 3px 1px #001814">Text here.</p>
This text has shadow with #001814 color.
.textShadow {text-shadow: 3px 3px 1px #001814, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #001814, 5px 5px 20px red">Text here.</p>
This text has shadow with #001814 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#001814, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#001814, Direction=45, Strength=4)">Text</p>
This text has shadow with #001814 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #001814; -webkit-box-shadow: 1px 1px 3px 2px #001814; box-shadow: 1px 1px 3px 2px #001814; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #001814; -webkit-box-shadow: 1px 1px 3px 2px #001814; box-shadow:1px 1px 3px 2px #001814;">
Div content here</div>
This text has color #001814 on black background.
This text has color #001814 on white background.
This text has black color on #001814 background.
This text has white color on #001814 background.