HEX: #6BD595
RGB: (107,213,149)
#6BD595 contains mainly green color. Web safe color of #6BD595 is #66CC99 (or #6C9).
#6BD595 color RGB value is (107,213,149).
RGB: (107,213,149) (42%,84%,58%)
R 107 of 255 = 42%
G 213 of 255 = 84%
B 149 of 255 = 58%
R + G + B ~ 61%. #6BD595 is quite light color.
R + G + B =
107 + 213 + 149 = 469 (100%)
R 107 of 469 ~ 22.81%
G 213 of 469 ~ 45.42%
B 149 of 469 ~ 31.77%
#6BD595 color CMYK value is (50,0,30,16).
CMYK: (50,0,30,16) C50M0Y30K16 (50%,0%,30%,16%) (0.50/0.00/0.30/0.16)
6B | D5 | 95 | |
---|---|---|---|
RGB | 107 | 213 | 149 |
HSL | 144° | 55.79% | 62.75% |
HSB/HSV | 144° | 49.77% | 83.53% |
CMYK | 49.77% | 0.00% | 30.05% |
16.47% |
HEX | 6B | D5 | 95 |
Decimal | 107 | 213 | 149 |
Binary | 1101011 | 11010101 | 10010101 |
Octal | 153 | 325 | 225 |
Examples of css and html codes for elements with #6BD595 color. Also use rgb(107,213,149) instead hex code.
.myTextColor { color: #6BD595; }
<p style="color:#6BD595">This sample text font color is #6BD595.</p>
This text font color is #6BD595.
.myBgColor { background-color: #6BD595; }
<div style="background-color:#6BD595">Inner text</div>
This div background color is #6BD595.
.myBorderColor { border: 1px solid #6BD595; }
<div style="border:3px solid #6BD595">Div</div>
This div border color is #6BD595.
.myOpacity80 { color: #6BD595; opacity: 0.8; }
<p style="color:#6BD595;opacity:0.8;">80%</p>
Text with #6BD595 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6BD595;}
<p style="text-shadow: 3px 3px 1px #6BD595">Text here.</p>
This text has shadow with #6BD595 color.
.textShadow {text-shadow: 3px 3px 1px #6BD595, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6BD595, 5px 5px 20px red">Text here.</p>
This text has shadow with #6BD595 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6BD595, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6BD595, Direction=45, Strength=4)">Text</p>
This text has shadow with #6BD595 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6BD595; -webkit-box-shadow: 1px 1px 3px 2px #6BD595; box-shadow: 1px 1px 3px 2px #6BD595; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6BD595; -webkit-box-shadow: 1px 1px 3px 2px #6BD595; box-shadow:1px 1px 3px 2px #6BD595;">
Div content here</div>
This text has color #6BD595 on black background.
This text has color #6BD595 on white background.
This text has black color on #6BD595 background.
This text has white color on #6BD595 background.