HEX: #8C63DA
RGB: (140,99,218)
#8C63DA contains mainly blue color. Web safe color of #8C63DA is #9966CC (or #96C).
#8C63DA color RGB value is (140,99,218).
RGB: (140,99,218) (55%,39%,85%)
R 140 of 255 = 55%
G 99 of 255 = 39%
B 218 of 255 = 85%
R + G + B ~ 60%. #8C63DA is middle color (not dark and not light).
R + G + B =
140 + 99 + 218 = 457 (100%)
R 140 of 457 ~ 30.63%
G 99 of 457 ~ 21.66%
B 218 of 457 ~ 47.7%
#8C63DA color CMYK value is (36,55,0,15).
CMYK: (36,55,0,15) C36M55Y0K15 (36%,55%,0%,15%) (0.36/0.55/0.00/0.15)
8C | 63 | DA | |
---|---|---|---|
RGB | 140 | 99 | 218 |
HSL | 261° | 61.66% | 62.16% |
HSB/HSV | 261° | 54.59% | 85.49% |
CMYK | 35.78% | 54.59% | 0.00% |
14.51% |
HEX | 8C | 63 | DA |
Decimal | 140 | 99 | 218 |
Binary | 10001100 | 1100011 | 11011010 |
Octal | 214 | 143 | 332 |
Examples of css and html codes for elements with #8C63DA color. Also use rgb(140,99,218) instead hex code.
.myTextColor { color: #8C63DA; }
<p style="color:#8C63DA">This sample text font color is #8C63DA.</p>
This text font color is #8C63DA.
.myBgColor { background-color: #8C63DA; }
<div style="background-color:#8C63DA">Inner text</div>
This div background color is #8C63DA.
.myBorderColor { border: 1px solid #8C63DA; }
<div style="border:3px solid #8C63DA">Div</div>
This div border color is #8C63DA.
.myOpacity80 { color: #8C63DA; opacity: 0.8; }
<p style="color:#8C63DA;opacity:0.8;">80%</p>
Text with #8C63DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8C63DA;}
<p style="text-shadow: 3px 3px 1px #8C63DA">Text here.</p>
This text has shadow with #8C63DA color.
.textShadow {text-shadow: 3px 3px 1px #8C63DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8C63DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #8C63DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8C63DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8C63DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #8C63DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8C63DA; -webkit-box-shadow: 1px 1px 3px 2px #8C63DA; box-shadow: 1px 1px 3px 2px #8C63DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8C63DA; -webkit-box-shadow: 1px 1px 3px 2px #8C63DA; box-shadow:1px 1px 3px 2px #8C63DA;">
Div content here</div>
This text has color #8C63DA on black background.
This text has color #8C63DA on white background.
This text has black color on #8C63DA background.
This text has white color on #8C63DA background.