Pink Flavour Gradient

Click to copy CSS

Pink Flavour

Linear gradient Mixed tone 0 views

Colors

#800080
rgb(128, 0, 128)
hsl(300, 100%, 25%)
#FFC0CB
rgb(255, 192, 203)
hsl(350, 100%, 88%)

CSS

background: linear-gradient(90deg, #800080 0%, #ffc0cb 100%);
      

Other Formats

Tailwind
bg-gradient-to-r from-[#800080] to-[#ffc0cb]
Inline CSS
style="background: linear-gradient(90deg, #800080 0%, #ffc0cb 100%)"