HEX: #CCBEDC
RGB: (204,190,220)
#CCBEDC contains red, green and blue colors in about the same proportion. Web safe color of #CCBEDC is #CCCCCC (or #CCC).
#CCBEDC color RGB value is (204,190,220).
RGB: (204,190,220) (80%,75%,86%)
R 204 of 255 = 80%
G 190 of 255 = 75%
B 220 of 255 = 86%
R + G + B ~ 80%. #CCBEDC is quite light color.
R + G + B =
204 + 190 + 220 = 614 (100%)
R 204 of 614 ~ 33.22%
G 190 of 614 ~ 30.94%
B 220 of 614 ~ 35.83%
#CCBEDC color CMYK value is (7,14,0,14).
CMYK: (7,14,0,14) C7M14Y0K14 (7%,14%,0%,14%) (0.07/0.14/0.00/0.14)
CC | BE | DC | |
---|---|---|---|
RGB | 204 | 190 | 220 |
HSL | 268° | 30.00% | 80.39% |
HSB/HSV | 268° | 13.64% | 86.27% |
CMYK | 7.27% | 13.64% | 0.00% |
13.73% |
HEX | CC | BE | DC |
Decimal | 204 | 190 | 220 |
Binary | 11001100 | 10111110 | 11011100 |
Octal | 314 | 276 | 334 |
Examples of css and html codes for elements with #CCBEDC color. Also use rgb(204,190,220) instead hex code.
.myTextColor { color: #CCBEDC; }
<p style="color:#CCBEDC">This sample text font color is #CCBEDC.</p>
This text font color is #CCBEDC.
.myBgColor { background-color: #CCBEDC; }
<div style="background-color:#CCBEDC">Inner text</div>
This div background color is #CCBEDC.
.myBorderColor { border: 1px solid #CCBEDC; }
<div style="border:3px solid #CCBEDC">Div</div>
This div border color is #CCBEDC.
.myOpacity80 { color: #CCBEDC; opacity: 0.8; }
<p style="color:#CCBEDC;opacity:0.8;">80%</p>
Text with #CCBEDC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCBEDC;}
<p style="text-shadow: 3px 3px 1px #CCBEDC">Text here.</p>
This text has shadow with #CCBEDC color.
.textShadow {text-shadow: 3px 3px 1px #CCBEDC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCBEDC, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCBEDC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCBEDC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCBEDC, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCBEDC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCBEDC; -webkit-box-shadow: 1px 1px 3px 2px #CCBEDC; box-shadow: 1px 1px 3px 2px #CCBEDC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCBEDC; -webkit-box-shadow: 1px 1px 3px 2px #CCBEDC; box-shadow:1px 1px 3px 2px #CCBEDC;">
Div content here</div>
This text has color #CCBEDC on black background.
This text has color #CCBEDC on white background.
This text has black color on #CCBEDC background.
This text has white color on #CCBEDC background.