Is there a way of coloring different electrodes using raw.plot according to a color map? From the docs it seems the only difference in coloring that is available is between different types of signals, ie out of the following:
it’s actually possible for epochs however, using the epoch_colors parameter. It accepts a list-of-lists, where the outer list is the number of epochs in the object, and the inner list is the number of channels. So you could in theory convert the raw to a single big epoch, then pass epoch_colors=[['r', 'g']] (assuming you have only 2 channels)
To create a single epoch you could use mne.make_fixed_length_epochs() and set duration to be the duration of your raw data.
In case your data contains some segments marked a BAD you should set reject_by_annotation=False, otherwise it will think there are no valid epochs in your data.