HEX: #63EFCA
RGB: (99,239,202)
#63EFCA contains mainly green and blue colors. Web safe color of #63EFCA is #66FFCC (or #6FC).
#63EFCA color RGB value is (99,239,202).
RGB: (99,239,202) (39%,94%,79%)
R 99 of 255 = 39%
G 239 of 255 = 94%
B 202 of 255 = 79%
R + G + B ~ 71%. #63EFCA is quite light color.
R + G + B =
99 + 239 + 202 = 540 (100%)
R 99 of 540 ~ 18.33%
G 239 of 540 ~ 44.26%
B 202 of 540 ~ 37.41%
#63EFCA color CMYK value is (59,0,15,6).
CMYK: (59,0,15,6) C59M0Y15K6 (59%,0%,15%,6%) (0.59/0.00/0.15/0.06)
63 | EF | CA | |
---|---|---|---|
RGB | 99 | 239 | 202 |
HSL | 164° | 81.40% | 66.27% |
HSB/HSV | 164° | 58.58% | 93.73% |
CMYK | 58.58% | 0.00% | 15.48% |
6.27% |
HEX | 63 | EF | CA |
Decimal | 99 | 239 | 202 |
Binary | 1100011 | 11101111 | 11001010 |
Octal | 143 | 357 | 312 |
Examples of css and html codes for elements with #63EFCA color. Also use rgb(99,239,202) instead hex code.
.myTextColor { color: #63EFCA; }
<p style="color:#63EFCA">This sample text font color is #63EFCA.</p>
This text font color is #63EFCA.
.myBgColor { background-color: #63EFCA; }
<div style="background-color:#63EFCA">Inner text</div>
This div background color is #63EFCA.
.myBorderColor { border: 1px solid #63EFCA; }
<div style="border:3px solid #63EFCA">Div</div>
This div border color is #63EFCA.
.myOpacity80 { color: #63EFCA; opacity: 0.8; }
<p style="color:#63EFCA;opacity:0.8;">80%</p>
Text with #63EFCA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #63EFCA;}
<p style="text-shadow: 3px 3px 1px #63EFCA">Text here.</p>
This text has shadow with #63EFCA color.
.textShadow {text-shadow: 3px 3px 1px #63EFCA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #63EFCA, 5px 5px 20px red">Text here.</p>
This text has shadow with #63EFCA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#63EFCA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#63EFCA, Direction=45, Strength=4)">Text</p>
This text has shadow with #63EFCA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #63EFCA; -webkit-box-shadow: 1px 1px 3px 2px #63EFCA; box-shadow: 1px 1px 3px 2px #63EFCA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #63EFCA; -webkit-box-shadow: 1px 1px 3px 2px #63EFCA; box-shadow:1px 1px 3px 2px #63EFCA;">
Div content here</div>
This text has color #63EFCA on black background.
This text has color #63EFCA on white background.
This text has black color on #63EFCA background.
This text has white color on #63EFCA background.