HEX: #B188EB
RGB: (177,136,235)
#B188EB contains mainly red and blue colors. Web safe color of #B188EB is #9999FF (or #99F).
#B188EB color RGB value is (177,136,235).
RGB: (177,136,235) (69%,53%,92%)
R 177 of 255 = 69%
G 136 of 255 = 53%
B 235 of 255 = 92%
R + G + B ~ 71%. #B188EB is quite light color.
R + G + B =
177 + 136 + 235 = 548 (100%)
R 177 of 548 ~ 32.3%
G 136 of 548 ~ 24.82%
B 235 of 548 ~ 42.88%
#B188EB color CMYK value is (25,42,0,8).
CMYK: (25,42,0,8) C25M42Y0K8 (25%,42%,0%,8%) (0.25/0.42/0.00/0.08)
B1 | 88 | EB | |
---|---|---|---|
RGB | 177 | 136 | 235 |
HSL | 265° | 71.22% | 72.75% |
HSB/HSV | 265° | 42.13% | 92.16% |
CMYK | 24.68% | 42.13% | 0.00% |
7.84% |
HEX | B1 | 88 | EB |
Decimal | 177 | 136 | 235 |
Binary | 10110001 | 10001000 | 11101011 |
Octal | 261 | 210 | 353 |
Examples of css and html codes for elements with #B188EB color. Also use rgb(177,136,235) instead hex code.
.myTextColor { color: #B188EB; }
<p style="color:#B188EB">This sample text font color is #B188EB.</p>
This text font color is #B188EB.
.myBgColor { background-color: #B188EB; }
<div style="background-color:#B188EB">Inner text</div>
This div background color is #B188EB.
.myBorderColor { border: 1px solid #B188EB; }
<div style="border:3px solid #B188EB">Div</div>
This div border color is #B188EB.
.myOpacity80 { color: #B188EB; opacity: 0.8; }
<p style="color:#B188EB;opacity:0.8;">80%</p>
Text with #B188EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B188EB;}
<p style="text-shadow: 3px 3px 1px #B188EB">Text here.</p>
This text has shadow with #B188EB color.
.textShadow {text-shadow: 3px 3px 1px #B188EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B188EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B188EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B188EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B188EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B188EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B188EB; -webkit-box-shadow: 1px 1px 3px 2px #B188EB; box-shadow: 1px 1px 3px 2px #B188EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B188EB; -webkit-box-shadow: 1px 1px 3px 2px #B188EB; box-shadow:1px 1px 3px 2px #B188EB;">
Div content here</div>
This text has color #B188EB on black background.
This text has color #B188EB on white background.
This text has black color on #B188EB background.
This text has white color on #B188EB background.