HEX: #C5EDBE
RGB: (197,237,190)
#C5EDBE contains red, green and blue colors in about the same proportion. Web safe color of #C5EDBE is #CCFFCC (or #CFC).
#C5EDBE color RGB value is (197,237,190).
RGB: (197,237,190) (77%,93%,75%)
R 197 of 255 = 77%
G 237 of 255 = 93%
B 190 of 255 = 75%
R + G + B ~ 82%. #C5EDBE is quite light color.
R + G + B =
197 + 237 + 190 = 624 (100%)
R 197 of 624 ~ 31.57%
G 237 of 624 ~ 37.98%
B 190 of 624 ~ 30.45%
#C5EDBE color CMYK value is (17,0,20,7).
CMYK: (17,0,20,7) C17M0Y20K7 (17%,0%,20%,7%) (0.17/0.00/0.20/0.07)
C5 | ED | BE | |
---|---|---|---|
RGB | 197 | 237 | 190 |
HSL | 111° | 56.63% | 83.73% |
HSB/HSV | 111° | 19.83% | 92.94% |
CMYK | 16.88% | 0.00% | 19.83% |
7.06% |
HEX | C5 | ED | BE |
Decimal | 197 | 237 | 190 |
Binary | 11000101 | 11101101 | 10111110 |
Octal | 305 | 355 | 276 |
Examples of css and html codes for elements with #C5EDBE color. Also use rgb(197,237,190) instead hex code.
.myTextColor { color: #C5EDBE; }
<p style="color:#C5EDBE">This sample text font color is #C5EDBE.</p>
This text font color is #C5EDBE.
.myBgColor { background-color: #C5EDBE; }
<div style="background-color:#C5EDBE">Inner text</div>
This div background color is #C5EDBE.
.myBorderColor { border: 1px solid #C5EDBE; }
<div style="border:3px solid #C5EDBE">Div</div>
This div border color is #C5EDBE.
.myOpacity80 { color: #C5EDBE; opacity: 0.8; }
<p style="color:#C5EDBE;opacity:0.8;">80%</p>
Text with #C5EDBE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5EDBE;}
<p style="text-shadow: 3px 3px 1px #C5EDBE">Text here.</p>
This text has shadow with #C5EDBE color.
.textShadow {text-shadow: 3px 3px 1px #C5EDBE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5EDBE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5EDBE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5EDBE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5EDBE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5EDBE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5EDBE; -webkit-box-shadow: 1px 1px 3px 2px #C5EDBE; box-shadow: 1px 1px 3px 2px #C5EDBE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5EDBE; -webkit-box-shadow: 1px 1px 3px 2px #C5EDBE; box-shadow:1px 1px 3px 2px #C5EDBE;">
Div content here</div>
This text has color #C5EDBE on black background.
This text has color #C5EDBE on white background.
This text has black color on #C5EDBE background.
This text has white color on #C5EDBE background.