HEX: #884BB6
RGB: (136,75,182)
#884BB6 contains mainly red and blue colors. Web safe color of #884BB6 is #9933CC (or #93C).
#884BB6 color RGB value is (136,75,182).
RGB: (136,75,182) (53%,29%,71%)
R 136 of 255 = 53%
G 75 of 255 = 29%
B 182 of 255 = 71%
R + G + B ~ 51%. #884BB6 is middle color (not dark and not light).
R + G + B =
136 + 75 + 182 = 393 (100%)
R 136 of 393 ~ 34.61%
G 75 of 393 ~ 19.08%
B 182 of 393 ~ 46.31%
#884BB6 color CMYK value is (25,59,0,29).
CMYK: (25,59,0,29) C25M59Y0K29 (25%,59%,0%,29%) (0.25/0.59/0.00/0.29)
88 | 4B | B6 | |
---|---|---|---|
RGB | 136 | 75 | 182 |
HSL | 274° | 42.29% | 50.39% |
HSB/HSV | 274° | 58.79% | 71.37% |
CMYK | 25.27% | 58.79% | 0.00% |
28.63% |
HEX | 88 | 4B | B6 |
Decimal | 136 | 75 | 182 |
Binary | 10001000 | 1001011 | 10110110 |
Octal | 210 | 113 | 266 |
Examples of css and html codes for elements with #884BB6 color. Also use rgb(136,75,182) instead hex code.
.myTextColor { color: #884BB6; }
<p style="color:#884BB6">This sample text font color is #884BB6.</p>
This text font color is #884BB6.
.myBgColor { background-color: #884BB6; }
<div style="background-color:#884BB6">Inner text</div>
This div background color is #884BB6.
.myBorderColor { border: 1px solid #884BB6; }
<div style="border:3px solid #884BB6">Div</div>
This div border color is #884BB6.
.myOpacity80 { color: #884BB6; opacity: 0.8; }
<p style="color:#884BB6;opacity:0.8;">80%</p>
Text with #884BB6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #884BB6;}
<p style="text-shadow: 3px 3px 1px #884BB6">Text here.</p>
This text has shadow with #884BB6 color.
.textShadow {text-shadow: 3px 3px 1px #884BB6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #884BB6, 5px 5px 20px red">Text here.</p>
This text has shadow with #884BB6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#884BB6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#884BB6, Direction=45, Strength=4)">Text</p>
This text has shadow with #884BB6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #884BB6; -webkit-box-shadow: 1px 1px 3px 2px #884BB6; box-shadow: 1px 1px 3px 2px #884BB6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #884BB6; -webkit-box-shadow: 1px 1px 3px 2px #884BB6; box-shadow:1px 1px 3px 2px #884BB6;">
Div content here</div>
This text has color #884BB6 on black background.
This text has color #884BB6 on white background.
This text has black color on #884BB6 background.
This text has white color on #884BB6 background.