HEX: #C5E49B
RGB: (197,228,155)
#C5E49B contains mainly red and green colors. Web safe color of #C5E49B is #CCCC99 (or #CC9).
#C5E49B color RGB value is (197,228,155).
RGB: (197,228,155) (77%,89%,61%)
R 197 of 255 = 77%
G 228 of 255 = 89%
B 155 of 255 = 61%
R + G + B ~ 76%. #C5E49B is quite light color.
R + G + B =
197 + 228 + 155 = 580 (100%)
R 197 of 580 ~ 33.97%
G 228 of 580 ~ 39.31%
B 155 of 580 ~ 26.72%
#C5E49B color CMYK value is (14,0,32,11).
CMYK: (14,0,32,11) C14M0Y32K11 (14%,0%,32%,11%) (0.14/0.00/0.32/0.11)
C5 | E4 | 9B | |
---|---|---|---|
RGB | 197 | 228 | 155 |
HSL | 85° | 57.48% | 75.10% |
HSB/HSV | 85° | 32.02% | 89.41% |
CMYK | 13.60% | 0.00% | 32.02% |
10.59% |
HEX | C5 | E4 | 9B |
Decimal | 197 | 228 | 155 |
Binary | 11000101 | 11100100 | 10011011 |
Octal | 305 | 344 | 233 |
Examples of css and html codes for elements with #C5E49B color. Also use rgb(197,228,155) instead hex code.
.myTextColor { color: #C5E49B; }
<p style="color:#C5E49B">This sample text font color is #C5E49B.</p>
This text font color is #C5E49B.
.myBgColor { background-color: #C5E49B; }
<div style="background-color:#C5E49B">Inner text</div>
This div background color is #C5E49B.
.myBorderColor { border: 1px solid #C5E49B; }
<div style="border:3px solid #C5E49B">Div</div>
This div border color is #C5E49B.
.myOpacity80 { color: #C5E49B; opacity: 0.8; }
<p style="color:#C5E49B;opacity:0.8;">80%</p>
Text with #C5E49B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5E49B;}
<p style="text-shadow: 3px 3px 1px #C5E49B">Text here.</p>
This text has shadow with #C5E49B color.
.textShadow {text-shadow: 3px 3px 1px #C5E49B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5E49B, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5E49B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5E49B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5E49B, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5E49B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5E49B; -webkit-box-shadow: 1px 1px 3px 2px #C5E49B; box-shadow: 1px 1px 3px 2px #C5E49B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5E49B; -webkit-box-shadow: 1px 1px 3px 2px #C5E49B; box-shadow:1px 1px 3px 2px #C5E49B;">
Div content here</div>
This text has color #C5E49B on black background.
This text has color #C5E49B on white background.
This text has black color on #C5E49B background.
This text has white color on #C5E49B background.