~marco-crosio/pyroom/austosave

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
styles = {
    'darkgreen': {
        'name': 'darkgreen',
        'background': '#000000',
        'foreground': '#007700',
        'lines': '#001100',
        'border': '#001100',
        'info': '#007700',
        'font': 'Droid Sans Mono',
        'fontsize': 12,
        'padding': 6,
        'size': [0.6, 0.95],
    },

     'green': {
        'name': 'green',
        'background': '#000000',
        'foreground': '#00ff00',
        'lines': '#007700',
        'border': '#003300',
        'info': '#00ff00',
        'font': 'Droid Sans Mono',
        'fontsize': 12,
        'padding': 6,
        'size': [0.6, 0.95],
    },

    'blue': {
        'name': 'blue',
        'background': '#0000ff',
        'foreground': '#ffffff',
        'lines': '#5555ff',
        'border': '#3333ff',
        'info': '#ffffff',
        'font': 'Droid Sans Mono',
        'fontsize': 12,
        'padding': 6,
        'size': [0.6, 0.95],
    },

    'c64': {
        'name' : 'c64',
        'background' : '#10009C',
        'foreground' : '#9C9CFF',
        'lines' : '#3B3BBD',
        'border' : '#10009C',
        'info' : '#7373FF',
        'font' : 'DejaVu Sans Mono',
        'fontsize' : 12,
        'padding' : 8,
        'size' : [0.45, 0.75] # [width, height]
    },

    'locontrast' : {
        'name' : 'locontrast',
        'background' : '#6F6F6F',
        'foreground' : '#212121',
        'lines' : '#2F455B',
        'border' : '#6F6F6F',
        'info' : '#C44700',
        'font' : 'DejaVu Sans Mono',
        'fontsize' : 9,
        'padding' : 8,
        'size' : [0.45, 0.75] # [width, height]
        },

    'cupid' : {
        'name' : 'cupid',
        'background' : '#12000B',
        'foreground' : '#D68C8B',
        'lines' : '#733B44',
        'border' : '#12000B',
        'info' : '#DEB8A6',
        'font' : 'DejaVu Sans Mono',
        'fontsize' : 9,
        'padding' : 8,
        'size' : [0.45, 0.75] # [width, height]
        },

    'banker' : {
        'name' : 'banker',
        'background' : '#111D00',
        'foreground' : '#DED291',
        'lines' : '#7D9635',
        'border' : '#111D00',
        'info' : '#7D9635',
        'font' : 'DejaVu Sans Mono',
        'fontsize' : 9,
        'padding' : 8,
        'size' : [0.45, 0.75] # [width, height]
        },

    'amber' : {
        'name' : 'amber',
        'background' : '#151000',
        'foreground' : '#AE8400',
        'lines' : '#5E4803',
        'border' : '#151000',
        'info' : '#AE8400',
        'font' : 'DejaVu Sans Mono',
        "fontsize": 9,
        'padding' : 8,
        'size' : [0.45, 0.75] # [width, height]
        },
    }