HEX: #663399
RGB: (102,51,153)
#663399 contains mainly red and blue colors. #663399 color is web safe color. It maybe written shortly as #639.
#663399 color RGB value is (102,51,153).
RGB: (102,51,153) (40%,20%,60%)
R 102 of 255 = 40%
G 51 of 255 = 20%
B 153 of 255 = 60%
R + G + B ~ 40%. #663399 is middle color (not dark and not light).
R + G + B =
102 + 51 + 153 = 306 (100%)
R 102 of 306 ~ 33.33%
G 51 of 306 ~ 16.67%
B 153 of 306 ~ 50%
#663399 color CMYK value is (33,67,0,40).
CMYK: (33,67,0,40) C33M67Y0K40 (33%,67%,0%,40%) (0.33/0.67/0.00/0.40)
66 | 33 | 99 | |
---|---|---|---|
RGB | 102 | 51 | 153 |
HSL | 270° | 50.00% | 40.00% |
HSB/HSV | 270° | 66.67% | 60.00% |
CMYK | 33.33% | 66.67% | 0.00% |
40.00% |
HEX | 66 | 33 | 99 |
Decimal | 102 | 51 | 153 |
Binary | 1100110 | 110011 | 10011001 |
Octal | 146 | 63 | 231 |
Examples of css and html codes for elements with #663399 color. Also use rgb(102,51,153) instead hex code.
.myTextColor { color: #663399; }
<p style="color:#663399">This sample text font color is #663399.</p>
This text font color is #663399.
.myBgColor { background-color: #663399; }
<div style="background-color:#663399">Inner text</div>
This div background color is #663399.
.myBorderColor { border: 1px solid #663399; }
<div style="border:3px solid #663399">Div</div>
This div border color is #663399.
.myOpacity80 { color: #663399; opacity: 0.8; }
<p style="color:#663399;opacity:0.8;">80%</p>
Text with #663399 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #663399;}
<p style="text-shadow: 3px 3px 1px #663399">Text here.</p>
This text has shadow with #663399 color.
.textShadow {text-shadow: 3px 3px 1px #663399, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #663399, 5px 5px 20px red">Text here.</p>
This text has shadow with #663399 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#663399, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#663399, Direction=45, Strength=4)">Text</p>
This text has shadow with #663399 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #663399; -webkit-box-shadow: 1px 1px 3px 2px #663399; box-shadow: 1px 1px 3px 2px #663399; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #663399; -webkit-box-shadow: 1px 1px 3px 2px #663399; box-shadow:1px 1px 3px 2px #663399;">
Div content here</div>
This text has color #663399 on black background.
This text has color #663399 on white background.
This text has black color on #663399 background.
This text has white color on #663399 background.