HEX: #5B519B
RGB: (91,81,155)
#5B519B contains mainly blue color. Web safe color of #5B519B is #666699 (or #669).
#5B519B color RGB value is (91,81,155).
RGB: (91,81,155) (36%,32%,61%)
R 91 of 255 = 36%
G 81 of 255 = 32%
B 155 of 255 = 61%
R + G + B ~ 43%. #5B519B is middle color (not dark and not light).
R + G + B =
91 + 81 + 155 = 327 (100%)
R 91 of 327 ~ 27.83%
G 81 of 327 ~ 24.77%
B 155 of 327 ~ 47.4%
#5B519B color CMYK value is (41,48,0,39).
CMYK: (41,48,0,39) C41M48Y0K39 (41%,48%,0%,39%) (0.41/0.48/0.00/0.39)
5B | 51 | 9B | |
---|---|---|---|
RGB | 91 | 81 | 155 |
HSL | 248° | 31.36% | 46.27% |
HSB/HSV | 248° | 47.74% | 60.78% |
CMYK | 41.29% | 47.74% | 0.00% |
39.22% |
HEX | 5B | 51 | 9B |
Decimal | 91 | 81 | 155 |
Binary | 1011011 | 1010001 | 10011011 |
Octal | 133 | 121 | 233 |
Examples of css and html codes for elements with #5B519B color. Also use rgb(91,81,155) instead hex code.
.myTextColor { color: #5B519B; }
<p style="color:#5B519B">This sample text font color is #5B519B.</p>
This text font color is #5B519B.
.myBgColor { background-color: #5B519B; }
<div style="background-color:#5B519B">Inner text</div>
This div background color is #5B519B.
.myBorderColor { border: 1px solid #5B519B; }
<div style="border:3px solid #5B519B">Div</div>
This div border color is #5B519B.
.myOpacity80 { color: #5B519B; opacity: 0.8; }
<p style="color:#5B519B;opacity:0.8;">80%</p>
Text with #5B519B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #5B519B;}
<p style="text-shadow: 3px 3px 1px #5B519B">Text here.</p>
This text has shadow with #5B519B color.
.textShadow {text-shadow: 3px 3px 1px #5B519B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #5B519B, 5px 5px 20px red">Text here.</p>
This text has shadow with #5B519B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#5B519B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#5B519B, Direction=45, Strength=4)">Text</p>
This text has shadow with #5B519B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #5B519B; -webkit-box-shadow: 1px 1px 3px 2px #5B519B; box-shadow: 1px 1px 3px 2px #5B519B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #5B519B; -webkit-box-shadow: 1px 1px 3px 2px #5B519B; box-shadow:1px 1px 3px 2px #5B519B;">
Div content here</div>
This text has color #5B519B on black background.
This text has color #5B519B on white background.
This text has black color on #5B519B background.
This text has white color on #5B519B background.