-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcustom_colors.yml
36 lines (35 loc) · 1.18 KB
/
custom_colors.yml
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
# Path to text file containing graammar productions
grammar: "grammars/expression-grammar.txt"
# String as space separated tokens
string: "id + id"
# Parsing algorithm. Choices = ['ll1', 'lr0', 'slr1', 'lr1', 'lalr1']
parsing-algo: lr1
# Should the parsing table be exported ?
parsing-table: True
# Should the resultant syntax tree be visualized ?
vis-tree: True
# Should the resultant LR automaton be visualized ? (valid for LR parsing only)
vis-automaton: True
# Should the parsing process be visualized ? (Will use `manim` for animation)
vis-parsing: True
# Quality of manim video. Choices = ['480p', '720p', '1080p', '1440p', '2160p']
manim-vide-quality: "480p"
# Colors used for highlighting syntaxtree and animations (optional)
colors: [
'#FF7F50', # 'coral',
'#8B008B', # 'darkmagenta',
'#006400', # 'darkblue',
'#8B0000', # 'darkred',
'#FF1493', # 'deeppink',
'#1E90FF', # 'dodgerblue',
'#8A2BE2', # 'blueviolet',
'#008B8B', # 'darkcyan',
'#FFFF00', # 'yellow',
'#191970', # 'mediumslateblue',
'#A52A2A', # 'brown',
'#FFA500', # 'orange',
'#008080', # 'teal',
'#2E8B57', # 'seagreen',
'#00FF7F', # 'springgreen',
'#FF6347', # 'tomato'
]