HEX: #4673BB
RGB: (70,115,187)
#4673BB contains mainly blue color. Web safe color of #4673BB is #3366CC (or #36C).
#4673BB color RGB value is (70,115,187).
RGB: (70,115,187) (27%,45%,73%)
R 70 of 255 = 27%
G 115 of 255 = 45%
B 187 of 255 = 73%
R + G + B ~ 48%. #4673BB is middle color (not dark and not light).
R + G + B =
70 + 115 + 187 = 372 (100%)
R 70 of 372 ~ 18.82%
G 115 of 372 ~ 30.91%
B 187 of 372 ~ 50.27%
#4673BB color CMYK value is (63,39,0,27).
CMYK: (63,39,0,27) C63M39Y0K27 (63%,39%,0%,27%) (0.63/0.39/0.00/0.27)
46 | 73 | BB | |
---|---|---|---|
RGB | 70 | 115 | 187 |
HSL | 217° | 46.25% | 50.39% |
HSB/HSV | 217° | 62.57% | 73.33% |
CMYK | 62.57% | 38.50% | 0.00% |
26.67% |
HEX | 46 | 73 | BB |
Decimal | 70 | 115 | 187 |
Binary | 1000110 | 1110011 | 10111011 |
Octal | 106 | 163 | 273 |
Examples of css and html codes for elements with #4673BB color. Also use rgb(70,115,187) instead hex code.
.myTextColor { color: #4673BB; }
<p style="color:#4673BB">This sample text font color is #4673BB.</p>
This text font color is #4673BB.
.myBgColor { background-color: #4673BB; }
<div style="background-color:#4673BB">Inner text</div>
This div background color is #4673BB.
.myBorderColor { border: 1px solid #4673BB; }
<div style="border:3px solid #4673BB">Div</div>
This div border color is #4673BB.
.myOpacity80 { color: #4673BB; opacity: 0.8; }
<p style="color:#4673BB;opacity:0.8;">80%</p>
Text with #4673BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4673BB;}
<p style="text-shadow: 3px 3px 1px #4673BB">Text here.</p>
This text has shadow with #4673BB color.
.textShadow {text-shadow: 3px 3px 1px #4673BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4673BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #4673BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4673BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4673BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #4673BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4673BB; -webkit-box-shadow: 1px 1px 3px 2px #4673BB; box-shadow: 1px 1px 3px 2px #4673BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4673BB; -webkit-box-shadow: 1px 1px 3px 2px #4673BB; box-shadow:1px 1px 3px 2px #4673BB;">
Div content here</div>
This text has color #4673BB on black background.
This text has color #4673BB on white background.
This text has black color on #4673BB background.
This text has white color on #4673BB background.