HEX: #BB5EEF
RGB: (187,94,239)
#BB5EEF contains mainly red and blue colors. Web safe color of #BB5EEF is #CC66FF (or #C6F).
#BB5EEF color RGB value is (187,94,239).
RGB: (187,94,239) (73%,37%,94%)
R 187 of 255 = 73%
G 94 of 255 = 37%
B 239 of 255 = 94%
R + G + B ~ 68%. #BB5EEF is quite light color.
R + G + B =
187 + 94 + 239 = 520 (100%)
R 187 of 520 ~ 35.96%
G 94 of 520 ~ 18.08%
B 239 of 520 ~ 45.96%
#BB5EEF color CMYK value is (22,61,0,6).
CMYK: (22,61,0,6) C22M61Y0K6 (22%,61%,0%,6%) (0.22/0.61/0.00/0.06)
BB | 5E | EF | |
---|---|---|---|
RGB | 187 | 94 | 239 |
HSL | 278° | 81.92% | 65.29% |
HSB/HSV | 278° | 60.67% | 93.73% |
CMYK | 21.76% | 60.67% | 0.00% |
6.27% |
HEX | BB | 5E | EF |
Decimal | 187 | 94 | 239 |
Binary | 10111011 | 1011110 | 11101111 |
Octal | 273 | 136 | 357 |
Examples of css and html codes for elements with #BB5EEF color. Also use rgb(187,94,239) instead hex code.
.myTextColor { color: #BB5EEF; }
<p style="color:#BB5EEF">This sample text font color is #BB5EEF.</p>
This text font color is #BB5EEF.
.myBgColor { background-color: #BB5EEF; }
<div style="background-color:#BB5EEF">Inner text</div>
This div background color is #BB5EEF.
.myBorderColor { border: 1px solid #BB5EEF; }
<div style="border:3px solid #BB5EEF">Div</div>
This div border color is #BB5EEF.
.myOpacity80 { color: #BB5EEF; opacity: 0.8; }
<p style="color:#BB5EEF;opacity:0.8;">80%</p>
Text with #BB5EEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB5EEF;}
<p style="text-shadow: 3px 3px 1px #BB5EEF">Text here.</p>
This text has shadow with #BB5EEF color.
.textShadow {text-shadow: 3px 3px 1px #BB5EEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB5EEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB5EEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB5EEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB5EEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB5EEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB5EEF; -webkit-box-shadow: 1px 1px 3px 2px #BB5EEF; box-shadow: 1px 1px 3px 2px #BB5EEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB5EEF; -webkit-box-shadow: 1px 1px 3px 2px #BB5EEF; box-shadow:1px 1px 3px 2px #BB5EEF;">
Div content here</div>
This text has color #BB5EEF on black background.
This text has color #BB5EEF on white background.
This text has black color on #BB5EEF background.
This text has white color on #BB5EEF background.