HEX: #C6A5DD
RGB: (198,165,221)
#C6A5DD contains red, green and blue colors in about the same proportion. #C6A5DD ‘ nin web güvenlik rengi #CC99CC (ya da #C9C) dir.
#C6A5DD color RGB value is (198,165,221).
RGB: (198,165,221) (78%,65%,87%)
R 198 of 255 = 78%
G 165 of 255 = 65%
B 221 of 255 = 87%
R + G + B ~ 77%. #C6A5DD is quite light color.
R + G + B =
198 + 165 + 221 = 584 (100%)
R 198 of 584 ~ 33.9%
G 165 of 584 ~ 28.25%
B 221 of 584 ~ 37.84%
#C6A5DD rengi CMYK tonu (10,25,0,13).
CMYK: (10,25,0,13) C10M25Y0K13 (10%,25%,0%,13%) (0.10/0.25/0.00/0.13)
C6 | A5 | DD | |
---|---|---|---|
RGB | 198 | 165 | 221 |
HSL | 275° | 45.16% | 75.69% |
HSB/HSV | 275° | 25.34% | 86.67% |
CMYK | 10.41% | 25.34% | 0.00% |
13.33% |
HEX | C6 | A5 | DD |
Decimal | 198 | 165 | 221 |
Binary | 11000110 | 10100101 | 11011101 |
Octal | 306 | 245 | 335 |
Examples of css and html codes for elements with #C6A5DD color. Also use rgb(198,165,221) instead hex code.
.myTextColor { color: #C6A5DD; }
<p style="color:#C6A5DD">This sample text font color is #C6A5DD.</p>
This text font color is #C6A5DD.
.myBgColor { background-color: #C6A5DD; }
<div style="background-color:#C6A5DD">Inner text</div>
This div background color is #C6A5DD.
.myBorderColor { border: 1px solid #C6A5DD; }
<div style="border:3px solid #C6A5DD">Div</div>
This div border color is #C6A5DD.
.myOpacity80 { color: #C6A5DD; opacity: 0.8; }
<p style="color:#C6A5DD;opacity:0.8;">80%</p>
Text with #C6A5DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6A5DD;}
<p style="text-shadow: 3px 3px 1px #C6A5DD">Text here.</p>
This text has shadow with #C6A5DD color.
.textShadow {text-shadow: 3px 3px 1px #C6A5DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6A5DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6A5DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6A5DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6A5DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6A5DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6A5DD; -webkit-box-shadow: 1px 1px 3px 2px #C6A5DD; box-shadow: 1px 1px 3px 2px #C6A5DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6A5DD; -webkit-box-shadow: 1px 1px 3px 2px #C6A5DD; box-shadow:1px 1px 3px 2px #C6A5DD;">
Div content here</div>
This text has color #C6A5DD on black background.
This text has color #C6A5DD on white background.
This text has black color on #C6A5DD background.
This text has white color on #C6A5DD background.