HEX: #B59EDE
RGB: (181,158,222)
#B59EDE contains mainly red and blue colors. Web safe color of #B59EDE is #CC99CC (or #C9C).
#B59EDE color RGB value is (181,158,222).
RGB: (181,158,222) (71%,62%,87%)
R 181 of 255 = 71%
G 158 of 255 = 62%
B 222 of 255 = 87%
R + G + B ~ 73%. #B59EDE is quite light color.
R + G + B =
181 + 158 + 222 = 561 (100%)
R 181 of 561 ~ 32.26%
G 158 of 561 ~ 28.16%
B 222 of 561 ~ 39.57%
#B59EDE color CMYK value is (18,29,0,13).
CMYK: (18,29,0,13) C18M29Y0K13 (18%,29%,0%,13%) (0.18/0.29/0.00/0.13)
B5 | 9E | DE | |
---|---|---|---|
RGB | 181 | 158 | 222 |
HSL | 262° | 49.23% | 74.51% |
HSB/HSV | 262° | 28.83% | 87.06% |
CMYK | 18.47% | 28.83% | 0.00% |
12.94% |
HEX | B5 | 9E | DE |
Decimal | 181 | 158 | 222 |
Binary | 10110101 | 10011110 | 11011110 |
Octal | 265 | 236 | 336 |
Examples of css and html codes for elements with #B59EDE color. Also use rgb(181,158,222) instead hex code.
.myTextColor { color: #B59EDE; }
<p style="color:#B59EDE">This sample text font color is #B59EDE.</p>
This text font color is #B59EDE.
.myBgColor { background-color: #B59EDE; }
<div style="background-color:#B59EDE">Inner text</div>
This div background color is #B59EDE.
.myBorderColor { border: 1px solid #B59EDE; }
<div style="border:3px solid #B59EDE">Div</div>
This div border color is #B59EDE.
.myOpacity80 { color: #B59EDE; opacity: 0.8; }
<p style="color:#B59EDE;opacity:0.8;">80%</p>
Text with #B59EDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B59EDE;}
<p style="text-shadow: 3px 3px 1px #B59EDE">Text here.</p>
This text has shadow with #B59EDE color.
.textShadow {text-shadow: 3px 3px 1px #B59EDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B59EDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B59EDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B59EDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B59EDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B59EDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B59EDE; -webkit-box-shadow: 1px 1px 3px 2px #B59EDE; box-shadow: 1px 1px 3px 2px #B59EDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B59EDE; -webkit-box-shadow: 1px 1px 3px 2px #B59EDE; box-shadow:1px 1px 3px 2px #B59EDE;">
Div content here</div>
This text has color #B59EDE on black background.
This text has color #B59EDE on white background.
This text has black color on #B59EDE background.
This text has white color on #B59EDE background.