HEX: #120550
RGB: (18,5,80)
#120550 contains mainly blue color. Web safe color of #120550 is #000066 (or #006).
#120550 color RGB value is (18,5,80).
RGB: (18,5,80) (7%,2%,31%)
R 18 of 255 = 7%
G 5 of 255 = 2%
B 80 of 255 = 31%
R + G + B ~ 13%. #120550 is dark color.
R + G + B =
18 + 5 + 80 = 103 (100%)
R 18 of 103 ~ 17.48%
G 5 of 103 ~ 4.85%
B 80 of 103 ~ 77.67%
#120550 color CMYK value is (78,94,0,69).
CMYK: (78,94,0,69) C78M94Y0K69 (78%,94%,0%,69%) (0.78/0.94/0.00/0.69)
12 | 05 | 50 | |
---|---|---|---|
RGB | 18 | 5 | 80 |
HSL | 250° | 88.24% | 16.67% |
HSB/HSV | 250° | 93.75% | 31.37% |
CMYK | 77.50% | 93.75% | 0.00% |
68.63% |
HEX | 12 | 05 | 50 |
Decimal | 18 | 5 | 80 |
Binary | 10010 | 101 | 1010000 |
Octal | 22 | 5 | 120 |
Examples of css and html codes for elements with #120550 color. Also use rgb(18,5,80) instead hex code.
.myTextColor { color: #120550; }
<p style="color:#120550">This sample text font color is #120550.</p>
This text font color is #120550.
.myBgColor { background-color: #120550; }
<div style="background-color:#120550">Inner text</div>
This div background color is #120550.
.myBorderColor { border: 1px solid #120550; }
<div style="border:3px solid #120550">Div</div>
This div border color is #120550.
.myOpacity80 { color: #120550; opacity: 0.8; }
<p style="color:#120550;opacity:0.8;">80%</p>
Text with #120550 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #120550;}
<p style="text-shadow: 3px 3px 1px #120550">Text here.</p>
This text has shadow with #120550 color.
.textShadow {text-shadow: 3px 3px 1px #120550, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #120550, 5px 5px 20px red">Text here.</p>
This text has shadow with #120550 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#120550, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#120550, Direction=45, Strength=4)">Text</p>
This text has shadow with #120550 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #120550; -webkit-box-shadow: 1px 1px 3px 2px #120550; box-shadow: 1px 1px 3px 2px #120550; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #120550; -webkit-box-shadow: 1px 1px 3px 2px #120550; box-shadow:1px 1px 3px 2px #120550;">
Div content here</div>
This text has color #120550 on black background.
This text has color #120550 on white background.
This text has black color on #120550 background.
This text has white color on #120550 background.