According to Wikipedia, violet is (127, 0, 255), so this should work: tuple((255-(i+1)//2, 0, i) for i in range(256))
-Christopher On Fri, Jul 13, 2012 at 12:20 PM, Ricardo Franco <[email protected]>wrote: > I would like to know how to build a specifc color palette, its the > red-to-violet color palette. > To build the grayscale color palette I use: > > grayscale_palette = tuple([(i, i, i) for i in range(256)]) > > How do to get the red-to-violet color palette? > > -- > Ricardo Franco Andrade @ricardokrieg > > ( Game | Desktop | Web ) Developer > > email: [email protected] > contact: +55 (86) 9958 9725 > +55 (86) 9436 0830 > twitter: twitter.com/ricardokrieg > facebooK: https://www.facebook.com/krieg.ricardo > github: https://github.com/ricardokrieg > >
