HEX: #002113
RGB: (0,33,19)
#002113 contains only green and blue colors. Web safe color of #002113 is #003300 (or #030).
#002113 color RGB value is (0,33,19).
RGB: (0,33,19) (0%,13%,7%)
R 0 of 255 = 0%
G 33 of 255 = 13%
B 19 of 255 = 7%
R + G + B ~ 7%. #002113 is dark color.
R + G + B =
0 + 33 + 19 = 52 (100%)
R 0 of 52 ~ 0%
G 33 of 52 ~ 63.46%
B 19 of 52 ~ 36.54%
#002113 color CMYK value is (100,0,42,87).
CMYK: (100,0,42,87) C100M0Y42K87 (100%,0%,42%,87%) (1.00/0.00/0.42/0.87)
00 | 21 | 13 | |
---|---|---|---|
RGB | 0 | 33 | 19 |
HSL | 155° | 100.00% | 6.47% |
HSB/HSV | 155° | 100.00% | 12.94% |
CMYK | 100.00% | 0.00% | 42.42% |
87.06% |
HEX | 00 | 21 | 13 |
Decimal | 0 | 33 | 19 |
Binary | 0 | 100001 | 10011 |
Octal | 0 | 41 | 23 |
Examples of css and html codes for elements with #002113 color. Also use rgb(0,33,19) instead hex code.
.myTextColor { color: #002113; }
<p style="color:#002113">This sample text font color is #002113.</p>
This text font color is #002113.
.myBgColor { background-color: #002113; }
<div style="background-color:#002113">Inner text</div>
This div background color is #002113.
.myBorderColor { border: 1px solid #002113; }
<div style="border:3px solid #002113">Div</div>
This div border color is #002113.
.myOpacity80 { color: #002113; opacity: 0.8; }
<p style="color:#002113;opacity:0.8;">80%</p>
Text with #002113 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #002113;}
<p style="text-shadow: 3px 3px 1px #002113">Text here.</p>
This text has shadow with #002113 color.
.textShadow {text-shadow: 3px 3px 1px #002113, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #002113, 5px 5px 20px red">Text here.</p>
This text has shadow with #002113 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#002113, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#002113, Direction=45, Strength=4)">Text</p>
This text has shadow with #002113 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #002113; -webkit-box-shadow: 1px 1px 3px 2px #002113; box-shadow: 1px 1px 3px 2px #002113; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #002113; -webkit-box-shadow: 1px 1px 3px 2px #002113; box-shadow:1px 1px 3px 2px #002113;">
Div content here</div>
This text has color #002113 on black background.
This text has color #002113 on white background.
This text has black color on #002113 background.
This text has white color on #002113 background.