HEX: #001272
RGB: (0,18,114)
#001272 contains mainly blue color. Web safe color of #001272 is #000066 (or #006).
#001272 color RGB value is (0,18,114).
RGB: (0,18,114) (0%,7%,45%)
R 0 of 255 = 0%
G 18 of 255 = 7%
B 114 of 255 = 45%
R + G + B ~ 17%. #001272 is dark color.
R + G + B =
0 + 18 + 114 = 132 (100%)
R 0 of 132 ~ 0%
G 18 of 132 ~ 13.64%
B 114 of 132 ~ 86.36%
#001272 color CMYK value is (100,84,0,55).
CMYK: (100,84,0,55) C100M84Y0K55 (100%,84%,0%,55%) (1.00/0.84/0.00/0.55)
00 | 12 | 72 | |
---|---|---|---|
RGB | 0 | 18 | 114 |
HSL | 231° | 100.00% | 22.35% |
HSB/HSV | 231° | 100.00% | 44.71% |
CMYK | 100.00% | 84.21% | 0.00% |
55.29% |
HEX | 00 | 12 | 72 |
Decimal | 0 | 18 | 114 |
Binary | 0 | 10010 | 1110010 |
Octal | 0 | 22 | 162 |
Examples of css and html codes for elements with #001272 color. Also use rgb(0,18,114) instead hex code.
.myTextColor { color: #001272; }
<p style="color:#001272">This sample text font color is #001272.</p>
This text font color is #001272.
.myBgColor { background-color: #001272; }
<div style="background-color:#001272">Inner text</div>
This div background color is #001272.
.myBorderColor { border: 1px solid #001272; }
<div style="border:3px solid #001272">Div</div>
This div border color is #001272.
.myOpacity80 { color: #001272; opacity: 0.8; }
<p style="color:#001272;opacity:0.8;">80%</p>
Text with #001272 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #001272;}
<p style="text-shadow: 3px 3px 1px #001272">Text here.</p>
This text has shadow with #001272 color.
.textShadow {text-shadow: 3px 3px 1px #001272, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #001272, 5px 5px 20px red">Text here.</p>
This text has shadow with #001272 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#001272, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#001272, Direction=45, Strength=4)">Text</p>
This text has shadow with #001272 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #001272; -webkit-box-shadow: 1px 1px 3px 2px #001272; box-shadow: 1px 1px 3px 2px #001272; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #001272; -webkit-box-shadow: 1px 1px 3px 2px #001272; box-shadow:1px 1px 3px 2px #001272;">
Div content here</div>
This text has color #001272 on black background.
This text has color #001272 on white background.
This text has black color on #001272 background.
This text has white color on #001272 background.