HEX: #A6F598
RGB: (166,245,152)
#A6F598 contains mainly green color. Web safe color of #A6F598 is #99FF99 (or #9F9).
#A6F598 color RGB value is (166,245,152).
RGB: (166,245,152) (65%,96%,60%)
R 166 of 255 = 65%
G 245 of 255 = 96%
B 152 of 255 = 60%
R + G + B ~ 74%. #A6F598 is quite light color.
R + G + B =
166 + 245 + 152 = 563 (100%)
R 166 of 563 ~ 29.48%
G 245 of 563 ~ 43.52%
B 152 of 563 ~ 27%
#A6F598 color CMYK value is (32,0,38,4).
CMYK: (32,0,38,4) C32M0Y38K4 (32%,0%,38%,4%) (0.32/0.00/0.38/0.04)
A6 | F5 | 98 | |
---|---|---|---|
RGB | 166 | 245 | 152 |
HSL | 111° | 82.30% | 77.84% |
HSB/HSV | 111° | 37.96% | 96.08% |
CMYK | 32.24% | 0.00% | 37.96% |
3.92% |
HEX | A6 | F5 | 98 |
Decimal | 166 | 245 | 152 |
Binary | 10100110 | 11110101 | 10011000 |
Octal | 246 | 365 | 230 |
Examples of css and html codes for elements with #A6F598 color. Also use rgb(166,245,152) instead hex code.
.myTextColor { color: #A6F598; }
<p style="color:#A6F598">This sample text font color is #A6F598.</p>
This text font color is #A6F598.
.myBgColor { background-color: #A6F598; }
<div style="background-color:#A6F598">Inner text</div>
This div background color is #A6F598.
.myBorderColor { border: 1px solid #A6F598; }
<div style="border:3px solid #A6F598">Div</div>
This div border color is #A6F598.
.myOpacity80 { color: #A6F598; opacity: 0.8; }
<p style="color:#A6F598;opacity:0.8;">80%</p>
Text with #A6F598 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6F598;}
<p style="text-shadow: 3px 3px 1px #A6F598">Text here.</p>
This text has shadow with #A6F598 color.
.textShadow {text-shadow: 3px 3px 1px #A6F598, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6F598, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6F598 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6F598, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6F598, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6F598 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6F598; -webkit-box-shadow: 1px 1px 3px 2px #A6F598; box-shadow: 1px 1px 3px 2px #A6F598; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6F598; -webkit-box-shadow: 1px 1px 3px 2px #A6F598; box-shadow:1px 1px 3px 2px #A6F598;">
Div content here</div>
This text has color #A6F598 on black background.
This text has color #A6F598 on white background.
This text has black color on #A6F598 background.
This text has white color on #A6F598 background.