HEX: #B59EFB
RGB: (181,158,251)
#B59EFB contains mainly blue color. Web safe color of #B59EFB is #CC99FF (or #C9F).
#B59EFB color RGB value is (181,158,251).
RGB: (181,158,251) (71%,62%,98%)
R 181 of 255 = 71%
G 158 of 255 = 62%
B 251 of 255 = 98%
R + G + B ~ 77%. #B59EFB is quite light color.
R + G + B =
181 + 158 + 251 = 590 (100%)
R 181 of 590 ~ 30.68%
G 158 of 590 ~ 26.78%
B 251 of 590 ~ 42.54%
#B59EFB color CMYK value is (28,37,0,2).
CMYK: (28,37,0,2) C28M37Y0K2 (28%,37%,0%,2%) (0.28/0.37/0.00/0.02)
B5 | 9E | FB | |
---|---|---|---|
RGB | 181 | 158 | 251 |
HSL | 255° | 92.08% | 80.20% |
HSB/HSV | 255° | 37.05% | 98.43% |
CMYK | 27.89% | 37.05% | 0.00% |
1.57% |
HEX | B5 | 9E | FB |
Decimal | 181 | 158 | 251 |
Binary | 10110101 | 10011110 | 11111011 |
Octal | 265 | 236 | 373 |
Examples of css and html codes for elements with #B59EFB color. Also use rgb(181,158,251) instead hex code.
.myTextColor { color: #B59EFB; }
<p style="color:#B59EFB">This sample text font color is #B59EFB.</p>
This text font color is #B59EFB.
.myBgColor { background-color: #B59EFB; }
<div style="background-color:#B59EFB">Inner text</div>
This div background color is #B59EFB.
.myBorderColor { border: 1px solid #B59EFB; }
<div style="border:3px solid #B59EFB">Div</div>
This div border color is #B59EFB.
.myOpacity80 { color: #B59EFB; opacity: 0.8; }
<p style="color:#B59EFB;opacity:0.8;">80%</p>
Text with #B59EFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B59EFB;}
<p style="text-shadow: 3px 3px 1px #B59EFB">Text here.</p>
This text has shadow with #B59EFB color.
.textShadow {text-shadow: 3px 3px 1px #B59EFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B59EFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B59EFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B59EFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B59EFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B59EFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B59EFB; -webkit-box-shadow: 1px 1px 3px 2px #B59EFB; box-shadow: 1px 1px 3px 2px #B59EFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B59EFB; -webkit-box-shadow: 1px 1px 3px 2px #B59EFB; box-shadow:1px 1px 3px 2px #B59EFB;">
Div content here</div>
This text has color #B59EFB on black background.
This text has color #B59EFB on white background.
This text has black color on #B59EFB background.
This text has white color on #B59EFB background.