1999-04-20 12:45:30 -03:00
|
|
|
# Color Prefs for idle
|
|
|
|
|
|
|
|
class ColorPrefs:
|
1999-04-20 12:58:29 -03:00
|
|
|
CNormal = "black", "white" # "purple", "white"
|
|
|
|
CKeyword = "#ff7700", None
|
|
|
|
CComment = "#dd0000", None
|
|
|
|
CString = "#00aa00", None
|
|
|
|
CDefinition = "#0000ff", None
|
1999-04-20 12:45:30 -03:00
|
|
|
CHilite = "#000068", "#006868"
|
1999-04-20 12:58:29 -03:00
|
|
|
CSync = None, None # None, "#ffff00"
|
|
|
|
CTodo = None, None # None, "#cccccc"
|
|
|
|
CBreak = "#ff7777", None
|
|
|
|
CHit = "#ffffff", "#000000"
|
|
|
|
CStdIn = None, None # None, "yellow"
|
|
|
|
CStdOut = "blue", None
|
|
|
|
CStdErr = "#007700", None
|
|
|
|
CConsole = "#770000", None
|
|
|
|
CError = None, "#ff7777"
|
|
|
|
CCursor = None, "black"
|