HEX: #837CCE
RGB: (131,124,206)
#837CCE contains mainly blue color. Web safe color of #837CCE is #9966CC (or #96C).
#837CCE color RGB value is (131,124,206).
RGB: (131,124,206) (51%,49%,81%)
R 131 of 255 = 51%
G 124 of 255 = 49%
B 206 of 255 = 81%
R + G + B ~ 60%. #837CCE is middle color (not dark and not light).
R + G + B =
131 + 124 + 206 = 461 (100%)
R 131 of 461 ~ 28.42%
G 124 of 461 ~ 26.9%
B 206 of 461 ~ 44.69%
#837CCE color CMYK value is (36,40,0,19).
CMYK: (36,40,0,19) C36M40Y0K19 (36%,40%,0%,19%) (0.36/0.40/0.00/0.19)
83 | 7C | CE | |
---|---|---|---|
RGB | 131 | 124 | 206 |
HSL | 245° | 45.56% | 64.71% |
HSB/HSV | 245° | 39.81% | 80.78% |
CMYK | 36.41% | 39.81% | 0.00% |
19.22% |
HEX | 83 | 7C | CE |
Decimal | 131 | 124 | 206 |
Binary | 10000011 | 1111100 | 11001110 |
Octal | 203 | 174 | 316 |
Examples of css and html codes for elements with #837CCE color. Also use rgb(131,124,206) instead hex code.
.myTextColor { color: #837CCE; }
<p style="color:#837CCE">This sample text font color is #837CCE.</p>
This text font color is #837CCE.
.myBgColor { background-color: #837CCE; }
<div style="background-color:#837CCE">Inner text</div>
This div background color is #837CCE.
.myBorderColor { border: 1px solid #837CCE; }
<div style="border:3px solid #837CCE">Div</div>
This div border color is #837CCE.
.myOpacity80 { color: #837CCE; opacity: 0.8; }
<p style="color:#837CCE;opacity:0.8;">80%</p>
Text with #837CCE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #837CCE;}
<p style="text-shadow: 3px 3px 1px #837CCE">Text here.</p>
This text has shadow with #837CCE color.
.textShadow {text-shadow: 3px 3px 1px #837CCE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #837CCE, 5px 5px 20px red">Text here.</p>
This text has shadow with #837CCE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#837CCE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#837CCE, Direction=45, Strength=4)">Text</p>
This text has shadow with #837CCE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #837CCE; -webkit-box-shadow: 1px 1px 3px 2px #837CCE; box-shadow: 1px 1px 3px 2px #837CCE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #837CCE; -webkit-box-shadow: 1px 1px 3px 2px #837CCE; box-shadow:1px 1px 3px 2px #837CCE;">
Div content here</div>
This text has color #837CCE on black background.
This text has color #837CCE on white background.
This text has black color on #837CCE background.
This text has white color on #837CCE background.