-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
64 lines (60 loc) · 1.42 KB
/
config.py
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
# Category abbreviations
CATEGORY_ABBREVIATIONS = {
'Art': 'Art',
'Mathematics': 'Math',
'IT': 'IT',
'Business Studies': 'BS',
'Music': 'Music',
'Religion': 'R',
'Language and literature': 'L&L',
'Citizenship': 'CIT',
'World Regions': 'WR',
'Design and Technology': 'D&T',
'Everyday life': 'Life',
'History': 'Hist',
'People': 'P',
'Geography': 'Geo',
'Science': 'Sci'
}
# Category-Color Mapping
PALETTE_CATEGORY_DICT_COLORS = {
'Art': '#69419f',
'Business Studies': '#ffa3bd',
'Citizenship': '#ca9ffa',
'World Regions': '#00ba82',
'Design and Technology': '#97bc72',
'Everyday life': '#fedf96',
'Geography': '#c8e1aa',
'History': '#ffc69c',
'IT': '#bd6c9c',
'Language and literature': '#ff9393',
'Mathematics': '#d2dbc4',
'Music': '#ffc0ff',
'People': '#70dff3',
'Religion': '#3f4b5f',
'Science': '#9fa5fa',
'Voyages': '#00cbe6',
'Others': '#d2dae3',
'Countries': '#3b83f7'
}
PALETTE_POSITION_LINKS = {'Clicked Link Position in Paths': '#AFD2E9',
'Article Link Position in Articles': '#9A7197'}
PALETTE_SECTIONS = ['#AFD2E9','#9d96b8','#9A7197']
CATEGORIES_OTHERS = [
'Art',
'Business Studies',
'Citizenship',
'World Regions',
'Design and Technology',
'Everyday life',
'Geography',
'History',
'IT',
'Language and literature',
'Mathematics',
'Music',
'People',
'Religion',
'Science',
'Others'
]