HEX: #0AEDC6
RGB: (10,237,198)
#0AEDC6 contains mainly green and blue colors. Web safe color of #0AEDC6 is #00FFCC (or #0FC).
#0AEDC6 color RGB value is (10,237,198).
RGB: (10,237,198) (4%,93%,78%)
R 10 of 255 = 4%
G 237 of 255 = 93%
B 198 of 255 = 78%
R + G + B ~ 58%. #0AEDC6 is middle color (not dark and not light).
R + G + B =
10 + 237 + 198 = 445 (100%)
R 10 of 445 ~ 2.25%
G 237 of 445 ~ 53.26%
B 198 of 445 ~ 44.49%
#0AEDC6 color CMYK value is (96,0,16,7).
CMYK: (96,0,16,7) C96M0Y16K7 (96%,0%,16%,7%) (0.96/0.00/0.16/0.07)
0A | ED | C6 | |
---|---|---|---|
RGB | 10 | 237 | 198 |
HSL | 170° | 91.90% | 48.43% |
HSB/HSV | 170° | 95.78% | 92.94% |
CMYK | 95.78% | 0.00% | 16.46% |
7.06% |
HEX | 0A | ED | C6 |
Decimal | 10 | 237 | 198 |
Binary | 1010 | 11101101 | 11000110 |
Octal | 12 | 355 | 306 |
Examples of css and html codes for elements with #0AEDC6 color. Also use rgb(10,237,198) instead hex code.
.myTextColor { color: #0AEDC6; }
<p style="color:#0AEDC6">This sample text font color is #0AEDC6.</p>
This text font color is #0AEDC6.
.myBgColor { background-color: #0AEDC6; }
<div style="background-color:#0AEDC6">Inner text</div>
This div background color is #0AEDC6.
.myBorderColor { border: 1px solid #0AEDC6; }
<div style="border:3px solid #0AEDC6">Div</div>
This div border color is #0AEDC6.
.myOpacity80 { color: #0AEDC6; opacity: 0.8; }
<p style="color:#0AEDC6;opacity:0.8;">80%</p>
Text with #0AEDC6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #0AEDC6;}
<p style="text-shadow: 3px 3px 1px #0AEDC6">Text here.</p>
This text has shadow with #0AEDC6 color.
.textShadow {text-shadow: 3px 3px 1px #0AEDC6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #0AEDC6, 5px 5px 20px red">Text here.</p>
This text has shadow with #0AEDC6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#0AEDC6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#0AEDC6, Direction=45, Strength=4)">Text</p>
This text has shadow with #0AEDC6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #0AEDC6; -webkit-box-shadow: 1px 1px 3px 2px #0AEDC6; box-shadow: 1px 1px 3px 2px #0AEDC6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #0AEDC6; -webkit-box-shadow: 1px 1px 3px 2px #0AEDC6; box-shadow:1px 1px 3px 2px #0AEDC6;">
Div content here</div>
This text has color #0AEDC6 on black background.
This text has color #0AEDC6 on white background.
This text has black color on #0AEDC6 background.
This text has white color on #0AEDC6 background.