HEX: #883C7D
RGB: (136,60,125)
#883C7D contains mainly red and blue colors. Web safe color of #883C7D is #993366 (or #936).
#883C7D color RGB value is (136,60,125).
RGB: (136,60,125) (53%,24%,49%)
R 136 of 255 = 53%
G 60 of 255 = 24%
B 125 of 255 = 49%
R + G + B ~ 42%. #883C7D is middle color (not dark and not light).
R + G + B =
136 + 60 + 125 = 321 (100%)
R 136 of 321 ~ 42.37%
G 60 of 321 ~ 18.69%
B 125 of 321 ~ 38.94%
#883C7D color CMYK value is (0,56,8,47).
CMYK: (0,56,8,47) C0M56Y8K47 (0%,56%,8%,47%) (0.00/0.56/0.08/0.47)
88 | 3C | 7D | |
---|---|---|---|
RGB | 136 | 60 | 125 |
HSL | 309° | 38.78% | 38.43% |
HSB/HSV | 309° | 55.88% | 53.33% |
CMYK | 0.00% | 55.88% | 8.09% |
46.67% |
HEX | 88 | 3C | 7D |
Decimal | 136 | 60 | 125 |
Binary | 10001000 | 111100 | 1111101 |
Octal | 210 | 74 | 175 |
Examples of css and html codes for elements with #883C7D color. Also use rgb(136,60,125) instead hex code.
.myTextColor { color: #883C7D; }
<p style="color:#883C7D">This sample text font color is #883C7D.</p>
This text font color is #883C7D.
.myBgColor { background-color: #883C7D; }
<div style="background-color:#883C7D">Inner text</div>
This div background color is #883C7D.
.myBorderColor { border: 1px solid #883C7D; }
<div style="border:3px solid #883C7D">Div</div>
This div border color is #883C7D.
.myOpacity80 { color: #883C7D; opacity: 0.8; }
<p style="color:#883C7D;opacity:0.8;">80%</p>
Text with #883C7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #883C7D;}
<p style="text-shadow: 3px 3px 1px #883C7D">Text here.</p>
This text has shadow with #883C7D color.
.textShadow {text-shadow: 3px 3px 1px #883C7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #883C7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #883C7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#883C7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#883C7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #883C7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #883C7D; -webkit-box-shadow: 1px 1px 3px 2px #883C7D; box-shadow: 1px 1px 3px 2px #883C7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #883C7D; -webkit-box-shadow: 1px 1px 3px 2px #883C7D; box-shadow:1px 1px 3px 2px #883C7D;">
Div content here</div>
This text has color #883C7D on black background.
This text has color #883C7D on white background.
This text has black color on #883C7D background.
This text has white color on #883C7D background.