HEX: #9932CC
RGB: (153,50,204)
Color name is DarkOrchid. #9932CC contains mainly red and blue colors. Web safe color of #9932CC is #9933CC (or #93C).
#9932CC color RGB value is (153,50,204).
RGB: (153,50,204) (60%,20%,80%)
R 153 of 255 = 60%
G 50 of 255 = 20%
B 204 of 255 = 80%
R + G + B ~ 53%. #9932CC is middle color (not dark and not light).
R + G + B =
153 + 50 + 204 = 407 (100%)
R 153 of 407 ~ 37.59%
G 50 of 407 ~ 12.29%
B 204 of 407 ~ 50.12%
#9932CC color CMYK value is (25,75,0,20).
CMYK: (25,75,0,20) C25M75Y0K20 (25%,75%,0%,20%) (0.25/0.75/0.00/0.20)
99 | 32 | CC | |
---|---|---|---|
RGB | 153 | 50 | 204 |
HSL | 280° | 60.63% | 49.80% |
HSB/HSV | 280° | 75.49% | 80.00% |
CMYK | 25.00% | 75.49% | 0.00% |
20.00% |
HEX | 99 | 32 | CC |
Decimal | 153 | 50 | 204 |
Binary | 10011001 | 110010 | 11001100 |
Octal | 231 | 62 | 314 |
Examples of css and html codes for elements with #9932CC color. Also use rgb(153,50,204) instead hex code.
.myTextColor { color: #9932CC; }
<p style="color:#9932CC">This sample text font color is #9932CC.</p>
This text font color is #9932CC.
.myBgColor { background-color: #9932CC; }
<div style="background-color:#9932CC">Inner text</div>
This div background color is #9932CC.
.myBorderColor { border: 1px solid #9932CC; }
<div style="border:3px solid #9932CC">Div</div>
This div border color is #9932CC.
.myOpacity80 { color: #9932CC; opacity: 0.8; }
<p style="color:#9932CC;opacity:0.8;">80%</p>
Text with #9932CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9932CC;}
<p style="text-shadow: 3px 3px 1px #9932CC">Text here.</p>
This text has shadow with #9932CC color.
.textShadow {text-shadow: 3px 3px 1px #9932CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9932CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #9932CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9932CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9932CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #9932CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9932CC; -webkit-box-shadow: 1px 1px 3px 2px #9932CC; box-shadow: 1px 1px 3px 2px #9932CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9932CC; -webkit-box-shadow: 1px 1px 3px 2px #9932CC; box-shadow:1px 1px 3px 2px #9932CC;">
Div content here</div>
This text has color #9932CC on black background.
This text has color #9932CC on white background.
This text has black color on #9932CC background.
This text has white color on #9932CC background.