HEX: #BB6DFD
RGB: (187,109,253)
#BB6DFD contains mainly blue color. Web safe color of #BB6DFD is #CC66FF (or #C6F).
#BB6DFD color RGB value is (187,109,253).
RGB: (187,109,253) (73%,43%,99%)
R 187 of 255 = 73%
G 109 of 255 = 43%
B 253 of 255 = 99%
R + G + B ~ 72%. #BB6DFD is quite light color.
R + G + B =
187 + 109 + 253 = 549 (100%)
R 187 of 549 ~ 34.06%
G 109 of 549 ~ 19.85%
B 253 of 549 ~ 46.08%
#BB6DFD color CMYK value is (26,57,0,1).
CMYK: (26,57,0,1) C26M57Y0K1 (26%,57%,0%,1%) (0.26/0.57/0.00/0.01)
BB | 6D | FD | |
---|---|---|---|
RGB | 187 | 109 | 253 |
HSL | 273° | 97.30% | 70.98% |
HSB/HSV | 273° | 56.92% | 99.22% |
CMYK | 26.09% | 56.92% | 0.00% |
0.78% |
HEX | BB | 6D | FD |
Decimal | 187 | 109 | 253 |
Binary | 10111011 | 1101101 | 11111101 |
Octal | 273 | 155 | 375 |
Examples of css and html codes for elements with #BB6DFD color. Also use rgb(187,109,253) instead hex code.
.myTextColor { color: #BB6DFD; }
<p style="color:#BB6DFD">This sample text font color is #BB6DFD.</p>
This text font color is #BB6DFD.
.myBgColor { background-color: #BB6DFD; }
<div style="background-color:#BB6DFD">Inner text</div>
This div background color is #BB6DFD.
.myBorderColor { border: 1px solid #BB6DFD; }
<div style="border:3px solid #BB6DFD">Div</div>
This div border color is #BB6DFD.
.myOpacity80 { color: #BB6DFD; opacity: 0.8; }
<p style="color:#BB6DFD;opacity:0.8;">80%</p>
Text with #BB6DFD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB6DFD;}
<p style="text-shadow: 3px 3px 1px #BB6DFD">Text here.</p>
This text has shadow with #BB6DFD color.
.textShadow {text-shadow: 3px 3px 1px #BB6DFD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB6DFD, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB6DFD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB6DFD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB6DFD, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB6DFD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB6DFD; -webkit-box-shadow: 1px 1px 3px 2px #BB6DFD; box-shadow: 1px 1px 3px 2px #BB6DFD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB6DFD; -webkit-box-shadow: 1px 1px 3px 2px #BB6DFD; box-shadow:1px 1px 3px 2px #BB6DFD;">
Div content here</div>
This text has color #BB6DFD on black background.
This text has color #BB6DFD on white background.
This text has black color on #BB6DFD background.
This text has white color on #BB6DFD background.