HEX: #C686FF
RGB: (198,134,255)
#C686FF contains mainly red and blue colors. Web safe color of #C686FF is #CC99FF (or #C9F).
#C686FF color RGB value is (198,134,255).
RGB: (198,134,255) (78%,53%,100%)
R 198 of 255 = 78%
G 134 of 255 = 53%
B 255 of 255 = 100%
R + G + B ~ 77%. #C686FF is quite light color.
R + G + B =
198 + 134 + 255 = 587 (100%)
R 198 of 587 ~ 33.73%
G 134 of 587 ~ 22.83%
B 255 of 587 ~ 43.44%
#C686FF color CMYK value is (22,47,0,0).
CMYK: (22,47,0,0) C22M47Y0K0 (22%,47%,0%,0%) (0.22/0.47/0.00/0.00)
C6 | 86 | FF | |
---|---|---|---|
RGB | 198 | 134 | 255 |
HSL | 272° | 100.00% | 76.27% |
HSB/HSV | 272° | 47.45% | 100.00% |
CMYK | 22.35% | 47.45% | 0.00% |
0.00% |
HEX | C6 | 86 | FF |
Decimal | 198 | 134 | 255 |
Binary | 11000110 | 10000110 | 11111111 |
Octal | 306 | 206 | 377 |
Examples of css and html codes for elements with #C686FF color. Also use rgb(198,134,255) instead hex code.
.myTextColor { color: #C686FF; }
<p style="color:#C686FF">This sample text font color is #C686FF.</p>
This text font color is #C686FF.
.myBgColor { background-color: #C686FF; }
<div style="background-color:#C686FF">Inner text</div>
This div background color is #C686FF.
.myBorderColor { border: 1px solid #C686FF; }
<div style="border:3px solid #C686FF">Div</div>
This div border color is #C686FF.
.myOpacity80 { color: #C686FF; opacity: 0.8; }
<p style="color:#C686FF;opacity:0.8;">80%</p>
Text with #C686FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C686FF;}
<p style="text-shadow: 3px 3px 1px #C686FF">Text here.</p>
This text has shadow with #C686FF color.
.textShadow {text-shadow: 3px 3px 1px #C686FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C686FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C686FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C686FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C686FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C686FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C686FF; -webkit-box-shadow: 1px 1px 3px 2px #C686FF; box-shadow: 1px 1px 3px 2px #C686FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C686FF; -webkit-box-shadow: 1px 1px 3px 2px #C686FF; box-shadow:1px 1px 3px 2px #C686FF;">
Div content here</div>
This text has color #C686FF on black background.
This text has color #C686FF on white background.
This text has black color on #C686FF background.
This text has white color on #C686FF background.