HEX: #6DE7AF
RGB: (109,231,175)
#6DE7AF contains mainly green and blue colors. Web safe color of #6DE7AF is #66FF99 (or #6F9).
#6DE7AF color RGB value is (109,231,175).
RGB: (109,231,175) (43%,91%,69%)
R 109 of 255 = 43%
G 231 of 255 = 91%
B 175 of 255 = 69%
R + G + B ~ 68%. #6DE7AF is quite light color.
R + G + B =
109 + 231 + 175 = 515 (100%)
R 109 of 515 ~ 21.17%
G 231 of 515 ~ 44.85%
B 175 of 515 ~ 33.98%
#6DE7AF color CMYK value is (53,0,24,9).
CMYK: (53,0,24,9) C53M0Y24K9 (53%,0%,24%,9%) (0.53/0.00/0.24/0.09)
6D | E7 | AF | |
---|---|---|---|
RGB | 109 | 231 | 175 |
HSL | 152° | 71.76% | 66.67% |
HSB/HSV | 152° | 52.81% | 90.59% |
CMYK | 52.81% | 0.00% | 24.24% |
9.41% |
HEX | 6D | E7 | AF |
Decimal | 109 | 231 | 175 |
Binary | 1101101 | 11100111 | 10101111 |
Octal | 155 | 347 | 257 |
Examples of css and html codes for elements with #6DE7AF color. Also use rgb(109,231,175) instead hex code.
.myTextColor { color: #6DE7AF; }
<p style="color:#6DE7AF">This sample text font color is #6DE7AF.</p>
This text font color is #6DE7AF.
.myBgColor { background-color: #6DE7AF; }
<div style="background-color:#6DE7AF">Inner text</div>
This div background color is #6DE7AF.
.myBorderColor { border: 1px solid #6DE7AF; }
<div style="border:3px solid #6DE7AF">Div</div>
This div border color is #6DE7AF.
.myOpacity80 { color: #6DE7AF; opacity: 0.8; }
<p style="color:#6DE7AF;opacity:0.8;">80%</p>
Text with #6DE7AF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6DE7AF;}
<p style="text-shadow: 3px 3px 1px #6DE7AF">Text here.</p>
This text has shadow with #6DE7AF color.
.textShadow {text-shadow: 3px 3px 1px #6DE7AF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6DE7AF, 5px 5px 20px red">Text here.</p>
This text has shadow with #6DE7AF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6DE7AF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6DE7AF, Direction=45, Strength=4)">Text</p>
This text has shadow with #6DE7AF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6DE7AF; -webkit-box-shadow: 1px 1px 3px 2px #6DE7AF; box-shadow: 1px 1px 3px 2px #6DE7AF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6DE7AF; -webkit-box-shadow: 1px 1px 3px 2px #6DE7AF; box-shadow:1px 1px 3px 2px #6DE7AF;">
Div content here</div>
This text has color #6DE7AF on black background.
This text has color #6DE7AF on white background.
This text has black color on #6DE7AF background.
This text has white color on #6DE7AF background.