HEX: #C959ED
RGB: (201,89,237)
#C959ED contains mainly red and blue colors. Web safe color of #C959ED is #CC66FF (or #C6F).
#C959ED color RGB value is (201,89,237).
RGB: (201,89,237) (79%,35%,93%)
R 201 of 255 = 79%
G 89 of 255 = 35%
B 237 of 255 = 93%
R + G + B ~ 69%. #C959ED is quite light color.
R + G + B =
201 + 89 + 237 = 527 (100%)
R 201 of 527 ~ 38.14%
G 89 of 527 ~ 16.89%
B 237 of 527 ~ 44.97%
#C959ED color CMYK value is (15,62,0,7).
CMYK: (15,62,0,7) C15M62Y0K7 (15%,62%,0%,7%) (0.15/0.62/0.00/0.07)
C9 | 59 | ED | |
---|---|---|---|
RGB | 201 | 89 | 237 |
HSL | 285° | 80.43% | 63.92% |
HSB/HSV | 285° | 62.45% | 92.94% |
CMYK | 15.19% | 62.45% | 0.00% |
7.06% |
HEX | C9 | 59 | ED |
Decimal | 201 | 89 | 237 |
Binary | 11001001 | 1011001 | 11101101 |
Octal | 311 | 131 | 355 |
Examples of css and html codes for elements with #C959ED color. Also use rgb(201,89,237) instead hex code.
.myTextColor { color: #C959ED; }
<p style="color:#C959ED">This sample text font color is #C959ED.</p>
This text font color is #C959ED.
.myBgColor { background-color: #C959ED; }
<div style="background-color:#C959ED">Inner text</div>
This div background color is #C959ED.
.myBorderColor { border: 1px solid #C959ED; }
<div style="border:3px solid #C959ED">Div</div>
This div border color is #C959ED.
.myOpacity80 { color: #C959ED; opacity: 0.8; }
<p style="color:#C959ED;opacity:0.8;">80%</p>
Text with #C959ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C959ED;}
<p style="text-shadow: 3px 3px 1px #C959ED">Text here.</p>
This text has shadow with #C959ED color.
.textShadow {text-shadow: 3px 3px 1px #C959ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C959ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #C959ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C959ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C959ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #C959ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C959ED; -webkit-box-shadow: 1px 1px 3px 2px #C959ED; box-shadow: 1px 1px 3px 2px #C959ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C959ED; -webkit-box-shadow: 1px 1px 3px 2px #C959ED; box-shadow:1px 1px 3px 2px #C959ED;">
Div content here</div>
This text has color #C959ED on black background.
This text has color #C959ED on white background.
This text has black color on #C959ED background.
This text has white color on #C959ED background.