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