HEX: #83419D
RGB: (131,65,157)
#83419D contains mainly red and blue colors. Web safe color of #83419D is #993399 (or #939).
#83419D color RGB value is (131,65,157).
RGB: (131,65,157) (51%,25%,62%)
R 131 of 255 = 51%
G 65 of 255 = 25%
B 157 of 255 = 62%
R + G + B ~ 46%. #83419D is middle color (not dark and not light).
R + G + B =
131 + 65 + 157 = 353 (100%)
R 131 of 353 ~ 37.11%
G 65 of 353 ~ 18.41%
B 157 of 353 ~ 44.48%
#83419D color CMYK value is (17,59,0,38).
CMYK: (17,59,0,38) C17M59Y0K38 (17%,59%,0%,38%) (0.17/0.59/0.00/0.38)
83 | 41 | 9D | |
---|---|---|---|
RGB | 131 | 65 | 157 |
HSL | 283° | 41.44% | 43.53% |
HSB/HSV | 283° | 58.60% | 61.57% |
CMYK | 16.56% | 58.60% | 0.00% |
38.43% |
HEX | 83 | 41 | 9D |
Decimal | 131 | 65 | 157 |
Binary | 10000011 | 1000001 | 10011101 |
Octal | 203 | 101 | 235 |
Examples of css and html codes for elements with #83419D color. Also use rgb(131,65,157) instead hex code.
.myTextColor { color: #83419D; }
<p style="color:#83419D">This sample text font color is #83419D.</p>
This text font color is #83419D.
.myBgColor { background-color: #83419D; }
<div style="background-color:#83419D">Inner text</div>
This div background color is #83419D.
.myBorderColor { border: 1px solid #83419D; }
<div style="border:3px solid #83419D">Div</div>
This div border color is #83419D.
.myOpacity80 { color: #83419D; opacity: 0.8; }
<p style="color:#83419D;opacity:0.8;">80%</p>
Text with #83419D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #83419D;}
<p style="text-shadow: 3px 3px 1px #83419D">Text here.</p>
This text has shadow with #83419D color.
.textShadow {text-shadow: 3px 3px 1px #83419D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #83419D, 5px 5px 20px red">Text here.</p>
This text has shadow with #83419D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#83419D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#83419D, Direction=45, Strength=4)">Text</p>
This text has shadow with #83419D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #83419D; -webkit-box-shadow: 1px 1px 3px 2px #83419D; box-shadow: 1px 1px 3px 2px #83419D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #83419D; -webkit-box-shadow: 1px 1px 3px 2px #83419D; box-shadow:1px 1px 3px 2px #83419D;">
Div content here</div>
This text has color #83419D on black background.
This text has color #83419D on white background.
This text has black color on #83419D background.
This text has white color on #83419D background.