-
Notifications
You must be signed in to change notification settings - Fork 1
/
myThemes.js
135 lines (112 loc) · 4.49 KB
/
myThemes.js
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* eslint-env browser */
'use strict';
window.fin.Hypergrid.myThemes = {
one: {
font: '8px Tahoma, Geneva, sans-serif',
color: 'rgb(25, 25, 25)',
backgroundColor: 'rgb(241, 241, 241)',
foregroundSelectionColor: 'rgb(255, 0, 0)',
backgroundSelectionColor: 'rgb(0, 0, 255)',
columnHeaderFont: '12px Tahoma, Geneva, sans-serif',
columnHeaderColor: 'darkblue',
columnHeaderBackgroundColor: 'pink',
columnHeaderForegroundSelectionColor: 'rgb(0, 0, 255)',
columnHeaderBackgroundSelectionColor: 'rgb(255, 0, 0)',
rowHeaderFont: '8px Tahoma, Geneva, sans-serif',
rowHeaderColor: 'rgb(25, 25, 25)',
rowHeaderBackgroundColor: 'rgb(223, 227, 232)',
rowHeaderForegroundSelectionColor: 'rgb(25, 25, 25)',
rowHeaderBackgroundSelectionColor: 'rgb(255, 220, 97)',
backgroundColor2: 'rgb(201, 201, 201)',
lineColor: 'rgb(199, 199, 199)',
voffset: 0,
scrollbarHoverOver: 'visible',
scrollbarHoverOff: 'hidden',
scrollingEnabled: true,
fixedRowAlign: 'center',
fixedColAlign: 'center',
cellPadding: 5,
gridLinesH: true,
gridLinesV: true,
defaultRowHeight: 20,
defaultFixedRowHeight: 15,
defaultColumnWidth: 100,
defaultFixedColumnWidth: 100,
//for immediate painting, set these values to 0, true respectively
editorActivationKeys: ['alt', 'esc'],
columnAutosizing: false,
readOnly: false
},
two: {
font: '10px Tahoma, Geneva, sans-serif',
color: 'rgb(25, 25, 25)',
backgroundColor: 'rgb(241, 241, 241)',
foregroundSelectionColor: 'rgb(25, 25, 25)',
backgroundSelectionColor: 'rgb(183, 219, 255)',
columnHeaderFont: '10px Tahoma, Geneva, sans-serif',
columnHeaderColor: 'rgb(25, 25, 25)',
columnHeaderBackgroundColor: 'rgb(223, 227, 232)',
columnHeaderForegroundSelectionColor: 'rgb(25, 25, 25)',
columnHeaderBackgroundSelectionColor: 'rgb(255, 220, 97)',
rowHeaderFont: '10px Tahoma, Geneva, sans-serif',
rowHeaderColor: 'rgb(25, 25, 25)',
rowHeaderBackgroundColor: 'rgb(223, 227, 232)',
rowHeaderForegroundSelectionColor: 'rgb(25, 25, 25)',
rowHeaderBackgroundSelectionColor: 'rgb(255, 220, 97)',
backgroundColor2: 'rgb(201, 201, 201)',
lineColor: 'rgb(199, 199, 199)',
voffset: 0,
scrollbarHoverOver: 'visible',
scrollbarHoverOff: 'hidden',
scrollingEnabled: true,
fixedRowAlign: 'center',
fixedColAlign: 'center',
cellPadding: 5,
gridLinesH: true,
gridLinesV: true,
defaultRowHeight: 15,
defaultFixedRowHeight: 15,
defaultColumnWidth: 100,
defaultFixedColumnWidth: 100,
//for immediate painting, set these values to 0, true respectively
editorActivationKeys: ['alt', 'esc'],
columnAutosizing: false,
readOnly: false
},
three: {
font: '15px Tahoma, Geneva, sans-serif',
color: 'rgb(25, 25, 25)',
backgroundColor: 'rgb(241, 241, 241)',
foregroundSelectionColor: 'rgb(25, 25, 25)',
backgroundSelectionColor: 'rgb(183, 219, 255)',
columnHeaderFont: '15px Tahoma, Geneva, sans-serif',
columnHeaderColor: 'rgb(25, 25, 25)',
columnHeaderBackgroundColor: 'rgb(223, 227, 232)',
columnHeaderForegroundSelectionColor: 'rgb(25, 25, 25)',
columnHeaderBackgroundSelectionColor: 'rgb(255, 220, 97)',
rowHeaderFont: '15px Tahoma, Geneva, sans-serif',
rowHeaderColor: 'rgb(25, 25, 25)',
rowHeaderBackgroundColor: 'rgb(223, 227, 232)',
rowHeaderForegroundSelectionColor: 'rgb(25, 25, 25)',
rowHeaderBackgroundSelectionColor: 'rgb(255, 220, 97)',
backgroundColor2: 'rgb(201, 201, 201)',
lineColor: 'rgb(199, 199, 199)',
voffset: 0,
scrollbarHoverOver: 'visible',
scrollbarHoverOff: 'hidden',
scrollingEnabled: true,
fixedRowAlign: 'center',
fixedColAlign: 'center',
cellPadding: 5,
gridLinesH: true,
gridLinesV: true,
defaultRowHeight: 15,
defaultFixedRowHeight: 15,
defaultColumnWidth: 100,
defaultFixedColumnWidth: 100,
//for immediate painting, set these values to 0, true respectively
editorActivationKeys: ['alt', 'esc'],
columnAutosizing: false,
readOnly: false
}
};