HEX: #557EAB
RGB: (85,126,171)
#557EAB contains mainly green and blue colors. Web safe color of #557EAB is #666699 (or #669).
#557EAB color RGB value is (85,126,171).
RGB: (85,126,171) (33%,49%,67%)
R 85 of 255 = 33%
G 126 of 255 = 49%
B 171 of 255 = 67%
R + G + B ~ 50%. #557EAB is middle color (not dark and not light).
R + G + B =
85 + 126 + 171 = 382 (100%)
R 85 of 382 ~ 22.25%
G 126 of 382 ~ 32.98%
B 171 of 382 ~ 44.76%
#557EAB color CMYK value is (50,26,0,33).
CMYK: (50,26,0,33) C50M26Y0K33 (50%,26%,0%,33%) (0.50/0.26/0.00/0.33)
55 | 7E | AB | |
---|---|---|---|
RGB | 85 | 126 | 171 |
HSL | 211° | 33.86% | 50.20% |
HSB/HSV | 211° | 50.29% | 67.06% |
CMYK | 50.29% | 26.32% | 0.00% |
32.94% |
HEX | 55 | 7E | AB |
Decimal | 85 | 126 | 171 |
Binary | 1010101 | 1111110 | 10101011 |
Octal | 125 | 176 | 253 |
Examples of css and html codes for elements with #557EAB color. Also use rgb(85,126,171) instead hex code.
.myTextColor { color: #557EAB; }
<p style="color:#557EAB">This sample text font color is #557EAB.</p>
This text font color is #557EAB.
.myBgColor { background-color: #557EAB; }
<div style="background-color:#557EAB">Inner text</div>
This div background color is #557EAB.
.myBorderColor { border: 1px solid #557EAB; }
<div style="border:3px solid #557EAB">Div</div>
This div border color is #557EAB.
.myOpacity80 { color: #557EAB; opacity: 0.8; }
<p style="color:#557EAB;opacity:0.8;">80%</p>
Text with #557EAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #557EAB;}
<p style="text-shadow: 3px 3px 1px #557EAB">Text here.</p>
This text has shadow with #557EAB color.
.textShadow {text-shadow: 3px 3px 1px #557EAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #557EAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #557EAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#557EAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#557EAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #557EAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #557EAB; -webkit-box-shadow: 1px 1px 3px 2px #557EAB; box-shadow: 1px 1px 3px 2px #557EAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #557EAB; -webkit-box-shadow: 1px 1px 3px 2px #557EAB; box-shadow:1px 1px 3px 2px #557EAB;">
Div content here</div>
This text has color #557EAB on black background.
This text has color #557EAB on white background.
This text has black color on #557EAB background.
This text has white color on #557EAB background.