HEX: #C6E3ED
RGB: (198,227,237)
#C6E3ED contains red, green and blue colors in about the same proportion. Web safe color of #C6E3ED is #CCCCFF (or #CCF).
#C6E3ED color RGB value is (198,227,237).
RGB: (198,227,237) (78%,89%,93%)
R 198 of 255 = 78%
G 227 of 255 = 89%
B 237 of 255 = 93%
R + G + B ~ 87%. #C6E3ED is light color.
R + G + B =
198 + 227 + 237 = 662 (100%)
R 198 of 662 ~ 29.91%
G 227 of 662 ~ 34.29%
B 237 of 662 ~ 35.8%
#C6E3ED color CMYK value is (16,4,0,7).
CMYK: (16,4,0,7) C16M4Y0K7 (16%,4%,0%,7%) (0.16/0.04/0.00/0.07)
C6 | E3 | ED | |
---|---|---|---|
RGB | 198 | 227 | 237 |
HSL | 195° | 52.00% | 85.29% |
HSB/HSV | 195° | 16.46% | 92.94% |
CMYK | 16.46% | 4.22% | 0.00% |
7.06% |
HEX | C6 | E3 | ED |
Decimal | 198 | 227 | 237 |
Binary | 11000110 | 11100011 | 11101101 |
Octal | 306 | 343 | 355 |
Examples of css and html codes for elements with #C6E3ED color. Also use rgb(198,227,237) instead hex code.
.myTextColor { color: #C6E3ED; }
<p style="color:#C6E3ED">This sample text font color is #C6E3ED.</p>
This text font color is #C6E3ED.
.myBgColor { background-color: #C6E3ED; }
<div style="background-color:#C6E3ED">Inner text</div>
This div background color is #C6E3ED.
.myBorderColor { border: 1px solid #C6E3ED; }
<div style="border:3px solid #C6E3ED">Div</div>
This div border color is #C6E3ED.
.myOpacity80 { color: #C6E3ED; opacity: 0.8; }
<p style="color:#C6E3ED;opacity:0.8;">80%</p>
Text with #C6E3ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6E3ED;}
<p style="text-shadow: 3px 3px 1px #C6E3ED">Text here.</p>
This text has shadow with #C6E3ED color.
.textShadow {text-shadow: 3px 3px 1px #C6E3ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6E3ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6E3ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6E3ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6E3ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6E3ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6E3ED; -webkit-box-shadow: 1px 1px 3px 2px #C6E3ED; box-shadow: 1px 1px 3px 2px #C6E3ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6E3ED; -webkit-box-shadow: 1px 1px 3px 2px #C6E3ED; box-shadow:1px 1px 3px 2px #C6E3ED;">
Div content here</div>
This text has color #C6E3ED on black background.
This text has color #C6E3ED on white background.
This text has black color on #C6E3ED background.
This text has white color on #C6E3ED background.