HEX: #C6E0FF
RGB: (198,224,255)
#C6E0FF contains red, green and blue colors in about the same proportion. Web safe color of #C6E0FF is #CCCCFF (or #CCF).
#C6E0FF color RGB value is (198,224,255).
RGB: (198,224,255) (78%,88%,100%)
R 198 of 255 = 78%
G 224 of 255 = 88%
B 255 of 255 = 100%
R + G + B ~ 89%. #C6E0FF is light color.
R + G + B =
198 + 224 + 255 = 677 (100%)
R 198 of 677 ~ 29.25%
G 224 of 677 ~ 33.09%
B 255 of 677 ~ 37.67%
#C6E0FF color CMYK value is (22,12,0,0).
CMYK: (22,12,0,0) C22M12Y0K0 (22%,12%,0%,0%) (0.22/0.12/0.00/0.00)
C6 | E0 | FF | |
---|---|---|---|
RGB | 198 | 224 | 255 |
HSL | 213° | 100.00% | 88.82% |
HSB/HSV | 213° | 22.35% | 100.00% |
CMYK | 22.35% | 12.16% | 0.00% |
0.00% |
HEX | C6 | E0 | FF |
Decimal | 198 | 224 | 255 |
Binary | 11000110 | 11100000 | 11111111 |
Octal | 306 | 340 | 377 |
Examples of css and html codes for elements with #C6E0FF color. Also use rgb(198,224,255) instead hex code.
.myTextColor { color: #C6E0FF; }
<p style="color:#C6E0FF">This sample text font color is #C6E0FF.</p>
This text font color is #C6E0FF.
.myBgColor { background-color: #C6E0FF; }
<div style="background-color:#C6E0FF">Inner text</div>
This div background color is #C6E0FF.
.myBorderColor { border: 1px solid #C6E0FF; }
<div style="border:3px solid #C6E0FF">Div</div>
This div border color is #C6E0FF.
.myOpacity80 { color: #C6E0FF; opacity: 0.8; }
<p style="color:#C6E0FF;opacity:0.8;">80%</p>
Text with #C6E0FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6E0FF;}
<p style="text-shadow: 3px 3px 1px #C6E0FF">Text here.</p>
This text has shadow with #C6E0FF color.
.textShadow {text-shadow: 3px 3px 1px #C6E0FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6E0FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6E0FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6E0FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6E0FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6E0FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6E0FF; -webkit-box-shadow: 1px 1px 3px 2px #C6E0FF; box-shadow: 1px 1px 3px 2px #C6E0FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6E0FF; -webkit-box-shadow: 1px 1px 3px 2px #C6E0FF; box-shadow:1px 1px 3px 2px #C6E0FF;">
Div content here</div>
This text has color #C6E0FF on black background.
This text has color #C6E0FF on white background.
This text has black color on #C6E0FF background.
This text has white color on #C6E0FF background.