HEX: #C4CCEE
RGB: (196,204,238)
#C4CCEE contains red, green and blue colors in about the same proportion. Web safe color of #C4CCEE is #CCCCFF (or #CCF).
#C4CCEE color RGB value is (196,204,238).
RGB: (196,204,238) (77%,80%,93%)
R 196 of 255 = 77%
G 204 of 255 = 80%
B 238 of 255 = 93%
R + G + B ~ 83%. #C4CCEE is quite light color.
R + G + B =
196 + 204 + 238 = 638 (100%)
R 196 of 638 ~ 30.72%
G 204 of 638 ~ 31.97%
B 238 of 638 ~ 37.3%
#C4CCEE color CMYK value is (18,14,0,7).
CMYK: (18,14,0,7) C18M14Y0K7 (18%,14%,0%,7%) (0.18/0.14/0.00/0.07)
C4 | CC | EE | |
---|---|---|---|
RGB | 196 | 204 | 238 |
HSL | 229° | 55.26% | 85.10% |
HSB/HSV | 229° | 17.65% | 93.33% |
CMYK | 17.65% | 14.29% | 0.00% |
6.67% |
HEX | C4 | CC | EE |
Decimal | 196 | 204 | 238 |
Binary | 11000100 | 11001100 | 11101110 |
Octal | 304 | 314 | 356 |
Examples of css and html codes for elements with #C4CCEE color. Also use rgb(196,204,238) instead hex code.
.myTextColor { color: #C4CCEE; }
<p style="color:#C4CCEE">This sample text font color is #C4CCEE.</p>
This text font color is #C4CCEE.
.myBgColor { background-color: #C4CCEE; }
<div style="background-color:#C4CCEE">Inner text</div>
This div background color is #C4CCEE.
.myBorderColor { border: 1px solid #C4CCEE; }
<div style="border:3px solid #C4CCEE">Div</div>
This div border color is #C4CCEE.
.myOpacity80 { color: #C4CCEE; opacity: 0.8; }
<p style="color:#C4CCEE;opacity:0.8;">80%</p>
Text with #C4CCEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4CCEE;}
<p style="text-shadow: 3px 3px 1px #C4CCEE">Text here.</p>
This text has shadow with #C4CCEE color.
.textShadow {text-shadow: 3px 3px 1px #C4CCEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4CCEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4CCEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4CCEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4CCEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4CCEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4CCEE; -webkit-box-shadow: 1px 1px 3px 2px #C4CCEE; box-shadow: 1px 1px 3px 2px #C4CCEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4CCEE; -webkit-box-shadow: 1px 1px 3px 2px #C4CCEE; box-shadow:1px 1px 3px 2px #C4CCEE;">
Div content here</div>
This text has color #C4CCEE on black background.
This text has color #C4CCEE on white background.
This text has black color on #C4CCEE background.
This text has white color on #C4CCEE background.