HEX: #837ABB
RGB: (131,122,187)
#837ABB contains mainly red and blue colors. Web safe color of #837ABB is #9966CC (or #96C).
#837ABB color RGB value is (131,122,187).
RGB: (131,122,187) (51%,48%,73%)
R 131 of 255 = 51%
G 122 of 255 = 48%
B 187 of 255 = 73%
R + G + B ~ 57%. #837ABB is middle color (not dark and not light).
R + G + B =
131 + 122 + 187 = 440 (100%)
R 131 of 440 ~ 29.77%
G 122 of 440 ~ 27.73%
B 187 of 440 ~ 42.5%
#837ABB color CMYK value is (30,35,0,27).
CMYK: (30,35,0,27) C30M35Y0K27 (30%,35%,0%,27%) (0.30/0.35/0.00/0.27)
83 | 7A | BB | |
---|---|---|---|
RGB | 131 | 122 | 187 |
HSL | 248° | 32.34% | 60.59% |
HSB/HSV | 248° | 34.76% | 73.33% |
CMYK | 29.95% | 34.76% | 0.00% |
26.67% |
HEX | 83 | 7A | BB |
Decimal | 131 | 122 | 187 |
Binary | 10000011 | 1111010 | 10111011 |
Octal | 203 | 172 | 273 |
Examples of css and html codes for elements with #837ABB color. Also use rgb(131,122,187) instead hex code.
.myTextColor { color: #837ABB; }
<p style="color:#837ABB">This sample text font color is #837ABB.</p>
This text font color is #837ABB.
.myBgColor { background-color: #837ABB; }
<div style="background-color:#837ABB">Inner text</div>
This div background color is #837ABB.
.myBorderColor { border: 1px solid #837ABB; }
<div style="border:3px solid #837ABB">Div</div>
This div border color is #837ABB.
.myOpacity80 { color: #837ABB; opacity: 0.8; }
<p style="color:#837ABB;opacity:0.8;">80%</p>
Text with #837ABB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #837ABB;}
<p style="text-shadow: 3px 3px 1px #837ABB">Text here.</p>
This text has shadow with #837ABB color.
.textShadow {text-shadow: 3px 3px 1px #837ABB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #837ABB, 5px 5px 20px red">Text here.</p>
This text has shadow with #837ABB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#837ABB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#837ABB, Direction=45, Strength=4)">Text</p>
This text has shadow with #837ABB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #837ABB; -webkit-box-shadow: 1px 1px 3px 2px #837ABB; box-shadow: 1px 1px 3px 2px #837ABB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #837ABB; -webkit-box-shadow: 1px 1px 3px 2px #837ABB; box-shadow:1px 1px 3px 2px #837ABB;">
Div content here</div>
This text has color #837ABB on black background.
This text has color #837ABB on white background.
This text has black color on #837ABB background.
This text has white color on #837ABB background.