HEX: #6BD087
RGB: (107,208,135)
#6BD087 contains mainly green color. Web safe color of #6BD087 is #66CC99 (or #6C9).
#6BD087 color RGB value is (107,208,135).
RGB: (107,208,135) (42%,82%,53%)
R 107 of 255 = 42%
G 208 of 255 = 82%
B 135 of 255 = 53%
R + G + B ~ 59%. #6BD087 is middle color (not dark and not light).
R + G + B =
107 + 208 + 135 = 450 (100%)
R 107 of 450 ~ 23.78%
G 208 of 450 ~ 46.22%
B 135 of 450 ~ 30%
#6BD087 color CMYK value is (49,0,35,18).
CMYK: (49,0,35,18) C49M0Y35K18 (49%,0%,35%,18%) (0.49/0.00/0.35/0.18)
6B | D0 | 87 | |
---|---|---|---|
RGB | 107 | 208 | 135 |
HSL | 137° | 51.79% | 61.76% |
HSB/HSV | 137° | 48.56% | 81.57% |
CMYK | 48.56% | 0.00% | 35.10% |
18.43% |
HEX | 6B | D0 | 87 |
Decimal | 107 | 208 | 135 |
Binary | 1101011 | 11010000 | 10000111 |
Octal | 153 | 320 | 207 |
Examples of css and html codes for elements with #6BD087 color. Also use rgb(107,208,135) instead hex code.
.myTextColor { color: #6BD087; }
<p style="color:#6BD087">This sample text font color is #6BD087.</p>
This text font color is #6BD087.
.myBgColor { background-color: #6BD087; }
<div style="background-color:#6BD087">Inner text</div>
This div background color is #6BD087.
.myBorderColor { border: 1px solid #6BD087; }
<div style="border:3px solid #6BD087">Div</div>
This div border color is #6BD087.
.myOpacity80 { color: #6BD087; opacity: 0.8; }
<p style="color:#6BD087;opacity:0.8;">80%</p>
Text with #6BD087 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6BD087;}
<p style="text-shadow: 3px 3px 1px #6BD087">Text here.</p>
This text has shadow with #6BD087 color.
.textShadow {text-shadow: 3px 3px 1px #6BD087, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6BD087, 5px 5px 20px red">Text here.</p>
This text has shadow with #6BD087 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6BD087, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6BD087, Direction=45, Strength=4)">Text</p>
This text has shadow with #6BD087 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6BD087; -webkit-box-shadow: 1px 1px 3px 2px #6BD087; box-shadow: 1px 1px 3px 2px #6BD087; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6BD087; -webkit-box-shadow: 1px 1px 3px 2px #6BD087; box-shadow:1px 1px 3px 2px #6BD087;">
Div content here</div>
This text has color #6BD087 on black background.
This text has color #6BD087 on white background.
This text has black color on #6BD087 background.
This text has white color on #6BD087 background.