HEX: #C697EC
RGB: (198,151,236)
#C697EC contains mainly red and blue colors. Web safe color of #C697EC is #CC99FF (or #C9F).
#C697EC color RGB value is (198,151,236).
RGB: (198,151,236) (78%,59%,93%)
R 198 of 255 = 78%
G 151 of 255 = 59%
B 236 of 255 = 93%
R + G + B ~ 77%. #C697EC is quite light color.
R + G + B =
198 + 151 + 236 = 585 (100%)
R 198 of 585 ~ 33.85%
G 151 of 585 ~ 25.81%
B 236 of 585 ~ 40.34%
#C697EC color CMYK value is (16,36,0,7).
CMYK: (16,36,0,7) C16M36Y0K7 (16%,36%,0%,7%) (0.16/0.36/0.00/0.07)
C6 | 97 | EC | |
---|---|---|---|
RGB | 198 | 151 | 236 |
HSL | 273° | 69.11% | 75.88% |
HSB/HSV | 273° | 36.02% | 92.55% |
CMYK | 16.10% | 36.02% | 0.00% |
7.45% |
HEX | C6 | 97 | EC |
Decimal | 198 | 151 | 236 |
Binary | 11000110 | 10010111 | 11101100 |
Octal | 306 | 227 | 354 |
Examples of css and html codes for elements with #C697EC color. Also use rgb(198,151,236) instead hex code.
.myTextColor { color: #C697EC; }
<p style="color:#C697EC">This sample text font color is #C697EC.</p>
This text font color is #C697EC.
.myBgColor { background-color: #C697EC; }
<div style="background-color:#C697EC">Inner text</div>
This div background color is #C697EC.
.myBorderColor { border: 1px solid #C697EC; }
<div style="border:3px solid #C697EC">Div</div>
This div border color is #C697EC.
.myOpacity80 { color: #C697EC; opacity: 0.8; }
<p style="color:#C697EC;opacity:0.8;">80%</p>
Text with #C697EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C697EC;}
<p style="text-shadow: 3px 3px 1px #C697EC">Text here.</p>
This text has shadow with #C697EC color.
.textShadow {text-shadow: 3px 3px 1px #C697EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C697EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C697EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C697EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C697EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C697EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C697EC; -webkit-box-shadow: 1px 1px 3px 2px #C697EC; box-shadow: 1px 1px 3px 2px #C697EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C697EC; -webkit-box-shadow: 1px 1px 3px 2px #C697EC; box-shadow:1px 1px 3px 2px #C697EC;">
Div content here</div>
This text has color #C697EC on black background.
This text has color #C697EC on white background.
This text has black color on #C697EC background.
This text has white color on #C697EC background.