HEX: #B09ADE
RGB: (176,154,222)
#B09ADE contains mainly red and blue colors. Web safe color of #B09ADE is #9999CC (or #99C).
#B09ADE color RGB value is (176,154,222).
RGB: (176,154,222) (69%,60%,87%)
R 176 of 255 = 69%
G 154 of 255 = 60%
B 222 of 255 = 87%
R + G + B ~ 72%. #B09ADE is quite light color.
R + G + B =
176 + 154 + 222 = 552 (100%)
R 176 of 552 ~ 31.88%
G 154 of 552 ~ 27.9%
B 222 of 552 ~ 40.22%
#B09ADE color CMYK value is (21,31,0,13).
CMYK: (21,31,0,13) C21M31Y0K13 (21%,31%,0%,13%) (0.21/0.31/0.00/0.13)
B0 | 9A | DE | |
---|---|---|---|
RGB | 176 | 154 | 222 |
HSL | 259° | 50.75% | 73.73% |
HSB/HSV | 259° | 30.63% | 87.06% |
CMYK | 20.72% | 30.63% | 0.00% |
12.94% |
HEX | B0 | 9A | DE |
Decimal | 176 | 154 | 222 |
Binary | 10110000 | 10011010 | 11011110 |
Octal | 260 | 232 | 336 |
Examples of css and html codes for elements with #B09ADE color. Also use rgb(176,154,222) instead hex code.
.myTextColor { color: #B09ADE; }
<p style="color:#B09ADE">This sample text font color is #B09ADE.</p>
This text font color is #B09ADE.
.myBgColor { background-color: #B09ADE; }
<div style="background-color:#B09ADE">Inner text</div>
This div background color is #B09ADE.
.myBorderColor { border: 1px solid #B09ADE; }
<div style="border:3px solid #B09ADE">Div</div>
This div border color is #B09ADE.
.myOpacity80 { color: #B09ADE; opacity: 0.8; }
<p style="color:#B09ADE;opacity:0.8;">80%</p>
Text with #B09ADE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B09ADE;}
<p style="text-shadow: 3px 3px 1px #B09ADE">Text here.</p>
This text has shadow with #B09ADE color.
.textShadow {text-shadow: 3px 3px 1px #B09ADE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B09ADE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B09ADE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B09ADE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B09ADE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B09ADE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B09ADE; -webkit-box-shadow: 1px 1px 3px 2px #B09ADE; box-shadow: 1px 1px 3px 2px #B09ADE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B09ADE; -webkit-box-shadow: 1px 1px 3px 2px #B09ADE; box-shadow:1px 1px 3px 2px #B09ADE;">
Div content here</div>
This text has color #B09ADE on black background.
This text has color #B09ADE on white background.
This text has black color on #B09ADE background.
This text has white color on #B09ADE background.