HEX: #95F9BE
RGB: (149,249,190)
#95F9BE contains mainly green and blue colors. Web safe color of #95F9BE is #99FFCC (or #9FC).
#95F9BE color RGB value is (149,249,190).
RGB: (149,249,190) (58%,98%,75%)
R 149 of 255 = 58%
G 249 of 255 = 98%
B 190 of 255 = 75%
R + G + B ~ 77%. #95F9BE is quite light color.
R + G + B =
149 + 249 + 190 = 588 (100%)
R 149 of 588 ~ 25.34%
G 249 of 588 ~ 42.35%
B 190 of 588 ~ 32.31%
#95F9BE color CMYK value is (40,0,24,2).
CMYK: (40,0,24,2) C40M0Y24K2 (40%,0%,24%,2%) (0.40/0.00/0.24/0.02)
95 | F9 | BE | |
---|---|---|---|
RGB | 149 | 249 | 190 |
HSL | 145° | 89.29% | 78.04% |
HSB/HSV | 145° | 40.16% | 97.65% |
CMYK | 40.16% | 0.00% | 23.69% |
2.35% |
HEX | 95 | F9 | BE |
Decimal | 149 | 249 | 190 |
Binary | 10010101 | 11111001 | 10111110 |
Octal | 225 | 371 | 276 |
Examples of css and html codes for elements with #95F9BE color. Also use rgb(149,249,190) instead hex code.
.myTextColor { color: #95F9BE; }
<p style="color:#95F9BE">This sample text font color is #95F9BE.</p>
This text font color is #95F9BE.
.myBgColor { background-color: #95F9BE; }
<div style="background-color:#95F9BE">Inner text</div>
This div background color is #95F9BE.
.myBorderColor { border: 1px solid #95F9BE; }
<div style="border:3px solid #95F9BE">Div</div>
This div border color is #95F9BE.
.myOpacity80 { color: #95F9BE; opacity: 0.8; }
<p style="color:#95F9BE;opacity:0.8;">80%</p>
Text with #95F9BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #95F9BE;}
<p style="text-shadow: 3px 3px 1px #95F9BE">Text here.</p>
This text has shadow with #95F9BE color.
.textShadow {text-shadow: 3px 3px 1px #95F9BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #95F9BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #95F9BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#95F9BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#95F9BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #95F9BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #95F9BE; -webkit-box-shadow: 1px 1px 3px 2px #95F9BE; box-shadow: 1px 1px 3px 2px #95F9BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #95F9BE; -webkit-box-shadow: 1px 1px 3px 2px #95F9BE; box-shadow:1px 1px 3px 2px #95F9BE;">
Div content here</div>
This text has color #95F9BE on black background.
This text has color #95F9BE on white background.
This text has black color on #95F9BE background.
This text has white color on #95F9BE background.