HEX: #013489
RGB: (1,52,137)
#013489 contains mainly blue color. Web safe color of #013489 is #003399 (or #039).
#013489 color RGB value is (1,52,137).
RGB: (1,52,137) (0%,20%,54%)
R 1 of 255 = 0%
G 52 of 255 = 20%
B 137 of 255 = 54%
R + G + B ~ 25%. #013489 is quite dark color.
R + G + B =
1 + 52 + 137 = 190 (100%)
R 1 of 190 ~ 0.53%
G 52 of 190 ~ 27.37%
B 137 of 190 ~ 72.11%
#013489 color CMYK value is (99,62,0,46).
CMYK: (99,62,0,46) C99M62Y0K46 (99%,62%,0%,46%) (0.99/0.62/0.00/0.46)
01 | 34 | 89 | |
---|---|---|---|
RGB | 1 | 52 | 137 |
HSL | 218° | 98.55% | 27.06% |
HSB/HSV | 218° | 99.27% | 53.73% |
CMYK | 99.27% | 62.04% | 0.00% |
46.27% |
HEX | 01 | 34 | 89 |
Decimal | 1 | 52 | 137 |
Binary | 1 | 110100 | 10001001 |
Octal | 1 | 64 | 211 |
Examples of css and html codes for elements with #013489 color. Also use rgb(1,52,137) instead hex code.
.myTextColor { color: #013489; }
<p style="color:#013489">This sample text font color is #013489.</p>
This text font color is #013489.
.myBgColor { background-color: #013489; }
<div style="background-color:#013489">Inner text</div>
This div background color is #013489.
.myBorderColor { border: 1px solid #013489; }
<div style="border:3px solid #013489">Div</div>
This div border color is #013489.
.myOpacity80 { color: #013489; opacity: 0.8; }
<p style="color:#013489;opacity:0.8;">80%</p>
Text with #013489 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #013489;}
<p style="text-shadow: 3px 3px 1px #013489">Text here.</p>
This text has shadow with #013489 color.
.textShadow {text-shadow: 3px 3px 1px #013489, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #013489, 5px 5px 20px red">Text here.</p>
This text has shadow with #013489 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#013489, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#013489, Direction=45, Strength=4)">Text</p>
This text has shadow with #013489 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #013489; -webkit-box-shadow: 1px 1px 3px 2px #013489; box-shadow: 1px 1px 3px 2px #013489; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #013489; -webkit-box-shadow: 1px 1px 3px 2px #013489; box-shadow:1px 1px 3px 2px #013489;">
Div content here</div>
This text has color #013489 on black background.
This text has color #013489 on white background.
This text has black color on #013489 background.
This text has white color on #013489 background.