HEX: #5B80BB
RGB: (91,128,187)
#5B80BB contains mainly green and blue colors. Web safe color of #5B80BB is #6666CC (or #66C).
#5B80BB color RGB value is (91,128,187).
RGB: (91,128,187) (36%,50%,73%)
R 91 of 255 = 36%
G 128 of 255 = 50%
B 187 of 255 = 73%
R + G + B ~ 53%. #5B80BB is middle color (not dark and not light).
R + G + B =
91 + 128 + 187 = 406 (100%)
R 91 of 406 ~ 22.41%
G 128 of 406 ~ 31.53%
B 187 of 406 ~ 46.06%
#5B80BB color CMYK value is (51,32,0,27).
CMYK: (51,32,0,27) C51M32Y0K27 (51%,32%,0%,27%) (0.51/0.32/0.00/0.27)
5B | 80 | BB | |
---|---|---|---|
RGB | 91 | 128 | 187 |
HSL | 217° | 41.38% | 54.51% |
HSB/HSV | 217° | 51.34% | 73.33% |
CMYK | 51.34% | 31.55% | 0.00% |
26.67% |
HEX | 5B | 80 | BB |
Decimal | 91 | 128 | 187 |
Binary | 1011011 | 10000000 | 10111011 |
Octal | 133 | 200 | 273 |
Examples of css and html codes for elements with #5B80BB color. Also use rgb(91,128,187) instead hex code.
.myTextColor { color: #5B80BB; }
<p style="color:#5B80BB">This sample text font color is #5B80BB.</p>
This text font color is #5B80BB.
.myBgColor { background-color: #5B80BB; }
<div style="background-color:#5B80BB">Inner text</div>
This div background color is #5B80BB.
.myBorderColor { border: 1px solid #5B80BB; }
<div style="border:3px solid #5B80BB">Div</div>
This div border color is #5B80BB.
.myOpacity80 { color: #5B80BB; opacity: 0.8; }
<p style="color:#5B80BB;opacity:0.8;">80%</p>
Text with #5B80BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #5B80BB;}
<p style="text-shadow: 3px 3px 1px #5B80BB">Text here.</p>
This text has shadow with #5B80BB color.
.textShadow {text-shadow: 3px 3px 1px #5B80BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #5B80BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #5B80BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#5B80BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#5B80BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #5B80BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #5B80BB; -webkit-box-shadow: 1px 1px 3px 2px #5B80BB; box-shadow: 1px 1px 3px 2px #5B80BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #5B80BB; -webkit-box-shadow: 1px 1px 3px 2px #5B80BB; box-shadow:1px 1px 3px 2px #5B80BB;">
Div content here</div>
This text has color #5B80BB on black background.
This text has color #5B80BB on white background.
This text has black color on #5B80BB background.
This text has white color on #5B80BB background.