HEX: #CAFEC4
RGB: (202,254,196)
#CAFEC4 contains red, green and blue colors in about the same proportion. Web safe color of #CAFEC4 is #CCFFCC (or #CFC).
#CAFEC4 color RGB value is (202,254,196).
RGB: (202,254,196) (79%,100%,77%)
R 202 of 255 = 79%
G 254 of 255 = 100%
B 196 of 255 = 77%
R + G + B ~ 85%. #CAFEC4 is quite light color.
R + G + B =
202 + 254 + 196 = 652 (100%)
R 202 of 652 ~ 30.98%
G 254 of 652 ~ 38.96%
B 196 of 652 ~ 30.06%
#CAFEC4 color CMYK value is (20,0,23,0).
CMYK: (20,0,23,0) C20M0Y23K0 (20%,0%,23%,0%) (0.20/0.00/0.23/0.00)
CA | FE | C4 | |
---|---|---|---|
RGB | 202 | 254 | 196 |
HSL | 114° | 96.67% | 88.24% |
HSB/HSV | 114° | 22.83% | 99.61% |
CMYK | 20.47% | 0.00% | 22.83% |
0.39% |
HEX | CA | FE | C4 |
Decimal | 202 | 254 | 196 |
Binary | 11001010 | 11111110 | 11000100 |
Octal | 312 | 376 | 304 |
Examples of css and html codes for elements with #CAFEC4 color. Also use rgb(202,254,196) instead hex code.
.myTextColor { color: #CAFEC4; }
<p style="color:#CAFEC4">This sample text font color is #CAFEC4.</p>
This text font color is #CAFEC4.
.myBgColor { background-color: #CAFEC4; }
<div style="background-color:#CAFEC4">Inner text</div>
This div background color is #CAFEC4.
.myBorderColor { border: 1px solid #CAFEC4; }
<div style="border:3px solid #CAFEC4">Div</div>
This div border color is #CAFEC4.
.myOpacity80 { color: #CAFEC4; opacity: 0.8; }
<p style="color:#CAFEC4;opacity:0.8;">80%</p>
Text with #CAFEC4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CAFEC4;}
<p style="text-shadow: 3px 3px 1px #CAFEC4">Text here.</p>
This text has shadow with #CAFEC4 color.
.textShadow {text-shadow: 3px 3px 1px #CAFEC4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CAFEC4, 5px 5px 20px red">Text here.</p>
This text has shadow with #CAFEC4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CAFEC4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CAFEC4, Direction=45, Strength=4)">Text</p>
This text has shadow with #CAFEC4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CAFEC4; -webkit-box-shadow: 1px 1px 3px 2px #CAFEC4; box-shadow: 1px 1px 3px 2px #CAFEC4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CAFEC4; -webkit-box-shadow: 1px 1px 3px 2px #CAFEC4; box-shadow:1px 1px 3px 2px #CAFEC4;">
Div content here</div>
This text has color #CAFEC4 on black background.
This text has color #CAFEC4 on white background.
This text has black color on #CAFEC4 background.
This text has white color on #CAFEC4 background.