RGB for PASTEL BLUE

Hexadecimal to RGB
Color Name
R
G
B
Hexadecimal
PASTEL BLUE
174
198
207
#AE C6 CF
<div style='height: 25px; background-color:#aec6cf' ></div>

Gradient Channels

Gradient
HTML
<div style='height:50px;background-image: linear-gradient(to bottom, white,#aec6cf);'></div>
<div style='height:50px;background-image: linear-gradient(to top, white,#aec6cf);'></div>
<div style='height:50px;background-image: linear-gradient(to left, white,#aec6cf);'></div>
<div style='height:50px;background-image: linear-gradient(to right, white,#aec6cf);'></div>

Usage:

  • We can change color white with any other color to generate our required gradient.
  • HTML is not case sensitive therefore we can use upper as well lower case letters in Hexadecimal codes.
  • Div height may be less or greater than 50px depending on the requirements.
  • If div contains other HTML elements or written contents than there also no need to set height of div tag.
  • A better approach to do this is using CSS class.
  • Such as:
  • < style > 
      .gradientDiv { 
        height: 50px; 
        background-image: linear-gradient(to right, white,#aec6cf); 
      }
    < /style >
  • <div class='gradientDiv'></div>

RGB Channel Detail

75300%
77700%
78600%

CMYK Channel Detail

13%
3%
0%
97%

RGB Variants

Available Variant by Red channel

Available Variant by Green channel

Available Variant by Blue channel

Comments
Login to TRACK of Comments.