HEX: #5497BD
RGB: (84,151,189)
#5497BD contains mainly green and blue colors. Web safe color of #5497BD is #6699CC (or #69C).
#5497BD color RGB value is (84,151,189).
RGB: (84,151,189) (33%,59%,74%)
R 84 of 255 = 33%
G 151 of 255 = 59%
B 189 of 255 = 74%
R + G + B ~ 55%. #5497BD is middle color (not dark and not light).
R + G + B =
84 + 151 + 189 = 424 (100%)
R 84 of 424 ~ 19.81%
G 151 of 424 ~ 35.61%
B 189 of 424 ~ 44.58%
#5497BD color CMYK value is (56,20,0,26).
CMYK: (56,20,0,26) C56M20Y0K26 (56%,20%,0%,26%) (0.56/0.20/0.00/0.26)
54 | 97 | BD | |
---|---|---|---|
RGB | 84 | 151 | 189 |
HSL | 202° | 44.30% | 53.53% |
HSB/HSV | 202° | 55.56% | 74.12% |
CMYK | 55.56% | 20.11% | 0.00% |
25.88% |
HEX | 54 | 97 | BD |
Decimal | 84 | 151 | 189 |
Binary | 1010100 | 10010111 | 10111101 |
Octal | 124 | 227 | 275 |
Examples of css and html codes for elements with #5497BD color. Also use rgb(84,151,189) instead hex code.
.myTextColor { color: #5497BD; }
<p style="color:#5497BD">This sample text font color is #5497BD.</p>
This text font color is #5497BD.
.myBgColor { background-color: #5497BD; }
<div style="background-color:#5497BD">Inner text</div>
This div background color is #5497BD.
.myBorderColor { border: 1px solid #5497BD; }
<div style="border:3px solid #5497BD">Div</div>
This div border color is #5497BD.
.myOpacity80 { color: #5497BD; opacity: 0.8; }
<p style="color:#5497BD;opacity:0.8;">80%</p>
Text with #5497BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #5497BD;}
<p style="text-shadow: 3px 3px 1px #5497BD">Text here.</p>
This text has shadow with #5497BD color.
.textShadow {text-shadow: 3px 3px 1px #5497BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #5497BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #5497BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#5497BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#5497BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #5497BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #5497BD; -webkit-box-shadow: 1px 1px 3px 2px #5497BD; box-shadow: 1px 1px 3px 2px #5497BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #5497BD; -webkit-box-shadow: 1px 1px 3px 2px #5497BD; box-shadow:1px 1px 3px 2px #5497BD;">
Div content here</div>
This text has color #5497BD on black background.
This text has color #5497BD on white background.
This text has black color on #5497BD background.
This text has white color on #5497BD background.