HEX: #95FD4A
RGB: (149,253,74)
#95FD4A contains mainly green color. Web safe color of #95FD4A is #99FF33 (or #9F3).
#95FD4A color RGB value is (149,253,74).
RGB: (149,253,74) (58%,99%,29%)
R 149 of 255 = 58%
G 253 of 255 = 99%
B 74 of 255 = 29%
R + G + B ~ 62%. #95FD4A is quite light color.
R + G + B =
149 + 253 + 74 = 476 (100%)
R 149 of 476 ~ 31.3%
G 253 of 476 ~ 53.15%
B 74 of 476 ~ 15.55%
#95FD4A color CMYK value is (41,0,71,1).
CMYK: (41,0,71,1) C41M0Y71K1 (41%,0%,71%,1%) (0.41/0.00/0.71/0.01)
95 | FD | 4A | |
---|---|---|---|
RGB | 149 | 253 | 74 |
HSL | 95° | 97.81% | 64.12% |
HSB/HSV | 95° | 70.75% | 99.22% |
CMYK | 41.11% | 0.00% | 70.75% |
0.78% |
HEX | 95 | FD | 4A |
Decimal | 149 | 253 | 74 |
Binary | 10010101 | 11111101 | 1001010 |
Octal | 225 | 375 | 112 |
Examples of css and html codes for elements with #95FD4A color. Also use rgb(149,253,74) instead hex code.
.myTextColor { color: #95FD4A; }
<p style="color:#95FD4A">This sample text font color is #95FD4A.</p>
This text font color is #95FD4A.
.myBgColor { background-color: #95FD4A; }
<div style="background-color:#95FD4A">Inner text</div>
This div background color is #95FD4A.
.myBorderColor { border: 1px solid #95FD4A; }
<div style="border:3px solid #95FD4A">Div</div>
This div border color is #95FD4A.
.myOpacity80 { color: #95FD4A; opacity: 0.8; }
<p style="color:#95FD4A;opacity:0.8;">80%</p>
Text with #95FD4A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #95FD4A;}
<p style="text-shadow: 3px 3px 1px #95FD4A">Text here.</p>
This text has shadow with #95FD4A color.
.textShadow {text-shadow: 3px 3px 1px #95FD4A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #95FD4A, 5px 5px 20px red">Text here.</p>
This text has shadow with #95FD4A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#95FD4A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#95FD4A, Direction=45, Strength=4)">Text</p>
This text has shadow with #95FD4A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #95FD4A; -webkit-box-shadow: 1px 1px 3px 2px #95FD4A; box-shadow: 1px 1px 3px 2px #95FD4A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #95FD4A; -webkit-box-shadow: 1px 1px 3px 2px #95FD4A; box-shadow:1px 1px 3px 2px #95FD4A;">
Div content here</div>
This text has color #95FD4A on black background.
This text has color #95FD4A on white background.
This text has black color on #95FD4A background.
This text has white color on #95FD4A background.