HEX: #C6E6FE
RGB: (198,230,254)
#C6E6FE contains red, green and blue colors in about the same proportion. Web safe color of #C6E6FE is #CCCCFF (or #CCF).
#C6E6FE color RGB value is (198,230,254).
RGB: (198,230,254) (78%,90%,100%)
R 198 of 255 = 78%
G 230 of 255 = 90%
B 254 of 255 = 100%
R + G + B ~ 89%. #C6E6FE is light color.
R + G + B =
198 + 230 + 254 = 682 (100%)
R 198 of 682 ~ 29.03%
G 230 of 682 ~ 33.72%
B 254 of 682 ~ 37.24%
#C6E6FE color CMYK value is (22,9,0,0).
CMYK: (22,9,0,0) C22M9Y0K0 (22%,9%,0%,0%) (0.22/0.09/0.00/0.00)
C6 | E6 | FE | |
---|---|---|---|
RGB | 198 | 230 | 254 |
HSL | 206° | 96.55% | 88.63% |
HSB/HSV | 206° | 22.05% | 99.61% |
CMYK | 22.05% | 9.45% | 0.00% |
0.39% |
HEX | C6 | E6 | FE |
Decimal | 198 | 230 | 254 |
Binary | 11000110 | 11100110 | 11111110 |
Octal | 306 | 346 | 376 |
Examples of css and html codes for elements with #C6E6FE color. Also use rgb(198,230,254) instead hex code.
.myTextColor { color: #C6E6FE; }
<p style="color:#C6E6FE">This sample text font color is #C6E6FE.</p>
This text font color is #C6E6FE.
.myBgColor { background-color: #C6E6FE; }
<div style="background-color:#C6E6FE">Inner text</div>
This div background color is #C6E6FE.
.myBorderColor { border: 1px solid #C6E6FE; }
<div style="border:3px solid #C6E6FE">Div</div>
This div border color is #C6E6FE.
.myOpacity80 { color: #C6E6FE; opacity: 0.8; }
<p style="color:#C6E6FE;opacity:0.8;">80%</p>
Text with #C6E6FE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6E6FE;}
<p style="text-shadow: 3px 3px 1px #C6E6FE">Text here.</p>
This text has shadow with #C6E6FE color.
.textShadow {text-shadow: 3px 3px 1px #C6E6FE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6E6FE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6E6FE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6E6FE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6E6FE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6E6FE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6E6FE; -webkit-box-shadow: 1px 1px 3px 2px #C6E6FE; box-shadow: 1px 1px 3px 2px #C6E6FE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6E6FE; -webkit-box-shadow: 1px 1px 3px 2px #C6E6FE; box-shadow:1px 1px 3px 2px #C6E6FE;">
Div content here</div>
This text has color #C6E6FE on black background.
This text has color #C6E6FE on white background.
This text has black color on #C6E6FE background.
This text has white color on #C6E6FE background.