HEX: #97D396
RGB: (151,211,150)
#97D396 contains mainly green color. Web safe color of #97D396 is #99CC99 (or #9C9).
#97D396 color RGB value is (151,211,150).
RGB: (151,211,150) (59%,83%,59%)
R 151 of 255 = 59%
G 211 of 255 = 83%
B 150 of 255 = 59%
R + G + B ~ 67%. #97D396 is quite light color.
R + G + B =
151 + 211 + 150 = 512 (100%)
R 151 of 512 ~ 29.49%
G 211 of 512 ~ 41.21%
B 150 of 512 ~ 29.3%
#97D396 color CMYK value is (28,0,29,17).
CMYK: (28,0,29,17) C28M0Y29K17 (28%,0%,29%,17%) (0.28/0.00/0.29/0.17)
97 | D3 | 96 | |
---|---|---|---|
RGB | 151 | 211 | 150 |
HSL | 119° | 40.94% | 70.78% |
HSB/HSV | 119° | 28.91% | 82.75% |
CMYK | 28.44% | 0.00% | 28.91% |
17.25% |
HEX | 97 | D3 | 96 |
Decimal | 151 | 211 | 150 |
Binary | 10010111 | 11010011 | 10010110 |
Octal | 227 | 323 | 226 |
Examples of css and html codes for elements with #97D396 color. Also use rgb(151,211,150) instead hex code.
.myTextColor { color: #97D396; }
<p style="color:#97D396">This sample text font color is #97D396.</p>
This text font color is #97D396.
.myBgColor { background-color: #97D396; }
<div style="background-color:#97D396">Inner text</div>
This div background color is #97D396.
.myBorderColor { border: 1px solid #97D396; }
<div style="border:3px solid #97D396">Div</div>
This div border color is #97D396.
.myOpacity80 { color: #97D396; opacity: 0.8; }
<p style="color:#97D396;opacity:0.8;">80%</p>
Text with #97D396 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #97D396;}
<p style="text-shadow: 3px 3px 1px #97D396">Text here.</p>
This text has shadow with #97D396 color.
.textShadow {text-shadow: 3px 3px 1px #97D396, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #97D396, 5px 5px 20px red">Text here.</p>
This text has shadow with #97D396 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#97D396, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#97D396, Direction=45, Strength=4)">Text</p>
This text has shadow with #97D396 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #97D396; -webkit-box-shadow: 1px 1px 3px 2px #97D396; box-shadow: 1px 1px 3px 2px #97D396; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #97D396; -webkit-box-shadow: 1px 1px 3px 2px #97D396; box-shadow:1px 1px 3px 2px #97D396;">
Div content here</div>
This text has color #97D396 on black background.
This text has color #97D396 on white background.
This text has black color on #97D396 background.
This text has white color on #97D396 background.