HEX: #97ACEE
RGB: (151,172,238)
#97ACEE contains mainly blue color. Web safe color of #97ACEE is #9999FF (or #99F).
#97ACEE color RGB value is (151,172,238).
RGB: (151,172,238) (59%,67%,93%)
R 151 of 255 = 59%
G 172 of 255 = 67%
B 238 of 255 = 93%
R + G + B ~ 73%. #97ACEE is quite light color.
R + G + B =
151 + 172 + 238 = 561 (100%)
R 151 of 561 ~ 26.92%
G 172 of 561 ~ 30.66%
B 238 of 561 ~ 42.42%
#97ACEE color CMYK value is (37,28,0,7).
CMYK: (37,28,0,7) C37M28Y0K7 (37%,28%,0%,7%) (0.37/0.28/0.00/0.07)
97 | AC | EE | |
---|---|---|---|
RGB | 151 | 172 | 238 |
HSL | 226° | 71.90% | 76.27% |
HSB/HSV | 226° | 36.55% | 93.33% |
CMYK | 36.55% | 27.73% | 0.00% |
6.67% |
HEX | 97 | AC | EE |
Decimal | 151 | 172 | 238 |
Binary | 10010111 | 10101100 | 11101110 |
Octal | 227 | 254 | 356 |
Examples of css and html codes for elements with #97ACEE color. Also use rgb(151,172,238) instead hex code.
.myTextColor { color: #97ACEE; }
<p style="color:#97ACEE">This sample text font color is #97ACEE.</p>
This text font color is #97ACEE.
.myBgColor { background-color: #97ACEE; }
<div style="background-color:#97ACEE">Inner text</div>
This div background color is #97ACEE.
.myBorderColor { border: 1px solid #97ACEE; }
<div style="border:3px solid #97ACEE">Div</div>
This div border color is #97ACEE.
.myOpacity80 { color: #97ACEE; opacity: 0.8; }
<p style="color:#97ACEE;opacity:0.8;">80%</p>
Text with #97ACEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #97ACEE;}
<p style="text-shadow: 3px 3px 1px #97ACEE">Text here.</p>
This text has shadow with #97ACEE color.
.textShadow {text-shadow: 3px 3px 1px #97ACEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #97ACEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #97ACEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#97ACEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#97ACEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #97ACEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #97ACEE; -webkit-box-shadow: 1px 1px 3px 2px #97ACEE; box-shadow: 1px 1px 3px 2px #97ACEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #97ACEE; -webkit-box-shadow: 1px 1px 3px 2px #97ACEE; box-shadow:1px 1px 3px 2px #97ACEE;">
Div content here</div>
This text has color #97ACEE on black background.
This text has color #97ACEE on white background.
This text has black color on #97ACEE background.
This text has white color on #97ACEE background.