HEX: #63AC7D
RGB: (99,172,125)
#63AC7D contains mainly green and blue colors. Web safe color of #63AC7D is #669966 (or #696).
#63AC7D color RGB value is (99,172,125).
RGB: (99,172,125) (39%,67%,49%)
R 99 of 255 = 39%
G 172 of 255 = 67%
B 125 of 255 = 49%
R + G + B ~ 52%. #63AC7D is middle color (not dark and not light).
R + G + B =
99 + 172 + 125 = 396 (100%)
R 99 of 396 ~ 25%
G 172 of 396 ~ 43.43%
B 125 of 396 ~ 31.57%
#63AC7D color CMYK value is (42,0,27,33).
CMYK: (42,0,27,33) C42M0Y27K33 (42%,0%,27%,33%) (0.42/0.00/0.27/0.33)
63 | AC | 7D | |
---|---|---|---|
RGB | 99 | 172 | 125 |
HSL | 141° | 30.54% | 53.14% |
HSB/HSV | 141° | 42.44% | 67.45% |
CMYK | 42.44% | 0.00% | 27.33% |
32.55% |
HEX | 63 | AC | 7D |
Decimal | 99 | 172 | 125 |
Binary | 1100011 | 10101100 | 1111101 |
Octal | 143 | 254 | 175 |
Examples of css and html codes for elements with #63AC7D color. Also use rgb(99,172,125) instead hex code.
.myTextColor { color: #63AC7D; }
<p style="color:#63AC7D">This sample text font color is #63AC7D.</p>
This text font color is #63AC7D.
.myBgColor { background-color: #63AC7D; }
<div style="background-color:#63AC7D">Inner text</div>
This div background color is #63AC7D.
.myBorderColor { border: 1px solid #63AC7D; }
<div style="border:3px solid #63AC7D">Div</div>
This div border color is #63AC7D.
.myOpacity80 { color: #63AC7D; opacity: 0.8; }
<p style="color:#63AC7D;opacity:0.8;">80%</p>
Text with #63AC7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #63AC7D;}
<p style="text-shadow: 3px 3px 1px #63AC7D">Text here.</p>
This text has shadow with #63AC7D color.
.textShadow {text-shadow: 3px 3px 1px #63AC7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #63AC7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #63AC7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#63AC7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#63AC7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #63AC7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #63AC7D; -webkit-box-shadow: 1px 1px 3px 2px #63AC7D; box-shadow: 1px 1px 3px 2px #63AC7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #63AC7D; -webkit-box-shadow: 1px 1px 3px 2px #63AC7D; box-shadow:1px 1px 3px 2px #63AC7D;">
Div content here</div>
This text has color #63AC7D on black background.
This text has color #63AC7D on white background.
This text has black color on #63AC7D background.
This text has white color on #63AC7D background.