HEX: #63FB95
RGB: (99,251,149)
#63FB95 contains mainly green color. Web safe color of #63FB95 is #66FF99 (or #6F9).
#63FB95 color RGB value is (99,251,149).
RGB: (99,251,149) (39%,98%,58%)
R 99 of 255 = 39%
G 251 of 255 = 98%
B 149 of 255 = 58%
R + G + B ~ 65%. #63FB95 is quite light color.
R + G + B =
99 + 251 + 149 = 499 (100%)
R 99 of 499 ~ 19.84%
G 251 of 499 ~ 50.3%
B 149 of 499 ~ 29.86%
#63FB95 color CMYK value is (61,0,41,2).
CMYK: (61,0,41,2) C61M0Y41K2 (61%,0%,41%,2%) (0.61/0.00/0.41/0.02)
63 | FB | 95 | |
---|---|---|---|
RGB | 99 | 251 | 149 |
HSL | 140° | 95.00% | 68.63% |
HSB/HSV | 140° | 60.56% | 98.43% |
CMYK | 60.56% | 0.00% | 40.64% |
1.57% |
HEX | 63 | FB | 95 |
Decimal | 99 | 251 | 149 |
Binary | 1100011 | 11111011 | 10010101 |
Octal | 143 | 373 | 225 |
Examples of css and html codes for elements with #63FB95 color. Also use rgb(99,251,149) instead hex code.
.myTextColor { color: #63FB95; }
<p style="color:#63FB95">This sample text font color is #63FB95.</p>
This text font color is #63FB95.
.myBgColor { background-color: #63FB95; }
<div style="background-color:#63FB95">Inner text</div>
This div background color is #63FB95.
.myBorderColor { border: 1px solid #63FB95; }
<div style="border:3px solid #63FB95">Div</div>
This div border color is #63FB95.
.myOpacity80 { color: #63FB95; opacity: 0.8; }
<p style="color:#63FB95;opacity:0.8;">80%</p>
Text with #63FB95 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #63FB95;}
<p style="text-shadow: 3px 3px 1px #63FB95">Text here.</p>
This text has shadow with #63FB95 color.
.textShadow {text-shadow: 3px 3px 1px #63FB95, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #63FB95, 5px 5px 20px red">Text here.</p>
This text has shadow with #63FB95 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#63FB95, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#63FB95, Direction=45, Strength=4)">Text</p>
This text has shadow with #63FB95 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #63FB95; -webkit-box-shadow: 1px 1px 3px 2px #63FB95; box-shadow: 1px 1px 3px 2px #63FB95; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #63FB95; -webkit-box-shadow: 1px 1px 3px 2px #63FB95; box-shadow:1px 1px 3px 2px #63FB95;">
Div content here</div>
This text has color #63FB95 on black background.
This text has color #63FB95 on white background.
This text has black color on #63FB95 background.
This text has white color on #63FB95 background.