HEX: #37427B
RGB: (55,66,123)
#37427B contains mainly green and blue colors. Web safe color of #37427B is #333366 (or #336).
#37427B color RGB value is (55,66,123).
RGB: (55,66,123) (22%,26%,48%)
R 55 of 255 = 22%
G 66 of 255 = 26%
B 123 of 255 = 48%
R + G + B ~ 32%. #37427B is quite dark color.
R + G + B =
55 + 66 + 123 = 244 (100%)
R 55 of 244 ~ 22.54%
G 66 of 244 ~ 27.05%
B 123 of 244 ~ 50.41%
#37427B color CMYK value is (55,46,0,52).
CMYK: (55,46,0,52) C55M46Y0K52 (55%,46%,0%,52%) (0.55/0.46/0.00/0.52)
37 | 42 | 7B | |
---|---|---|---|
RGB | 55 | 66 | 123 |
HSL | 230° | 38.20% | 34.90% |
HSB/HSV | 230° | 55.28% | 48.24% |
CMYK | 55.28% | 46.34% | 0.00% |
51.76% |
HEX | 37 | 42 | 7B |
Decimal | 55 | 66 | 123 |
Binary | 110111 | 1000010 | 1111011 |
Octal | 67 | 102 | 173 |
Examples of css and html codes for elements with #37427B color. Also use rgb(55,66,123) instead hex code.
.myTextColor { color: #37427B; }
<p style="color:#37427B">This sample text font color is #37427B.</p>
This text font color is #37427B.
.myBgColor { background-color: #37427B; }
<div style="background-color:#37427B">Inner text</div>
This div background color is #37427B.
.myBorderColor { border: 1px solid #37427B; }
<div style="border:3px solid #37427B">Div</div>
This div border color is #37427B.
.myOpacity80 { color: #37427B; opacity: 0.8; }
<p style="color:#37427B;opacity:0.8;">80%</p>
Text with #37427B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #37427B;}
<p style="text-shadow: 3px 3px 1px #37427B">Text here.</p>
This text has shadow with #37427B color.
.textShadow {text-shadow: 3px 3px 1px #37427B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #37427B, 5px 5px 20px red">Text here.</p>
This text has shadow with #37427B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#37427B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#37427B, Direction=45, Strength=4)">Text</p>
This text has shadow with #37427B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #37427B; -webkit-box-shadow: 1px 1px 3px 2px #37427B; box-shadow: 1px 1px 3px 2px #37427B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #37427B; -webkit-box-shadow: 1px 1px 3px 2px #37427B; box-shadow:1px 1px 3px 2px #37427B;">
Div content here</div>
This text has color #37427B on black background.
This text has color #37427B on white background.
This text has black color on #37427B background.
This text has white color on #37427B background.