HEX: #427890
RGB: (66,120,144)
#427890 contains mainly green and blue colors. Web safe color of #427890 is #336699 (or #369).
#427890 color RGB value is (66,120,144).
RGB: (66,120,144) (26%,47%,56%)
R 66 of 255 = 26%
G 120 of 255 = 47%
B 144 of 255 = 56%
R + G + B ~ 43%. #427890 is middle color (not dark and not light).
R + G + B =
66 + 120 + 144 = 330 (100%)
R 66 of 330 ~ 20%
G 120 of 330 ~ 36.36%
B 144 of 330 ~ 43.64%
#427890 color CMYK value is (54,17,0,44).
CMYK: (54,17,0,44) C54M17Y0K44 (54%,17%,0%,44%) (0.54/0.17/0.00/0.44)
42 | 78 | 90 | |
---|---|---|---|
RGB | 66 | 120 | 144 |
HSL | 198° | 37.14% | 41.18% |
HSB/HSV | 198° | 54.17% | 56.47% |
CMYK | 54.17% | 16.67% | 0.00% |
43.53% |
HEX | 42 | 78 | 90 |
Decimal | 66 | 120 | 144 |
Binary | 1000010 | 1111000 | 10010000 |
Octal | 102 | 170 | 220 |
Examples of css and html codes for elements with #427890 color. Also use rgb(66,120,144) instead hex code.
.myTextColor { color: #427890; }
<p style="color:#427890">This sample text font color is #427890.</p>
This text font color is #427890.
.myBgColor { background-color: #427890; }
<div style="background-color:#427890">Inner text</div>
This div background color is #427890.
.myBorderColor { border: 1px solid #427890; }
<div style="border:3px solid #427890">Div</div>
This div border color is #427890.
.myOpacity80 { color: #427890; opacity: 0.8; }
<p style="color:#427890;opacity:0.8;">80%</p>
Text with #427890 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #427890;}
<p style="text-shadow: 3px 3px 1px #427890">Text here.</p>
This text has shadow with #427890 color.
.textShadow {text-shadow: 3px 3px 1px #427890, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #427890, 5px 5px 20px red">Text here.</p>
This text has shadow with #427890 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#427890, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#427890, Direction=45, Strength=4)">Text</p>
This text has shadow with #427890 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #427890; -webkit-box-shadow: 1px 1px 3px 2px #427890; box-shadow: 1px 1px 3px 2px #427890; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #427890; -webkit-box-shadow: 1px 1px 3px 2px #427890; box-shadow:1px 1px 3px 2px #427890;">
Div content here</div>
This text has color #427890 on black background.
This text has color #427890 on white background.
This text has black color on #427890 background.
This text has white color on #427890 background.