HEX: #A6F0B1
RGB: (166,240,177)
#A6F0B1 contains mainly green color. Web safe color of #A6F0B1 is #99FF99 (or #9F9).
#A6F0B1 color RGB value is (166,240,177).
RGB: (166,240,177) (65%,94%,69%)
R 166 of 255 = 65%
G 240 of 255 = 94%
B 177 of 255 = 69%
R + G + B ~ 76%. #A6F0B1 is quite light color.
R + G + B =
166 + 240 + 177 = 583 (100%)
R 166 of 583 ~ 28.47%
G 240 of 583 ~ 41.17%
B 177 of 583 ~ 30.36%
#A6F0B1 color CMYK value is (31,0,26,6).
CMYK: (31,0,26,6) C31M0Y26K6 (31%,0%,26%,6%) (0.31/0.00/0.26/0.06)
A6 | F0 | B1 | |
---|---|---|---|
RGB | 166 | 240 | 177 |
HSL | 129° | 71.15% | 79.61% |
HSB/HSV | 129° | 30.83% | 94.12% |
CMYK | 30.83% | 0.00% | 26.25% |
5.88% |
HEX | A6 | F0 | B1 |
Decimal | 166 | 240 | 177 |
Binary | 10100110 | 11110000 | 10110001 |
Octal | 246 | 360 | 261 |
Examples of css and html codes for elements with #A6F0B1 color. Also use rgb(166,240,177) instead hex code.
.myTextColor { color: #A6F0B1; }
<p style="color:#A6F0B1">This sample text font color is #A6F0B1.</p>
This text font color is #A6F0B1.
.myBgColor { background-color: #A6F0B1; }
<div style="background-color:#A6F0B1">Inner text</div>
This div background color is #A6F0B1.
.myBorderColor { border: 1px solid #A6F0B1; }
<div style="border:3px solid #A6F0B1">Div</div>
This div border color is #A6F0B1.
.myOpacity80 { color: #A6F0B1; opacity: 0.8; }
<p style="color:#A6F0B1;opacity:0.8;">80%</p>
Text with #A6F0B1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6F0B1;}
<p style="text-shadow: 3px 3px 1px #A6F0B1">Text here.</p>
This text has shadow with #A6F0B1 color.
.textShadow {text-shadow: 3px 3px 1px #A6F0B1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6F0B1, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6F0B1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6F0B1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6F0B1, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6F0B1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6F0B1; -webkit-box-shadow: 1px 1px 3px 2px #A6F0B1; box-shadow: 1px 1px 3px 2px #A6F0B1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6F0B1; -webkit-box-shadow: 1px 1px 3px 2px #A6F0B1; box-shadow:1px 1px 3px 2px #A6F0B1;">
Div content here</div>
This text has color #A6F0B1 on black background.
This text has color #A6F0B1 on white background.
This text has black color on #A6F0B1 background.
This text has white color on #A6F0B1 background.