adiknoth / 4deckradio

Multi-deck media playback for radio stations
MIT License
5 stars 2 forks source link

Play time color indicators softer colors #14

Closed JanMiddelkoop closed 11 years ago

JanMiddelkoop commented 11 years ago

The play time color indicators have such dark backgrounds, that they make the time display difficult to read. Perhaps it could be lighter colors.

adiknoth commented 11 years ago

Look for these lines in mygstreamer.c:

                update_timelabel_bg (data, time, "green");
                update_timelabel_bg (data, time, "yellow");
                update_timelabel_bg (data, time, "red");

You can replace "green", "yellow" and "red" with HTML colour codes like "#ff7f7f".

I suggest you play a bit and tell me what to put there.