-1

I want a colormap that transitions slowly from white to red.

I have not found any colormaps that already do this online. If you guys know of one could you let me know?

Additionally, if there isn't one already made, how would I go about coding this? Thanks.

Jake P
  • 480
  • 3
  • 19
Superwiz1
  • 81
  • 2
  • 10

1 Answers1

4

"Reds" under sequential colormaps Colormaps

Jake P
  • 480
  • 3
  • 19
  • Thanks! Reds seems to do the trick – Superwiz1 Aug 06 '19 at 17:34
  • 6
    For Reds, the color for zero is actually slightly off white and becomes dark for higher values. If anyone needs to get something going white to red, and no more then you could create a camp with rgb values of `(1, 1-x, 1-x)` where x ranges from 0 to 1. – Jabbath Jan 08 '21 at 01:00