HEX: #C1E276
RGB: (193,226,118)
#C1E276 contains mainly red and green colors. Web safe color of #C1E276 is #CCCC66 (or #CC6).
#C1E276 color RGB value is (193,226,118).
RGB: (193,226,118) (76%,89%,46%)
R 193 of 255 = 76%
G 226 of 255 = 89%
B 118 of 255 = 46%
R + G + B ~ 70%. #C1E276 is quite light color.
R + G + B =
193 + 226 + 118 = 537 (100%)
R 193 of 537 ~ 35.94%
G 226 of 537 ~ 42.09%
B 118 of 537 ~ 21.97%
#C1E276 color CMYK value is (15,0,48,11).
CMYK: (15,0,48,11) C15M0Y48K11 (15%,0%,48%,11%) (0.15/0.00/0.48/0.11)
C1 | E2 | 76 | |
---|---|---|---|
RGB | 193 | 226 | 118 |
HSL | 78° | 65.06% | 67.45% |
HSB/HSV | 78° | 47.79% | 88.63% |
CMYK | 14.60% | 0.00% | 47.79% |
11.37% |
HEX | C1 | E2 | 76 |
Decimal | 193 | 226 | 118 |
Binary | 11000001 | 11100010 | 1110110 |
Octal | 301 | 342 | 166 |
Examples of css and html codes for elements with #C1E276 color. Also use rgb(193,226,118) instead hex code.
.myTextColor { color: #C1E276; }
<p style="color:#C1E276">This sample text font color is #C1E276.</p>
This text font color is #C1E276.
.myBgColor { background-color: #C1E276; }
<div style="background-color:#C1E276">Inner text</div>
This div background color is #C1E276.
.myBorderColor { border: 1px solid #C1E276; }
<div style="border:3px solid #C1E276">Div</div>
This div border color is #C1E276.
.myOpacity80 { color: #C1E276; opacity: 0.8; }
<p style="color:#C1E276;opacity:0.8;">80%</p>
Text with #C1E276 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C1E276;}
<p style="text-shadow: 3px 3px 1px #C1E276">Text here.</p>
This text has shadow with #C1E276 color.
.textShadow {text-shadow: 3px 3px 1px #C1E276, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C1E276, 5px 5px 20px red">Text here.</p>
This text has shadow with #C1E276 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C1E276, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C1E276, Direction=45, Strength=4)">Text</p>
This text has shadow with #C1E276 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C1E276; -webkit-box-shadow: 1px 1px 3px 2px #C1E276; box-shadow: 1px 1px 3px 2px #C1E276; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C1E276; -webkit-box-shadow: 1px 1px 3px 2px #C1E276; box-shadow:1px 1px 3px 2px #C1E276;">
Div content here</div>
This text has color #C1E276 on black background.
This text has color #C1E276 on white background.
This text has black color on #C1E276 background.
This text has white color on #C1E276 background.