HEX: #ACC635
RGB: (172,198,53)
#ACC635 contains mainly red and green colors. Web safe color of #ACC635 is #99CC33 (or #9C3).
#ACC635 color RGB value is (172,198,53).
RGB: (172,198,53) (67%,78%,21%)
R 172 of 255 = 67%
G 198 of 255 = 78%
B 53 of 255 = 21%
R + G + B ~ 55%. #ACC635 is middle color (not dark and not light).
R + G + B =
172 + 198 + 53 = 423 (100%)
R 172 of 423 ~ 40.66%
G 198 of 423 ~ 46.81%
B 53 of 423 ~ 12.53%
#ACC635 color CMYK value is (13,0,73,22).
CMYK: (13,0,73,22) C13M0Y73K22 (13%,0%,73%,22%) (0.13/0.00/0.73/0.22)
AC | C6 | 35 | |
---|---|---|---|
RGB | 172 | 198 | 53 |
HSL | 71° | 57.77% | 49.22% |
HSB/HSV | 71° | 73.23% | 77.65% |
CMYK | 13.13% | 0.00% | 73.23% |
22.35% |
HEX | AC | C6 | 35 |
Decimal | 172 | 198 | 53 |
Binary | 10101100 | 11000110 | 110101 |
Octal | 254 | 306 | 65 |
Examples of css and html codes for elements with #ACC635 color. Also use rgb(172,198,53) instead hex code.
.myTextColor { color: #ACC635; }
<p style="color:#ACC635">This sample text font color is #ACC635.</p>
This text font color is #ACC635.
.myBgColor { background-color: #ACC635; }
<div style="background-color:#ACC635">Inner text</div>
This div background color is #ACC635.
.myBorderColor { border: 1px solid #ACC635; }
<div style="border:3px solid #ACC635">Div</div>
This div border color is #ACC635.
.myOpacity80 { color: #ACC635; opacity: 0.8; }
<p style="color:#ACC635;opacity:0.8;">80%</p>
Text with #ACC635 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACC635;}
<p style="text-shadow: 3px 3px 1px #ACC635">Text here.</p>
This text has shadow with #ACC635 color.
.textShadow {text-shadow: 3px 3px 1px #ACC635, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACC635, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACC635 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACC635, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACC635, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACC635 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACC635; -webkit-box-shadow: 1px 1px 3px 2px #ACC635; box-shadow: 1px 1px 3px 2px #ACC635; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACC635; -webkit-box-shadow: 1px 1px 3px 2px #ACC635; box-shadow:1px 1px 3px 2px #ACC635;">
Div content here</div>
This text has color #ACC635 on black background.
This text has color #ACC635 on white background.
This text has black color on #ACC635 background.
This text has white color on #ACC635 background.