From 0838c558a25bb2bd6ceb176b81401c1abb1cfbd9 Mon Sep 17 00:00:00 2001 From: LemurPwned Date: Sat, 24 Aug 2024 12:07:29 +0200 Subject: [PATCH] update the background of matplotlib --- view/domain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/domain.py b/view/domain.py index 992eeff..c2f6ffc 100644 --- a/view/domain.py +++ b/view/domain.py @@ -178,7 +178,7 @@ def render(Hscan, Mmixed): if len(Hscan) <= 0 or len(Mmixed) <= 0: return with _lock: - with plt.style.context(["science", "nature"]): + with plt.style.context(["dark_background"]): w, h = plt.figaspect(1 / 3) fig, ax = plt.subplots( 1, 3, dpi=400, figsize=(w, h), sharex=True, sharey=True