HEX: #5C77AB
RGB: (92,119,171)
#5C77AB contains mainly green and blue colors. Web safe color of #5C77AB is #666699 (or #669).
#5C77AB color RGB value is (92,119,171).
RGB: (92,119,171) (36%,47%,67%)
R 92 of 255 = 36%
G 119 of 255 = 47%
B 171 of 255 = 67%
R + G + B ~ 50%. #5C77AB is middle color (not dark and not light).
R + G + B =
92 + 119 + 171 = 382 (100%)
R 92 of 382 ~ 24.08%
G 119 of 382 ~ 31.15%
B 171 of 382 ~ 44.76%
#5C77AB color CMYK value is (46,30,0,33).
CMYK: (46,30,0,33) C46M30Y0K33 (46%,30%,0%,33%) (0.46/0.30/0.00/0.33)
5C | 77 | AB | |
---|---|---|---|
RGB | 92 | 119 | 171 |
HSL | 219° | 31.98% | 51.57% |
HSB/HSV | 219° | 46.20% | 67.06% |
CMYK | 46.20% | 30.41% | 0.00% |
32.94% |
HEX | 5C | 77 | AB |
Decimal | 92 | 119 | 171 |
Binary | 1011100 | 1110111 | 10101011 |
Octal | 134 | 167 | 253 |
Examples of css and html codes for elements with #5C77AB color. Also use rgb(92,119,171) instead hex code.
.myTextColor { color: #5C77AB; }
<p style="color:#5C77AB">This sample text font color is #5C77AB.</p>
This text font color is #5C77AB.
.myBgColor { background-color: #5C77AB; }
<div style="background-color:#5C77AB">Inner text</div>
This div background color is #5C77AB.
.myBorderColor { border: 1px solid #5C77AB; }
<div style="border:3px solid #5C77AB">Div</div>
This div border color is #5C77AB.
.myOpacity80 { color: #5C77AB; opacity: 0.8; }
<p style="color:#5C77AB;opacity:0.8;">80%</p>
Text with #5C77AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #5C77AB;}
<p style="text-shadow: 3px 3px 1px #5C77AB">Text here.</p>
This text has shadow with #5C77AB color.
.textShadow {text-shadow: 3px 3px 1px #5C77AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #5C77AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #5C77AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#5C77AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#5C77AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #5C77AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #5C77AB; -webkit-box-shadow: 1px 1px 3px 2px #5C77AB; box-shadow: 1px 1px 3px 2px #5C77AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #5C77AB; -webkit-box-shadow: 1px 1px 3px 2px #5C77AB; box-shadow:1px 1px 3px 2px #5C77AB;">
Div content here</div>
This text has color #5C77AB on black background.
This text has color #5C77AB on white background.
This text has black color on #5C77AB background.
This text has white color on #5C77AB background.