HEX: #475CAE
RGB: (71,92,174)
#475CAE contains mainly blue color. Web safe color of #475CAE is #336699 (or #369).
#475CAE color RGB value is (71,92,174).
RGB: (71,92,174) (28%,36%,68%)
R 71 of 255 = 28%
G 92 of 255 = 36%
B 174 of 255 = 68%
R + G + B ~ 44%. #475CAE is middle color (not dark and not light).
R + G + B =
71 + 92 + 174 = 337 (100%)
R 71 of 337 ~ 21.07%
G 92 of 337 ~ 27.3%
B 174 of 337 ~ 51.63%
#475CAE color CMYK value is (59,47,0,32).
CMYK: (59,47,0,32) C59M47Y0K32 (59%,47%,0%,32%) (0.59/0.47/0.00/0.32)
47 | 5C | AE | |
---|---|---|---|
RGB | 71 | 92 | 174 |
HSL | 228° | 42.04% | 48.04% |
HSB/HSV | 228° | 59.20% | 68.24% |
CMYK | 59.20% | 47.13% | 0.00% |
31.76% |
HEX | 47 | 5C | AE |
Decimal | 71 | 92 | 174 |
Binary | 1000111 | 1011100 | 10101110 |
Octal | 107 | 134 | 256 |
Examples of css and html codes for elements with #475CAE color. Also use rgb(71,92,174) instead hex code.
.myTextColor { color: #475CAE; }
<p style="color:#475CAE">This sample text font color is #475CAE.</p>
This text font color is #475CAE.
.myBgColor { background-color: #475CAE; }
<div style="background-color:#475CAE">Inner text</div>
This div background color is #475CAE.
.myBorderColor { border: 1px solid #475CAE; }
<div style="border:3px solid #475CAE">Div</div>
This div border color is #475CAE.
.myOpacity80 { color: #475CAE; opacity: 0.8; }
<p style="color:#475CAE;opacity:0.8;">80%</p>
Text with #475CAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #475CAE;}
<p style="text-shadow: 3px 3px 1px #475CAE">Text here.</p>
This text has shadow with #475CAE color.
.textShadow {text-shadow: 3px 3px 1px #475CAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #475CAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #475CAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#475CAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#475CAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #475CAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #475CAE; -webkit-box-shadow: 1px 1px 3px 2px #475CAE; box-shadow: 1px 1px 3px 2px #475CAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #475CAE; -webkit-box-shadow: 1px 1px 3px 2px #475CAE; box-shadow:1px 1px 3px 2px #475CAE;">
Div content here</div>
This text has color #475CAE on black background.
This text has color #475CAE on white background.
This text has black color on #475CAE background.
This text has white color on #475CAE background.