HEX: #425D86
RGB: (66,93,134)
#425D86 contains mainly green and blue colors. Web safe color of #425D86 is #336699 (or #369).
#425D86 color RGB value is (66,93,134).
RGB: (66,93,134) (26%,36%,53%)
R 66 of 255 = 26%
G 93 of 255 = 36%
B 134 of 255 = 53%
R + G + B ~ 38%. #425D86 is quite dark color.
R + G + B =
66 + 93 + 134 = 293 (100%)
R 66 of 293 ~ 22.53%
G 93 of 293 ~ 31.74%
B 134 of 293 ~ 45.73%
#425D86 color CMYK value is (51,31,0,47).
CMYK: (51,31,0,47) C51M31Y0K47 (51%,31%,0%,47%) (0.51/0.31/0.00/0.47)
42 | 5D | 86 | |
---|---|---|---|
RGB | 66 | 93 | 134 |
HSL | 216° | 34.00% | 39.22% |
HSB/HSV | 216° | 50.75% | 52.55% |
CMYK | 50.75% | 30.60% | 0.00% |
47.45% |
HEX | 42 | 5D | 86 |
Decimal | 66 | 93 | 134 |
Binary | 1000010 | 1011101 | 10000110 |
Octal | 102 | 135 | 206 |
Examples of css and html codes for elements with #425D86 color. Also use rgb(66,93,134) instead hex code.
.myTextColor { color: #425D86; }
<p style="color:#425D86">This sample text font color is #425D86.</p>
This text font color is #425D86.
.myBgColor { background-color: #425D86; }
<div style="background-color:#425D86">Inner text</div>
This div background color is #425D86.
.myBorderColor { border: 1px solid #425D86; }
<div style="border:3px solid #425D86">Div</div>
This div border color is #425D86.
.myOpacity80 { color: #425D86; opacity: 0.8; }
<p style="color:#425D86;opacity:0.8;">80%</p>
Text with #425D86 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #425D86;}
<p style="text-shadow: 3px 3px 1px #425D86">Text here.</p>
This text has shadow with #425D86 color.
.textShadow {text-shadow: 3px 3px 1px #425D86, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #425D86, 5px 5px 20px red">Text here.</p>
This text has shadow with #425D86 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#425D86, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#425D86, Direction=45, Strength=4)">Text</p>
This text has shadow with #425D86 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #425D86; -webkit-box-shadow: 1px 1px 3px 2px #425D86; box-shadow: 1px 1px 3px 2px #425D86; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #425D86; -webkit-box-shadow: 1px 1px 3px 2px #425D86; box-shadow:1px 1px 3px 2px #425D86;">
Div content here</div>
This text has color #425D86 on black background.
This text has color #425D86 on white background.
This text has black color on #425D86 background.
This text has white color on #425D86 background.