HEX: #C5FEBB
RGB: (197,254,187)
#C5FEBB contains mainly red and green colors. Web safe color of #C5FEBB is #CCFFCC (or #CFC).
#C5FEBB color RGB value is (197,254,187).
RGB: (197,254,187) (77%,100%,73%)
R 197 of 255 = 77%
G 254 of 255 = 100%
B 187 of 255 = 73%
R + G + B ~ 83%. #C5FEBB is quite light color.
R + G + B =
197 + 254 + 187 = 638 (100%)
R 197 of 638 ~ 30.88%
G 254 of 638 ~ 39.81%
B 187 of 638 ~ 29.31%
#C5FEBB color CMYK value is (22,0,26,0).
CMYK: (22,0,26,0) C22M0Y26K0 (22%,0%,26%,0%) (0.22/0.00/0.26/0.00)
C5 | FE | BB | |
---|---|---|---|
RGB | 197 | 254 | 187 |
HSL | 111° | 97.10% | 86.47% |
HSB/HSV | 111° | 26.38% | 99.61% |
CMYK | 22.44% | 0.00% | 26.38% |
0.39% |
HEX | C5 | FE | BB |
Decimal | 197 | 254 | 187 |
Binary | 11000101 | 11111110 | 10111011 |
Octal | 305 | 376 | 273 |
Examples of css and html codes for elements with #C5FEBB color. Also use rgb(197,254,187) instead hex code.
.myTextColor { color: #C5FEBB; }
<p style="color:#C5FEBB">This sample text font color is #C5FEBB.</p>
This text font color is #C5FEBB.
.myBgColor { background-color: #C5FEBB; }
<div style="background-color:#C5FEBB">Inner text</div>
This div background color is #C5FEBB.
.myBorderColor { border: 1px solid #C5FEBB; }
<div style="border:3px solid #C5FEBB">Div</div>
This div border color is #C5FEBB.
.myOpacity80 { color: #C5FEBB; opacity: 0.8; }
<p style="color:#C5FEBB;opacity:0.8;">80%</p>
Text with #C5FEBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5FEBB;}
<p style="text-shadow: 3px 3px 1px #C5FEBB">Text here.</p>
This text has shadow with #C5FEBB color.
.textShadow {text-shadow: 3px 3px 1px #C5FEBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5FEBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5FEBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5FEBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5FEBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5FEBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5FEBB; -webkit-box-shadow: 1px 1px 3px 2px #C5FEBB; box-shadow: 1px 1px 3px 2px #C5FEBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5FEBB; -webkit-box-shadow: 1px 1px 3px 2px #C5FEBB; box-shadow:1px 1px 3px 2px #C5FEBB;">
Div content here</div>
This text has color #C5FEBB on black background.
This text has color #C5FEBB on white background.
This text has black color on #C5FEBB background.
This text has white color on #C5FEBB background.