HEX: #63C7BD
RGB: (99,199,189)
#63C7BD contains mainly green and blue colors. Web safe color of #63C7BD is #66CCCC (or #6CC).
#63C7BD color RGB value is (99,199,189).
RGB: (99,199,189) (39%,78%,74%)
R 99 of 255 = 39%
G 199 of 255 = 78%
B 189 of 255 = 74%
R + G + B ~ 64%. #63C7BD is quite light color.
R + G + B =
99 + 199 + 189 = 487 (100%)
R 99 of 487 ~ 20.33%
G 199 of 487 ~ 40.86%
B 189 of 487 ~ 38.81%
#63C7BD color CMYK value is (50,0,5,22).
CMYK: (50,0,5,22) C50M0Y5K22 (50%,0%,5%,22%) (0.50/0.00/0.05/0.22)
63 | C7 | BD | |
---|---|---|---|
RGB | 99 | 199 | 189 |
HSL | 174° | 47.17% | 58.43% |
HSB/HSV | 174° | 50.25% | 78.04% |
CMYK | 50.25% | 0.00% | 5.03% |
21.96% |
HEX | 63 | C7 | BD |
Decimal | 99 | 199 | 189 |
Binary | 1100011 | 11000111 | 10111101 |
Octal | 143 | 307 | 275 |
Examples of css and html codes for elements with #63C7BD color. Also use rgb(99,199,189) instead hex code.
.myTextColor { color: #63C7BD; }
<p style="color:#63C7BD">This sample text font color is #63C7BD.</p>
This text font color is #63C7BD.
.myBgColor { background-color: #63C7BD; }
<div style="background-color:#63C7BD">Inner text</div>
This div background color is #63C7BD.
.myBorderColor { border: 1px solid #63C7BD; }
<div style="border:3px solid #63C7BD">Div</div>
This div border color is #63C7BD.
.myOpacity80 { color: #63C7BD; opacity: 0.8; }
<p style="color:#63C7BD;opacity:0.8;">80%</p>
Text with #63C7BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #63C7BD;}
<p style="text-shadow: 3px 3px 1px #63C7BD">Text here.</p>
This text has shadow with #63C7BD color.
.textShadow {text-shadow: 3px 3px 1px #63C7BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #63C7BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #63C7BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#63C7BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#63C7BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #63C7BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #63C7BD; -webkit-box-shadow: 1px 1px 3px 2px #63C7BD; box-shadow: 1px 1px 3px 2px #63C7BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #63C7BD; -webkit-box-shadow: 1px 1px 3px 2px #63C7BD; box-shadow:1px 1px 3px 2px #63C7BD;">
Div content here</div>
This text has color #63C7BD on black background.
This text has color #63C7BD on white background.
This text has black color on #63C7BD background.
This text has white color on #63C7BD background.