Skip to content

Commit

Permalink
Create quant_pastel.py
Browse files Browse the repository at this point in the history
  • Loading branch information
quantgirluk committed Jan 24, 2025
1 parent 50c6b4c commit 4187f84
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions aleatory/styles/quant_pastel.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-

# Author: Dialid Santiago <[email protected]>
# License: MIT
# Description: Apply Quant Pastel Style

###############################################################################

import matplotlib.pyplot as plt
from os.path import join, dirname, realpath

STYLE_DIR = realpath(dirname(__file__))


def qp_style():
plt.style.use(join(STYLE_DIR, "quant-pastel-light.mplstyle"))

0 comments on commit 4187f84

Please sign in to comment.