HEX: #9676DA
RGB: (150,118,218)
#9676DA contains mainly blue color. Web safe color of #9676DA is #9966CC (or #96C).
#9676DA color RGB value is (150,118,218).
RGB: (150,118,218) (59%,46%,85%)
R 150 of 255 = 59%
G 118 of 255 = 46%
B 218 of 255 = 85%
R + G + B ~ 63%. #9676DA is quite light color.
R + G + B =
150 + 118 + 218 = 486 (100%)
R 150 of 486 ~ 30.86%
G 118 of 486 ~ 24.28%
B 218 of 486 ~ 44.86%
#9676DA color CMYK value is (31,46,0,15).
CMYK: (31,46,0,15) C31M46Y0K15 (31%,46%,0%,15%) (0.31/0.46/0.00/0.15)
96 | 76 | DA | |
---|---|---|---|
RGB | 150 | 118 | 218 |
HSL | 259° | 57.47% | 65.88% |
HSB/HSV | 259° | 45.87% | 85.49% |
CMYK | 31.19% | 45.87% | 0.00% |
14.51% |
HEX | 96 | 76 | DA |
Decimal | 150 | 118 | 218 |
Binary | 10010110 | 1110110 | 11011010 |
Octal | 226 | 166 | 332 |
Examples of css and html codes for elements with #9676DA color. Also use rgb(150,118,218) instead hex code.
.myTextColor { color: #9676DA; }
<p style="color:#9676DA">This sample text font color is #9676DA.</p>
This text font color is #9676DA.
.myBgColor { background-color: #9676DA; }
<div style="background-color:#9676DA">Inner text</div>
This div background color is #9676DA.
.myBorderColor { border: 1px solid #9676DA; }
<div style="border:3px solid #9676DA">Div</div>
This div border color is #9676DA.
.myOpacity80 { color: #9676DA; opacity: 0.8; }
<p style="color:#9676DA;opacity:0.8;">80%</p>
Text with #9676DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9676DA;}
<p style="text-shadow: 3px 3px 1px #9676DA">Text here.</p>
This text has shadow with #9676DA color.
.textShadow {text-shadow: 3px 3px 1px #9676DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9676DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #9676DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9676DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9676DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #9676DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9676DA; -webkit-box-shadow: 1px 1px 3px 2px #9676DA; box-shadow: 1px 1px 3px 2px #9676DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9676DA; -webkit-box-shadow: 1px 1px 3px 2px #9676DA; box-shadow:1px 1px 3px 2px #9676DA;">
Div content here</div>
This text has color #9676DA on black background.
This text has color #9676DA on white background.
This text has black color on #9676DA background.
This text has white color on #9676DA background.