HEX: #375CAF
RGB: (55,92,175)
#375CAF contains mainly blue color. Web safe color of #375CAF is #336699 (or #369).
#375CAF color RGB value is (55,92,175).
RGB: (55,92,175) (22%,36%,69%)
R 55 of 255 = 22%
G 92 of 255 = 36%
B 175 of 255 = 69%
R + G + B ~ 42%. #375CAF is middle color (not dark and not light).
R + G + B =
55 + 92 + 175 = 322 (100%)
R 55 of 322 ~ 17.08%
G 92 of 322 ~ 28.57%
B 175 of 322 ~ 54.35%
#375CAF color CMYK value is (69,47,0,31).
CMYK: (69,47,0,31) C69M47Y0K31 (69%,47%,0%,31%) (0.69/0.47/0.00/0.31)
37 | 5C | AF | |
---|---|---|---|
RGB | 55 | 92 | 175 |
HSL | 222° | 52.17% | 45.10% |
HSB/HSV | 222° | 68.57% | 68.63% |
CMYK | 68.57% | 47.43% | 0.00% |
31.37% |
HEX | 37 | 5C | AF |
Decimal | 55 | 92 | 175 |
Binary | 110111 | 1011100 | 10101111 |
Octal | 67 | 134 | 257 |
Examples of css and html codes for elements with #375CAF color. Also use rgb(55,92,175) instead hex code.
.myTextColor { color: #375CAF; }
<p style="color:#375CAF">This sample text font color is #375CAF.</p>
This text font color is #375CAF.
.myBgColor { background-color: #375CAF; }
<div style="background-color:#375CAF">Inner text</div>
This div background color is #375CAF.
.myBorderColor { border: 1px solid #375CAF; }
<div style="border:3px solid #375CAF">Div</div>
This div border color is #375CAF.
.myOpacity80 { color: #375CAF; opacity: 0.8; }
<p style="color:#375CAF;opacity:0.8;">80%</p>
Text with #375CAF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #375CAF;}
<p style="text-shadow: 3px 3px 1px #375CAF">Text here.</p>
This text has shadow with #375CAF color.
.textShadow {text-shadow: 3px 3px 1px #375CAF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #375CAF, 5px 5px 20px red">Text here.</p>
This text has shadow with #375CAF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#375CAF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#375CAF, Direction=45, Strength=4)">Text</p>
This text has shadow with #375CAF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #375CAF; -webkit-box-shadow: 1px 1px 3px 2px #375CAF; box-shadow: 1px 1px 3px 2px #375CAF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #375CAF; -webkit-box-shadow: 1px 1px 3px 2px #375CAF; box-shadow:1px 1px 3px 2px #375CAF;">
Div content here</div>
This text has color #375CAF on black background.
This text has color #375CAF on white background.
This text has black color on #375CAF background.
This text has white color on #375CAF background.