HEX: #C6C1CC
RGB: (198,193,204)
#C6C1CC contains red, green and blue colors in about the same proportion. Web safe color of #C6C1CC is #CCCCCC (or #CCC).
#C6C1CC color RGB value is (198,193,204).
RGB: (198,193,204) (78%,76%,80%)
R 198 of 255 = 78%
G 193 of 255 = 76%
B 204 of 255 = 80%
R + G + B ~ 78%. #C6C1CC is quite light color.
R + G + B =
198 + 193 + 204 = 595 (100%)
R 198 of 595 ~ 33.28%
G 193 of 595 ~ 32.44%
B 204 of 595 ~ 34.29%
#C6C1CC color CMYK value is (3,5,0,20).
CMYK: (3,5,0,20) C3M5Y0K20 (3%,5%,0%,20%) (0.03/0.05/0.00/0.20)
C6 | C1 | CC | |
---|---|---|---|
RGB | 198 | 193 | 204 |
HSL | 267° | 9.73% | 77.84% |
HSB/HSV | 267° | 5.39% | 80.00% |
CMYK | 2.94% | 5.39% | 0.00% |
20.00% |
HEX | C6 | C1 | CC |
Decimal | 198 | 193 | 204 |
Binary | 11000110 | 11000001 | 11001100 |
Octal | 306 | 301 | 314 |
Examples of css and html codes for elements with #C6C1CC color. Also use rgb(198,193,204) instead hex code.
.myTextColor { color: #C6C1CC; }
<p style="color:#C6C1CC">This sample text font color is #C6C1CC.</p>
This text font color is #C6C1CC.
.myBgColor { background-color: #C6C1CC; }
<div style="background-color:#C6C1CC">Inner text</div>
This div background color is #C6C1CC.
.myBorderColor { border: 1px solid #C6C1CC; }
<div style="border:3px solid #C6C1CC">Div</div>
This div border color is #C6C1CC.
.myOpacity80 { color: #C6C1CC; opacity: 0.8; }
<p style="color:#C6C1CC;opacity:0.8;">80%</p>
Text with #C6C1CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6C1CC;}
<p style="text-shadow: 3px 3px 1px #C6C1CC">Text here.</p>
This text has shadow with #C6C1CC color.
.textShadow {text-shadow: 3px 3px 1px #C6C1CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6C1CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6C1CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6C1CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6C1CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6C1CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6C1CC; -webkit-box-shadow: 1px 1px 3px 2px #C6C1CC; box-shadow: 1px 1px 3px 2px #C6C1CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6C1CC; -webkit-box-shadow: 1px 1px 3px 2px #C6C1CC; box-shadow:1px 1px 3px 2px #C6C1CC;">
Div content here</div>
This text has color #C6C1CC on black background.
This text has color #C6C1CC on white background.
This text has black color on #C6C1CC background.
This text has white color on #C6C1CC background.