HEX: #001123
RGB: (0,17,35)
#001123 contains only green and blue colors. Web safe color of #001123 is #000033 (or #003).
#001123 color RGB value is (0,17,35).
RGB: (0,17,35) (0%,7%,14%)
R 0 of 255 = 0%
G 17 of 255 = 7%
B 35 of 255 = 14%
R + G + B ~ 7%. #001123 is dark color.
R + G + B =
0 + 17 + 35 = 52 (100%)
R 0 of 52 ~ 0%
G 17 of 52 ~ 32.69%
B 35 of 52 ~ 67.31%
#001123 color CMYK value is (100,51,0,86).
CMYK: (100,51,0,86) C100M51Y0K86 (100%,51%,0%,86%) (1.00/0.51/0.00/0.86)
00 | 11 | 23 | |
---|---|---|---|
RGB | 0 | 17 | 35 |
HSL | 211° | 100.00% | 6.86% |
HSB/HSV | 211° | 100.00% | 13.73% |
CMYK | 100.00% | 51.43% | 0.00% |
86.27% |
HEX | 00 | 11 | 23 |
Decimal | 0 | 17 | 35 |
Binary | 0 | 10001 | 100011 |
Octal | 0 | 21 | 43 |
Examples of css and html codes for elements with #001123 color. Also use rgb(0,17,35) instead hex code.
.myTextColor { color: #001123; }
<p style="color:#001123">This sample text font color is #001123.</p>
This text font color is #001123.
.myBgColor { background-color: #001123; }
<div style="background-color:#001123">Inner text</div>
This div background color is #001123.
.myBorderColor { border: 1px solid #001123; }
<div style="border:3px solid #001123">Div</div>
This div border color is #001123.
.myOpacity80 { color: #001123; opacity: 0.8; }
<p style="color:#001123;opacity:0.8;">80%</p>
Text with #001123 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #001123;}
<p style="text-shadow: 3px 3px 1px #001123">Text here.</p>
This text has shadow with #001123 color.
.textShadow {text-shadow: 3px 3px 1px #001123, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #001123, 5px 5px 20px red">Text here.</p>
This text has shadow with #001123 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#001123, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#001123, Direction=45, Strength=4)">Text</p>
This text has shadow with #001123 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #001123; -webkit-box-shadow: 1px 1px 3px 2px #001123; box-shadow: 1px 1px 3px 2px #001123; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #001123; -webkit-box-shadow: 1px 1px 3px 2px #001123; box-shadow:1px 1px 3px 2px #001123;">
Div content here</div>
This text has color #001123 on black background.
This text has color #001123 on white background.
This text has black color on #001123 background.
This text has white color on #001123 background.