HEX: #95F461
RGB: (149,244,97)
#95F461 contains mainly green color. Web safe color of #95F461 is #99FF66 (or #9F6).
#95F461 color RGB value is (149,244,97).
RGB: (149,244,97) (58%,96%,38%)
R 149 of 255 = 58%
G 244 of 255 = 96%
B 97 of 255 = 38%
R + G + B ~ 64%. #95F461 is quite light color.
R + G + B =
149 + 244 + 97 = 490 (100%)
R 149 of 490 ~ 30.41%
G 244 of 490 ~ 49.8%
B 97 of 490 ~ 19.8%
#95F461 color CMYK value is (39,0,60,4).
CMYK: (39,0,60,4) C39M0Y60K4 (39%,0%,60%,4%) (0.39/0.00/0.60/0.04)
95 | F4 | 61 | |
---|---|---|---|
RGB | 149 | 244 | 97 |
HSL | 99° | 86.98% | 66.86% |
HSB/HSV | 99° | 60.25% | 95.69% |
CMYK | 38.93% | 0.00% | 60.25% |
4.31% |
HEX | 95 | F4 | 61 |
Decimal | 149 | 244 | 97 |
Binary | 10010101 | 11110100 | 1100001 |
Octal | 225 | 364 | 141 |
Examples of css and html codes for elements with #95F461 color. Also use rgb(149,244,97) instead hex code.
.myTextColor { color: #95F461; }
<p style="color:#95F461">This sample text font color is #95F461.</p>
This text font color is #95F461.
.myBgColor { background-color: #95F461; }
<div style="background-color:#95F461">Inner text</div>
This div background color is #95F461.
.myBorderColor { border: 1px solid #95F461; }
<div style="border:3px solid #95F461">Div</div>
This div border color is #95F461.
.myOpacity80 { color: #95F461; opacity: 0.8; }
<p style="color:#95F461;opacity:0.8;">80%</p>
Text with #95F461 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #95F461;}
<p style="text-shadow: 3px 3px 1px #95F461">Text here.</p>
This text has shadow with #95F461 color.
.textShadow {text-shadow: 3px 3px 1px #95F461, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #95F461, 5px 5px 20px red">Text here.</p>
This text has shadow with #95F461 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#95F461, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#95F461, Direction=45, Strength=4)">Text</p>
This text has shadow with #95F461 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #95F461; -webkit-box-shadow: 1px 1px 3px 2px #95F461; box-shadow: 1px 1px 3px 2px #95F461; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #95F461; -webkit-box-shadow: 1px 1px 3px 2px #95F461; box-shadow:1px 1px 3px 2px #95F461;">
Div content here</div>
This text has color #95F461 on black background.
This text has color #95F461 on white background.
This text has black color on #95F461 background.
This text has white color on #95F461 background.