~marco-crosio/pyroom/austosave

« back to all changes in this revision

Viewing changes to styles.py

  • Committer: markino
  • Date: 2008-02-18 21:32:08 UTC
  • Revision ID: markino@casseruola-20080218213208-u59318mvs4tz6ycv
Modularized and Integrated with main trunk (rev27)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
styles = {
 
2
    'darkgreen': {
 
3
        'name': 'darkgreen',
 
4
        'background': '#000000',
 
5
        'foreground': '#007700',
 
6
        'lines': '#001100',
 
7
        'border': '#001100',
 
8
        'info': '#007700',
 
9
        'font': 'Droid Sans Mono',
 
10
        'fontsize': 12,
 
11
        'padding': 6,
 
12
        'size': [0.6, 0.95],
 
13
    },
 
14
 
 
15
     'green': {
 
16
        'name': 'green',
 
17
        'background': '#000000',
 
18
        'foreground': '#00ff00',
 
19
        'lines': '#007700',
 
20
        'border': '#003300',
 
21
        'info': '#00ff00',
 
22
        'font': 'Droid Sans Mono',
 
23
        'fontsize': 12,
 
24
        'padding': 6,
 
25
        'size': [0.6, 0.95],
 
26
    },
 
27
 
 
28
    'blue': {
 
29
        'name': 'blue',
 
30
        'background': '#0000ff',
 
31
        'foreground': '#ffffff',
 
32
        'lines': '#5555ff',
 
33
        'border': '#3333ff',
 
34
        'info': '#ffffff',
 
35
        'font': 'Droid Sans Mono',
 
36
        'fontsize': 12,
 
37
        'padding': 6,
 
38
        'size': [0.6, 0.95],
 
39
    },
 
40
 
 
41
    'c64': {
 
42
        'name' : 'c64',
 
43
        'background' : '#10009C',
 
44
        'foreground' : '#9C9CFF',
 
45
        'lines' : '#3B3BBD',
 
46
        'border' : '#10009C',
 
47
        'info' : '#7373FF',
 
48
        'font' : 'DejaVu Sans Mono',
 
49
        'fontsize' : 12,
 
50
        'padding' : 8,
 
51
        'size' : [0.45, 0.75] # [width, height]
 
52
    },
 
53
 
 
54
    'locontrast' : {
 
55
        'name' : 'locontrast',
 
56
        'background' : '#6F6F6F',
 
57
        'foreground' : '#212121',
 
58
        'lines' : '#2F455B',
 
59
        'border' : '#6F6F6F',
 
60
        'info' : '#C44700',
 
61
        'font' : 'DejaVu Sans Mono',
 
62
        'fontsize' : 9,
 
63
        'padding' : 8,
 
64
        'size' : [0.45, 0.75] # [width, height]
 
65
        },
 
66
 
 
67
    'cupid' : {
 
68
        'name' : 'cupid',
 
69
        'background' : '#12000B',
 
70
        'foreground' : '#D68C8B',
 
71
        'lines' : '#733B44',
 
72
        'border' : '#12000B',
 
73
        'info' : '#DEB8A6',
 
74
        'font' : 'DejaVu Sans Mono',
 
75
        'fontsize' : 9,
 
76
        'padding' : 8,
 
77
        'size' : [0.45, 0.75] # [width, height]
 
78
        },
 
79
 
 
80
    'banker' : {
 
81
        'name' : 'banker',
 
82
        'background' : '#111D00',
 
83
        'foreground' : '#DED291',
 
84
        'lines' : '#7D9635',
 
85
        'border' : '#111D00',
 
86
        'info' : '#7D9635',
 
87
        'font' : 'DejaVu Sans Mono',
 
88
        'fontsize' : 9,
 
89
        'padding' : 8,
 
90
        'size' : [0.45, 0.75] # [width, height]
 
91
        },
 
92
 
 
93
    'amber' : {
 
94
        'name' : 'amber',
 
95
        'background' : '#151000',
 
96
        'foreground' : '#AE8400',
 
97
        'lines' : '#5E4803',
 
98
        'border' : '#151000',
 
99
        'info' : '#AE8400',
 
100
        'font' : 'DejaVu Sans Mono',
 
101
        "fontsize": 9,
 
102
        'padding' : 8,
 
103
        'size' : [0.45, 0.75] # [width, height]
 
104
        },
 
105
    }