HEX: #C5F3CB
RGB: (197,243,203)
#C5F3CB contains red, green and blue colors in about the same proportion. Web safe color of #C5F3CB is #CCFFCC (or #CFC).
#C5F3CB color RGB value is (197,243,203).
RGB: (197,243,203) (77%,95%,80%)
R 197 of 255 = 77%
G 243 of 255 = 95%
B 203 of 255 = 80%
R + G + B ~ 84%. #C5F3CB is quite light color.
R + G + B =
197 + 243 + 203 = 643 (100%)
R 197 of 643 ~ 30.64%
G 243 of 643 ~ 37.79%
B 203 of 643 ~ 31.57%
#C5F3CB color CMYK value is (19,0,16,5).
CMYK: (19,0,16,5) C19M0Y16K5 (19%,0%,16%,5%) (0.19/0.00/0.16/0.05)
C5 | F3 | CB | |
---|---|---|---|
RGB | 197 | 243 | 203 |
HSL | 128° | 65.71% | 86.27% |
HSB/HSV | 128° | 18.93% | 95.29% |
CMYK | 18.93% | 0.00% | 16.46% |
4.71% |
HEX | C5 | F3 | CB |
Decimal | 197 | 243 | 203 |
Binary | 11000101 | 11110011 | 11001011 |
Octal | 305 | 363 | 313 |
Examples of css and html codes for elements with #C5F3CB color. Also use rgb(197,243,203) instead hex code.
.myTextColor { color: #C5F3CB; }
<p style="color:#C5F3CB">This sample text font color is #C5F3CB.</p>
This text font color is #C5F3CB.
.myBgColor { background-color: #C5F3CB; }
<div style="background-color:#C5F3CB">Inner text</div>
This div background color is #C5F3CB.
.myBorderColor { border: 1px solid #C5F3CB; }
<div style="border:3px solid #C5F3CB">Div</div>
This div border color is #C5F3CB.
.myOpacity80 { color: #C5F3CB; opacity: 0.8; }
<p style="color:#C5F3CB;opacity:0.8;">80%</p>
Text with #C5F3CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5F3CB;}
<p style="text-shadow: 3px 3px 1px #C5F3CB">Text here.</p>
This text has shadow with #C5F3CB color.
.textShadow {text-shadow: 3px 3px 1px #C5F3CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5F3CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5F3CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5F3CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5F3CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5F3CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5F3CB; -webkit-box-shadow: 1px 1px 3px 2px #C5F3CB; box-shadow: 1px 1px 3px 2px #C5F3CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5F3CB; -webkit-box-shadow: 1px 1px 3px 2px #C5F3CB; box-shadow:1px 1px 3px 2px #C5F3CB;">
Div content here</div>
This text has color #C5F3CB on black background.
This text has color #C5F3CB on white background.
This text has black color on #C5F3CB background.
This text has white color on #C5F3CB background.