HEX: #1476B1
RGB: (20,118,177)
#1476B1 contains mainly green and blue colors. Web safe color of #1476B1 is #006699 (or #069).
#1476B1 color RGB value is (20,118,177).
RGB: (20,118,177) (8%,46%,69%)
R 20 of 255 = 8%
G 118 of 255 = 46%
B 177 of 255 = 69%
R + G + B ~ 41%. #1476B1 is middle color (not dark and not light).
R + G + B =
20 + 118 + 177 = 315 (100%)
R 20 of 315 ~ 6.35%
G 118 of 315 ~ 37.46%
B 177 of 315 ~ 56.19%
#1476B1 color CMYK value is (89,33,0,31).
CMYK: (89,33,0,31) C89M33Y0K31 (89%,33%,0%,31%) (0.89/0.33/0.00/0.31)
14 | 76 | B1 | |
---|---|---|---|
RGB | 20 | 118 | 177 |
HSL | 203° | 79.70% | 38.63% |
HSB/HSV | 203° | 88.70% | 69.41% |
CMYK | 88.70% | 33.33% | 0.00% |
30.59% |
HEX | 14 | 76 | B1 |
Decimal | 20 | 118 | 177 |
Binary | 10100 | 1110110 | 10110001 |
Octal | 24 | 166 | 261 |
Examples of css and html codes for elements with #1476B1 color. Also use rgb(20,118,177) instead hex code.
.myTextColor { color: #1476B1; }
<p style="color:#1476B1">This sample text font color is #1476B1.</p>
This text font color is #1476B1.
.myBgColor { background-color: #1476B1; }
<div style="background-color:#1476B1">Inner text</div>
This div background color is #1476B1.
.myBorderColor { border: 1px solid #1476B1; }
<div style="border:3px solid #1476B1">Div</div>
This div border color is #1476B1.
.myOpacity80 { color: #1476B1; opacity: 0.8; }
<p style="color:#1476B1;opacity:0.8;">80%</p>
Text with #1476B1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #1476B1;}
<p style="text-shadow: 3px 3px 1px #1476B1">Text here.</p>
This text has shadow with #1476B1 color.
.textShadow {text-shadow: 3px 3px 1px #1476B1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #1476B1, 5px 5px 20px red">Text here.</p>
This text has shadow with #1476B1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#1476B1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#1476B1, Direction=45, Strength=4)">Text</p>
This text has shadow with #1476B1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #1476B1; -webkit-box-shadow: 1px 1px 3px 2px #1476B1; box-shadow: 1px 1px 3px 2px #1476B1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #1476B1; -webkit-box-shadow: 1px 1px 3px 2px #1476B1; box-shadow:1px 1px 3px 2px #1476B1;">
Div content here</div>
This text has color #1476B1 on black background.
This text has color #1476B1 on white background.
This text has black color on #1476B1 background.
This text has white color on #1476B1 background.