HEX: #378EAD
RGB: (55,142,173)
#378EAD contains mainly green and blue colors. Web safe color of #378EAD is #339999 (or #399).
#378EAD color RGB value is (55,142,173).
RGB: (55,142,173) (22%,56%,68%)
R 55 of 255 = 22%
G 142 of 255 = 56%
B 173 of 255 = 68%
R + G + B ~ 49%. #378EAD is middle color (not dark and not light).
R + G + B =
55 + 142 + 173 = 370 (100%)
R 55 of 370 ~ 14.86%
G 142 of 370 ~ 38.38%
B 173 of 370 ~ 46.76%
#378EAD color CMYK value is (68,18,0,32).
CMYK: (68,18,0,32) C68M18Y0K32 (68%,18%,0%,32%) (0.68/0.18/0.00/0.32)
37 | 8E | AD | |
---|---|---|---|
RGB | 55 | 142 | 173 |
HSL | 196° | 51.75% | 44.71% |
HSB/HSV | 196° | 68.21% | 67.84% |
CMYK | 68.21% | 17.92% | 0.00% |
32.16% |
HEX | 37 | 8E | AD |
Decimal | 55 | 142 | 173 |
Binary | 110111 | 10001110 | 10101101 |
Octal | 67 | 216 | 255 |
Examples of css and html codes for elements with #378EAD color. Also use rgb(55,142,173) instead hex code.
.myTextColor { color: #378EAD; }
<p style="color:#378EAD">This sample text font color is #378EAD.</p>
This text font color is #378EAD.
.myBgColor { background-color: #378EAD; }
<div style="background-color:#378EAD">Inner text</div>
This div background color is #378EAD.
.myBorderColor { border: 1px solid #378EAD; }
<div style="border:3px solid #378EAD">Div</div>
This div border color is #378EAD.
.myOpacity80 { color: #378EAD; opacity: 0.8; }
<p style="color:#378EAD;opacity:0.8;">80%</p>
Text with #378EAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #378EAD;}
<p style="text-shadow: 3px 3px 1px #378EAD">Text here.</p>
This text has shadow with #378EAD color.
.textShadow {text-shadow: 3px 3px 1px #378EAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #378EAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #378EAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#378EAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#378EAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #378EAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #378EAD; -webkit-box-shadow: 1px 1px 3px 2px #378EAD; box-shadow: 1px 1px 3px 2px #378EAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #378EAD; -webkit-box-shadow: 1px 1px 3px 2px #378EAD; box-shadow:1px 1px 3px 2px #378EAD;">
Div content here</div>
This text has color #378EAD on black background.
This text has color #378EAD on white background.
This text has black color on #378EAD background.
This text has white color on #378EAD background.