summaryrefslogtreecommitdiffstats
path: root/Tools/idle/IdlePrefs.py
blob: e761ba0250b7fb3d306f50717f47e2a4a9dab879 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Color Prefs for idle

class ColorPrefs:
    CNormal     = "black", "white"      # "purple", "white"
    CKeyword    = "#ff7700", None
    CComment    = "#dd0000", None
    CString     = "#00aa00", None
    CDefinition = "#0000ff", None
    CHilite     = "#000068", "#006868"
    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     = "red", None
    CConsole    = "#770000", None
    CError      = None, "#ff7777"
    CCursor     = None, "black"