HEX: #CCC5FD
RGB: (204,197,253)
#CCC5FD contains red, green and blue colors in about the same proportion. Web safe color of #CCC5FD is #CCCCFF (or #CCF).
#CCC5FD color RGB value is (204,197,253).
RGB: (204,197,253) (80%,77%,99%)
R 204 of 255 = 80%
G 197 of 255 = 77%
B 253 of 255 = 99%
R + G + B ~ 85%. #CCC5FD is quite light color.
R + G + B =
204 + 197 + 253 = 654 (100%)
R 204 of 654 ~ 31.19%
G 197 of 654 ~ 30.12%
B 253 of 654 ~ 38.69%
#CCC5FD color CMYK value is (19,22,0,1).
CMYK: (19,22,0,1) C19M22Y0K1 (19%,22%,0%,1%) (0.19/0.22/0.00/0.01)
CC | C5 | FD | |
---|---|---|---|
RGB | 204 | 197 | 253 |
HSL | 248° | 93.33% | 88.24% |
HSB/HSV | 248° | 22.13% | 99.22% |
CMYK | 19.37% | 22.13% | 0.00% |
0.78% |
HEX | CC | C5 | FD |
Decimal | 204 | 197 | 253 |
Binary | 11001100 | 11000101 | 11111101 |
Octal | 314 | 305 | 375 |
Examples of css and html codes for elements with #CCC5FD color. Also use rgb(204,197,253) instead hex code.
.myTextColor { color: #CCC5FD; }
<p style="color:#CCC5FD">This sample text font color is #CCC5FD.</p>
This text font color is #CCC5FD.
.myBgColor { background-color: #CCC5FD; }
<div style="background-color:#CCC5FD">Inner text</div>
This div background color is #CCC5FD.
.myBorderColor { border: 1px solid #CCC5FD; }
<div style="border:3px solid #CCC5FD">Div</div>
This div border color is #CCC5FD.
.myOpacity80 { color: #CCC5FD; opacity: 0.8; }
<p style="color:#CCC5FD;opacity:0.8;">80%</p>
Text with #CCC5FD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCC5FD;}
<p style="text-shadow: 3px 3px 1px #CCC5FD">Text here.</p>
This text has shadow with #CCC5FD color.
.textShadow {text-shadow: 3px 3px 1px #CCC5FD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCC5FD, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCC5FD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCC5FD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCC5FD, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCC5FD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCC5FD; -webkit-box-shadow: 1px 1px 3px 2px #CCC5FD; box-shadow: 1px 1px 3px 2px #CCC5FD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCC5FD; -webkit-box-shadow: 1px 1px 3px 2px #CCC5FD; box-shadow:1px 1px 3px 2px #CCC5FD;">
Div content here</div>
This text has color #CCC5FD on black background.
This text has color #CCC5FD on white background.
This text has black color on #CCC5FD background.
This text has white color on #CCC5FD background.