HEX: #63A05F
RGB: (99,160,95)
#63A05F contains mainly green color. Web safe color of #63A05F is #669966 (or #696).
#63A05F color RGB value is (99,160,95).
RGB: (99,160,95) (39%,63%,37%)
R 99 of 255 = 39%
G 160 of 255 = 63%
B 95 of 255 = 37%
R + G + B ~ 46%. #63A05F is middle color (not dark and not light).
R + G + B =
99 + 160 + 95 = 354 (100%)
R 99 of 354 ~ 27.97%
G 160 of 354 ~ 45.2%
B 95 of 354 ~ 26.84%
#63A05F color CMYK value is (38,0,41,37).
CMYK: (38,0,41,37) C38M0Y41K37 (38%,0%,41%,37%) (0.38/0.00/0.41/0.37)
63 | A0 | 5F | |
---|---|---|---|
RGB | 99 | 160 | 95 |
HSL | 116° | 25.49% | 50.00% |
HSB/HSV | 116° | 40.63% | 62.75% |
CMYK | 38.13% | 0.00% | 40.63% |
37.25% |
HEX | 63 | A0 | 5F |
Decimal | 99 | 160 | 95 |
Binary | 1100011 | 10100000 | 1011111 |
Octal | 143 | 240 | 137 |
Examples of css and html codes for elements with #63A05F color. Also use rgb(99,160,95) instead hex code.
.myTextColor { color: #63A05F; }
<p style="color:#63A05F">This sample text font color is #63A05F.</p>
This text font color is #63A05F.
.myBgColor { background-color: #63A05F; }
<div style="background-color:#63A05F">Inner text</div>
This div background color is #63A05F.
.myBorderColor { border: 1px solid #63A05F; }
<div style="border:3px solid #63A05F">Div</div>
This div border color is #63A05F.
.myOpacity80 { color: #63A05F; opacity: 0.8; }
<p style="color:#63A05F;opacity:0.8;">80%</p>
Text with #63A05F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #63A05F;}
<p style="text-shadow: 3px 3px 1px #63A05F">Text here.</p>
This text has shadow with #63A05F color.
.textShadow {text-shadow: 3px 3px 1px #63A05F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #63A05F, 5px 5px 20px red">Text here.</p>
This text has shadow with #63A05F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#63A05F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#63A05F, Direction=45, Strength=4)">Text</p>
This text has shadow with #63A05F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #63A05F; -webkit-box-shadow: 1px 1px 3px 2px #63A05F; box-shadow: 1px 1px 3px 2px #63A05F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #63A05F; -webkit-box-shadow: 1px 1px 3px 2px #63A05F; box-shadow:1px 1px 3px 2px #63A05F;">
Div content here</div>
This text has color #63A05F on black background.
This text has color #63A05F on white background.
This text has black color on #63A05F background.
This text has white color on #63A05F background.