HEX: #C69FDC
RGB: (198,159,220)
#C69FDC contains mainly red and blue colors. Web safe color of #C69FDC is #CC99CC (or #C9C).
#C69FDC color RGB value is (198,159,220).
RGB: (198,159,220) (78%,62%,86%)
R 198 of 255 = 78%
G 159 of 255 = 62%
B 220 of 255 = 86%
R + G + B ~ 75%. #C69FDC is quite light color.
R + G + B =
198 + 159 + 220 = 577 (100%)
R 198 of 577 ~ 34.32%
G 159 of 577 ~ 27.56%
B 220 of 577 ~ 38.13%
#C69FDC color CMYK value is (10,28,0,14).
CMYK: (10,28,0,14) C10M28Y0K14 (10%,28%,0%,14%) (0.10/0.28/0.00/0.14)
C6 | 9F | DC | |
---|---|---|---|
RGB | 198 | 159 | 220 |
HSL | 278° | 46.56% | 74.31% |
HSB/HSV | 278° | 27.73% | 86.27% |
CMYK | 10.00% | 27.73% | 0.00% |
13.73% |
HEX | C6 | 9F | DC |
Decimal | 198 | 159 | 220 |
Binary | 11000110 | 10011111 | 11011100 |
Octal | 306 | 237 | 334 |
Examples of css and html codes for elements with #C69FDC color. Also use rgb(198,159,220) instead hex code.
.myTextColor { color: #C69FDC; }
<p style="color:#C69FDC">This sample text font color is #C69FDC.</p>
This text font color is #C69FDC.
.myBgColor { background-color: #C69FDC; }
<div style="background-color:#C69FDC">Inner text</div>
This div background color is #C69FDC.
.myBorderColor { border: 1px solid #C69FDC; }
<div style="border:3px solid #C69FDC">Div</div>
This div border color is #C69FDC.
.myOpacity80 { color: #C69FDC; opacity: 0.8; }
<p style="color:#C69FDC;opacity:0.8;">80%</p>
Text with #C69FDC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C69FDC;}
<p style="text-shadow: 3px 3px 1px #C69FDC">Text here.</p>
This text has shadow with #C69FDC color.
.textShadow {text-shadow: 3px 3px 1px #C69FDC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C69FDC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C69FDC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C69FDC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C69FDC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C69FDC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C69FDC; -webkit-box-shadow: 1px 1px 3px 2px #C69FDC; box-shadow: 1px 1px 3px 2px #C69FDC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C69FDC; -webkit-box-shadow: 1px 1px 3px 2px #C69FDC; box-shadow:1px 1px 3px 2px #C69FDC;">
Div content here</div>
This text has color #C69FDC on black background.
This text has color #C69FDC on white background.
This text has black color on #C69FDC background.
This text has white color on #C69FDC background.