HEX: #AFF6AD
RGB: (175,246,173)
#AFF6AD contains mainly green color. Web safe color of #AFF6AD is #99FF99 (or #9F9).
#AFF6AD color RGB value is (175,246,173).
RGB: (175,246,173) (69%,96%,68%)
R 175 of 255 = 69%
G 246 of 255 = 96%
B 173 of 255 = 68%
R + G + B ~ 78%. #AFF6AD is quite light color.
R + G + B =
175 + 246 + 173 = 594 (100%)
R 175 of 594 ~ 29.46%
G 246 of 594 ~ 41.41%
B 173 of 594 ~ 29.12%
#AFF6AD color CMYK value is (29,0,30,4).
CMYK: (29,0,30,4) C29M0Y30K4 (29%,0%,30%,4%) (0.29/0.00/0.30/0.04)
AF | F6 | AD | |
---|---|---|---|
RGB | 175 | 246 | 173 |
HSL | 118° | 80.22% | 82.16% |
HSB/HSV | 118° | 29.67% | 96.47% |
CMYK | 28.86% | 0.00% | 29.67% |
3.53% |
HEX | AF | F6 | AD |
Decimal | 175 | 246 | 173 |
Binary | 10101111 | 11110110 | 10101101 |
Octal | 257 | 366 | 255 |
Examples of css and html codes for elements with #AFF6AD color. Also use rgb(175,246,173) instead hex code.
.myTextColor { color: #AFF6AD; }
<p style="color:#AFF6AD">This sample text font color is #AFF6AD.</p>
This text font color is #AFF6AD.
.myBgColor { background-color: #AFF6AD; }
<div style="background-color:#AFF6AD">Inner text</div>
This div background color is #AFF6AD.
.myBorderColor { border: 1px solid #AFF6AD; }
<div style="border:3px solid #AFF6AD">Div</div>
This div border color is #AFF6AD.
.myOpacity80 { color: #AFF6AD; opacity: 0.8; }
<p style="color:#AFF6AD;opacity:0.8;">80%</p>
Text with #AFF6AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFF6AD;}
<p style="text-shadow: 3px 3px 1px #AFF6AD">Text here.</p>
This text has shadow with #AFF6AD color.
.textShadow {text-shadow: 3px 3px 1px #AFF6AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFF6AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFF6AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFF6AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFF6AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFF6AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFF6AD; -webkit-box-shadow: 1px 1px 3px 2px #AFF6AD; box-shadow: 1px 1px 3px 2px #AFF6AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFF6AD; -webkit-box-shadow: 1px 1px 3px 2px #AFF6AD; box-shadow:1px 1px 3px 2px #AFF6AD;">
Div content here</div>
This text has color #AFF6AD on black background.
This text has color #AFF6AD on white background.
This text has black color on #AFF6AD background.
This text has white color on #AFF6AD background.