HEX: #63946D
RGB: (99,148,109)
#63946D contains red, green and blue colors in about the same proportion. Web safe color of #63946D is #669966 (or #696).
#63946D color RGB value is (99,148,109).
RGB: (99,148,109) (39%,58%,43%)
R 99 of 255 = 39%
G 148 of 255 = 58%
B 109 of 255 = 43%
R + G + B ~ 47%. #63946D is middle color (not dark and not light).
R + G + B =
99 + 148 + 109 = 356 (100%)
R 99 of 356 ~ 27.81%
G 148 of 356 ~ 41.57%
B 109 of 356 ~ 30.62%
#63946D color CMYK value is (33,0,26,42).
CMYK: (33,0,26,42) C33M0Y26K42 (33%,0%,26%,42%) (0.33/0.00/0.26/0.42)
63 | 94 | 6D | |
---|---|---|---|
RGB | 99 | 148 | 109 |
HSL | 132° | 19.84% | 48.43% |
HSB/HSV | 132° | 33.11% | 58.04% |
CMYK | 33.11% | 0.00% | 26.35% |
41.96% |
HEX | 63 | 94 | 6D |
Decimal | 99 | 148 | 109 |
Binary | 1100011 | 10010100 | 1101101 |
Octal | 143 | 224 | 155 |
Examples of css and html codes for elements with #63946D color. Also use rgb(99,148,109) instead hex code.
.myTextColor { color: #63946D; }
<p style="color:#63946D">This sample text font color is #63946D.</p>
This text font color is #63946D.
.myBgColor { background-color: #63946D; }
<div style="background-color:#63946D">Inner text</div>
This div background color is #63946D.
.myBorderColor { border: 1px solid #63946D; }
<div style="border:3px solid #63946D">Div</div>
This div border color is #63946D.
.myOpacity80 { color: #63946D; opacity: 0.8; }
<p style="color:#63946D;opacity:0.8;">80%</p>
Text with #63946D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #63946D;}
<p style="text-shadow: 3px 3px 1px #63946D">Text here.</p>
This text has shadow with #63946D color.
.textShadow {text-shadow: 3px 3px 1px #63946D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #63946D, 5px 5px 20px red">Text here.</p>
This text has shadow with #63946D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#63946D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#63946D, Direction=45, Strength=4)">Text</p>
This text has shadow with #63946D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #63946D; -webkit-box-shadow: 1px 1px 3px 2px #63946D; box-shadow: 1px 1px 3px 2px #63946D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #63946D; -webkit-box-shadow: 1px 1px 3px 2px #63946D; box-shadow:1px 1px 3px 2px #63946D;">
Div content here</div>
This text has color #63946D on black background.
This text has color #63946D on white background.
This text has black color on #63946D background.
This text has white color on #63946D background.