-
Notifications
You must be signed in to change notification settings - Fork 5
/
main_style
37 lines (29 loc) · 893 Bytes
/
main_style
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
// released under Open Source GPL License Copyright © 2023 Ka Hei Chow
// This script stores the style settings for the main explorer interface
exports.bg_color = '#000000'; //'#002244';
exports.description = {
color: '#FFFFFF',
fontWeight: 'normal',
fontSize: '12px',
padding: '1px 25px 25px 25px',
fontFamily: 'monospace'
};
exports.title = {
color: '#FFFFFF',
fontWeight: 'bold',
fontSize: '24px',
whiteSpace: 'pre',
textAlign: 'left',
padding: '25px 1px 25px 25px'
};
exports.selection = {padding: '1px 25px 25px 25px'};
exports.headings = {
color: '#FFFFFF',
fontWeight: 'normal',
fontSize: '15px',
whiteSpace: 'pre',
textAlign: 'left',
padding: '1px 25px 25px 25px'
};
exports.start_button = {width: '80px'};
exports.app_panel = {width: '500px'};