HEX: #6AB27D
RGB: (106,178,125)
#6AB27D contains mainly green and blue colors. Web safe color of #6AB27D is #669966 (or #696).
#6AB27D color RGB value is (106,178,125).
RGB: (106,178,125) (42%,70%,49%)
R 106 of 255 = 42%
G 178 of 255 = 70%
B 125 of 255 = 49%
R + G + B ~ 54%. #6AB27D is middle color (not dark and not light).
R + G + B =
106 + 178 + 125 = 409 (100%)
R 106 of 409 ~ 25.92%
G 178 of 409 ~ 43.52%
B 125 of 409 ~ 30.56%
#6AB27D color CMYK value is (40,0,30,30).
CMYK: (40,0,30,30) C40M0Y30K30 (40%,0%,30%,30%) (0.40/0.00/0.30/0.30)
6A | B2 | 7D | |
---|---|---|---|
RGB | 106 | 178 | 125 |
HSL | 136° | 31.86% | 55.69% |
HSB/HSV | 136° | 40.45% | 69.80% |
CMYK | 40.45% | 0.00% | 29.78% |
30.20% |
HEX | 6A | B2 | 7D |
Decimal | 106 | 178 | 125 |
Binary | 1101010 | 10110010 | 1111101 |
Octal | 152 | 262 | 175 |
Examples of css and html codes for elements with #6AB27D color. Also use rgb(106,178,125) instead hex code.
.myTextColor { color: #6AB27D; }
<p style="color:#6AB27D">This sample text font color is #6AB27D.</p>
This text font color is #6AB27D.
.myBgColor { background-color: #6AB27D; }
<div style="background-color:#6AB27D">Inner text</div>
This div background color is #6AB27D.
.myBorderColor { border: 1px solid #6AB27D; }
<div style="border:3px solid #6AB27D">Div</div>
This div border color is #6AB27D.
.myOpacity80 { color: #6AB27D; opacity: 0.8; }
<p style="color:#6AB27D;opacity:0.8;">80%</p>
Text with #6AB27D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6AB27D;}
<p style="text-shadow: 3px 3px 1px #6AB27D">Text here.</p>
This text has shadow with #6AB27D color.
.textShadow {text-shadow: 3px 3px 1px #6AB27D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6AB27D, 5px 5px 20px red">Text here.</p>
This text has shadow with #6AB27D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6AB27D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6AB27D, Direction=45, Strength=4)">Text</p>
This text has shadow with #6AB27D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6AB27D; -webkit-box-shadow: 1px 1px 3px 2px #6AB27D; box-shadow: 1px 1px 3px 2px #6AB27D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6AB27D; -webkit-box-shadow: 1px 1px 3px 2px #6AB27D; box-shadow:1px 1px 3px 2px #6AB27D;">
Div content here</div>
This text has color #6AB27D on black background.
This text has color #6AB27D on white background.
This text has black color on #6AB27D background.
This text has white color on #6AB27D background.