HEX: #001A53
RGB: (0,26,83)
#001A53 contains only green and blue colors. Web safe color of #001A53 is #000066 (or #006).
#001A53 color RGB value is (0,26,83).
RGB: (0,26,83) (0%,10%,33%)
R 0 of 255 = 0%
G 26 of 255 = 10%
B 83 of 255 = 33%
R + G + B ~ 14%. #001A53 is dark color.
R + G + B =
0 + 26 + 83 = 109 (100%)
R 0 of 109 ~ 0%
G 26 of 109 ~ 23.85%
B 83 of 109 ~ 76.15%
#001A53 color CMYK value is (100,69,0,67).
CMYK: (100,69,0,67) C100M69Y0K67 (100%,69%,0%,67%) (1.00/0.69/0.00/0.67)
00 | 1A | 53 | |
---|---|---|---|
RGB | 0 | 26 | 83 |
HSL | 221° | 100.00% | 16.27% |
HSB/HSV | 221° | 100.00% | 32.55% |
CMYK | 100.00% | 68.67% | 0.00% |
67.45% |
HEX | 00 | 1A | 53 |
Decimal | 0 | 26 | 83 |
Binary | 0 | 11010 | 1010011 |
Octal | 0 | 32 | 123 |
Examples of css and html codes for elements with #001A53 color. Also use rgb(0,26,83) instead hex code.
.myTextColor { color: #001A53; }
<p style="color:#001A53">This sample text font color is #001A53.</p>
This text font color is #001A53.
.myBgColor { background-color: #001A53; }
<div style="background-color:#001A53">Inner text</div>
This div background color is #001A53.
.myBorderColor { border: 1px solid #001A53; }
<div style="border:3px solid #001A53">Div</div>
This div border color is #001A53.
.myOpacity80 { color: #001A53; opacity: 0.8; }
<p style="color:#001A53;opacity:0.8;">80%</p>
Text with #001A53 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #001A53;}
<p style="text-shadow: 3px 3px 1px #001A53">Text here.</p>
This text has shadow with #001A53 color.
.textShadow {text-shadow: 3px 3px 1px #001A53, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #001A53, 5px 5px 20px red">Text here.</p>
This text has shadow with #001A53 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#001A53, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#001A53, Direction=45, Strength=4)">Text</p>
This text has shadow with #001A53 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #001A53; -webkit-box-shadow: 1px 1px 3px 2px #001A53; box-shadow: 1px 1px 3px 2px #001A53; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #001A53; -webkit-box-shadow: 1px 1px 3px 2px #001A53; box-shadow:1px 1px 3px 2px #001A53;">
Div content here</div>
This text has color #001A53 on black background.
This text has color #001A53 on white background.
This text has black color on #001A53 background.
This text has white color on #001A53 background.