HEX: #C4E1AB
RGB: (196,225,171)
#C4E1AB contains red, green and blue colors in about the same proportion. Web safe color of #C4E1AB is #CCCC99 (or #CC9).
#C4E1AB color RGB value is (196,225,171).
RGB: (196,225,171) (77%,88%,67%)
R 196 of 255 = 77%
G 225 of 255 = 88%
B 171 of 255 = 67%
R + G + B ~ 77%. #C4E1AB is quite light color.
R + G + B =
196 + 225 + 171 = 592 (100%)
R 196 of 592 ~ 33.11%
G 225 of 592 ~ 38.01%
B 171 of 592 ~ 28.89%
#C4E1AB color CMYK value is (13,0,24,12).
CMYK: (13,0,24,12) C13M0Y24K12 (13%,0%,24%,12%) (0.13/0.00/0.24/0.12)
C4 | E1 | AB | |
---|---|---|---|
RGB | 196 | 225 | 171 |
HSL | 92° | 47.37% | 77.65% |
HSB/HSV | 92° | 24.00% | 88.24% |
CMYK | 12.89% | 0.00% | 24.00% |
11.76% |
HEX | C4 | E1 | AB |
Decimal | 196 | 225 | 171 |
Binary | 11000100 | 11100001 | 10101011 |
Octal | 304 | 341 | 253 |
Examples of css and html codes for elements with #C4E1AB color. Also use rgb(196,225,171) instead hex code.
.myTextColor { color: #C4E1AB; }
<p style="color:#C4E1AB">This sample text font color is #C4E1AB.</p>
This text font color is #C4E1AB.
.myBgColor { background-color: #C4E1AB; }
<div style="background-color:#C4E1AB">Inner text</div>
This div background color is #C4E1AB.
.myBorderColor { border: 1px solid #C4E1AB; }
<div style="border:3px solid #C4E1AB">Div</div>
This div border color is #C4E1AB.
.myOpacity80 { color: #C4E1AB; opacity: 0.8; }
<p style="color:#C4E1AB;opacity:0.8;">80%</p>
Text with #C4E1AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4E1AB;}
<p style="text-shadow: 3px 3px 1px #C4E1AB">Text here.</p>
This text has shadow with #C4E1AB color.
.textShadow {text-shadow: 3px 3px 1px #C4E1AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4E1AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4E1AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4E1AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4E1AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4E1AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4E1AB; -webkit-box-shadow: 1px 1px 3px 2px #C4E1AB; box-shadow: 1px 1px 3px 2px #C4E1AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4E1AB; -webkit-box-shadow: 1px 1px 3px 2px #C4E1AB; box-shadow:1px 1px 3px 2px #C4E1AB;">
Div content here</div>
This text has color #C4E1AB on black background.
This text has color #C4E1AB on white background.
This text has black color on #C4E1AB background.
This text has white color on #C4E1AB background.