Skip to content

Commit

Permalink
changed figure.facecolor
Browse files Browse the repository at this point in the history
  • Loading branch information
msr8 committed Apr 14, 2024
1 parent 9ec836f commit 0ccb013
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
plt.rcParams['xtick.labelbottom'] = False
plt.rcParams['ytick.left'] = False
plt.rcParams['ytick.labelleft'] = False
# Set background color to rgb(20,20,20), ie #141414, ie the background of the website
plt.rcParams['figure.facecolor'] = '#141414'



Expand Down Expand Up @@ -441,4 +443,4 @@ def node_plot():


if __name__ == '__main__':
app.run(debug=False, port=8000, host='0.0.0.0', threaded=True)
app.run(debug=True, port=8000, host='0.0.0.0', threaded=True)

0 comments on commit 0ccb013

Please sign in to comment.