HEX: #C5F1FF
RGB: (197,241,255)
#C5F1FF contains red, green and blue colors in about the same proportion. Web safe color of #C5F1FF is #CCFFFF (or #CFF).
#C5F1FF color RGB value is (197,241,255).
RGB: (197,241,255) (77%,95%,100%)
R 197 of 255 = 77%
G 241 of 255 = 95%
B 255 of 255 = 100%
R + G + B ~ 91%. #C5F1FF is light color.
R + G + B =
197 + 241 + 255 = 693 (100%)
R 197 of 693 ~ 28.43%
G 241 of 693 ~ 34.78%
B 255 of 693 ~ 36.8%
#C5F1FF color CMYK value is (23,5,0,0).
CMYK: (23,5,0,0) C23M5Y0K0 (23%,5%,0%,0%) (0.23/0.05/0.00/0.00)
C5 | F1 | FF | |
---|---|---|---|
RGB | 197 | 241 | 255 |
HSL | 194° | 100.00% | 88.63% |
HSB/HSV | 194° | 22.75% | 100.00% |
CMYK | 22.75% | 5.49% | 0.00% |
0.00% |
HEX | C5 | F1 | FF |
Decimal | 197 | 241 | 255 |
Binary | 11000101 | 11110001 | 11111111 |
Octal | 305 | 361 | 377 |
Examples of css and html codes for elements with #C5F1FF color. Also use rgb(197,241,255) instead hex code.
.myTextColor { color: #C5F1FF; }
<p style="color:#C5F1FF">This sample text font color is #C5F1FF.</p>
This text font color is #C5F1FF.
.myBgColor { background-color: #C5F1FF; }
<div style="background-color:#C5F1FF">Inner text</div>
This div background color is #C5F1FF.
.myBorderColor { border: 1px solid #C5F1FF; }
<div style="border:3px solid #C5F1FF">Div</div>
This div border color is #C5F1FF.
.myOpacity80 { color: #C5F1FF; opacity: 0.8; }
<p style="color:#C5F1FF;opacity:0.8;">80%</p>
Text with #C5F1FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5F1FF;}
<p style="text-shadow: 3px 3px 1px #C5F1FF">Text here.</p>
This text has shadow with #C5F1FF color.
.textShadow {text-shadow: 3px 3px 1px #C5F1FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5F1FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5F1FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5F1FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5F1FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5F1FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5F1FF; -webkit-box-shadow: 1px 1px 3px 2px #C5F1FF; box-shadow: 1px 1px 3px 2px #C5F1FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5F1FF; -webkit-box-shadow: 1px 1px 3px 2px #C5F1FF; box-shadow:1px 1px 3px 2px #C5F1FF;">
Div content here</div>
This text has color #C5F1FF on black background.
This text has color #C5F1FF on white background.
This text has black color on #C5F1FF background.
This text has white color on #C5F1FF background.