-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.py
executable file
·32 lines (28 loc) · 1.11 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
###################################################
#
# file: config.py
#
# @Author: Iacovos G. Kolokasis
# @Version: 19-01-2021
# @email: [email protected]
#
# Note : Colors which maintain their contrast for
# people who are colorblind.
# (https://davidmathlogic.com/colorblind)
#
###################################################
fullfigsize = (13, 2) # Full figure size
fontsize = 11 # Font size
# Color Blind pallete
B_color_cycle = ['#3399ff', # Blue
'#ff9933', # Orange
'#00b33c', # Green
'#cc0000', # Red
'#9966ff', # Purple
'#b07ce8', # Violet
'#ff509e', # Magenda
'#ffb000', # Gold
'#c0bfc0'] # Gray
line_style = ['-', '--', '-.', ':', (0, (3, 1, 1, 1))]
marker = ['s', '^', 'o', 'D', 'X', '*', 'v', 'P']
patterns = ('/////', 'xxxx', '', '||||||', '-----', 'o', '.', 'O', '*', 'ooo')