well… i said i would look at this “today” in march 2013, and i finally got around to it … four years later.
just wanted to leave this note here in case someone searches for this in the future. i was able to change the colors in “Matrix.lua” as stated above - this was the color pallette that worked with my particular type of red/green colorblindness.
Matrix.default_palette = {
-- pattern matrix
out_of_bounds = { color={0x00,0x40,0x00}, text="·", val=false },
slot_empty = { color={0x00,0x00,0x00}, text="·", val=false },
slot_empty_muted = { color={0x40,0x00,0x00}, text="·", val=false },
slot_filled = { color={0xff,0xff,0x00}, text="▪", val=true },
slot_filled_muted = { color={0x40,0x00,0x00}, text="▫", val=false },
slot_master_filled = { color={0x00,0xff,0x00}, text="▪", val=true },
slot_master_empty = { color={0x00,0x40,0x00}, text="·", val=false },
-- pattern sequence (buttonstrip)
trigger_active = { color={0xff,0xff,0xff}},
trigger_loop = { color={0x40,0x40,0xff}},
trigger_back = { color={0x00,0x00,0x00}},
-- pattern sequence navigation (prev/next)
prev_seq_on = { color = {0xFF,0xFF,0xFF}, text = "▲", val=true },
prev_seq_off = { color = {0x00,0x00,0x00}, text = "▲", val=false },
next_seq_on = { color = {0xFF,0xFF,0xFF}, text = "▼", val=true },
next_seq_off = { color = {0x00,0x00,0x00}, text = "▼", val=false },
-- track navigation (prev/next)
prev_track_on = { color = {0xFF,0xFF,0xFF}, text = "◄", val=true },
prev_track_off = { color = {0x00,0x00,0x00}, text = "◄", val=false },
next_track_on = { color = {0xFF,0xFF,0xFF}, text = "►", val=true },
next_track_off = { color = {0x00,0x00,0x00}, text = "►", val=false },
}