gitextract__3xp0qwg/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── 01-bug.yml │ └── workflows/ │ ├── pytest.yaml │ └── ruff_check.yaml ├── .gitignore ├── CHANGES.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── examples/ │ └── plot-examples.py ├── pyproject.toml └── src/ └── scienceplots/ ├── __init__.py ├── styles/ │ ├── color/ │ │ ├── bright.mplstyle │ │ ├── discrete-rainbow/ │ │ │ ├── discrete-rainbow-1.mplstyle │ │ │ ├── discrete-rainbow-10.mplstyle │ │ │ ├── discrete-rainbow-11.mplstyle │ │ │ ├── discrete-rainbow-12.mplstyle │ │ │ ├── discrete-rainbow-13.mplstyle │ │ │ ├── discrete-rainbow-14.mplstyle │ │ │ ├── discrete-rainbow-15.mplstyle │ │ │ ├── discrete-rainbow-16.mplstyle │ │ │ ├── discrete-rainbow-17.mplstyle │ │ │ ├── discrete-rainbow-18.mplstyle │ │ │ ├── discrete-rainbow-19.mplstyle │ │ │ ├── discrete-rainbow-2.mplstyle │ │ │ ├── discrete-rainbow-20.mplstyle │ │ │ ├── discrete-rainbow-21.mplstyle │ │ │ ├── discrete-rainbow-22.mplstyle │ │ │ ├── discrete-rainbow-23.mplstyle │ │ │ ├── discrete-rainbow-3.mplstyle │ │ │ ├── discrete-rainbow-4.mplstyle │ │ │ ├── discrete-rainbow-5.mplstyle │ │ │ ├── discrete-rainbow-6.mplstyle │ │ │ ├── discrete-rainbow-7.mplstyle │ │ │ ├── discrete-rainbow-8.mplstyle │ │ │ └── discrete-rainbow-9.mplstyle │ │ ├── high-contrast.mplstyle │ │ ├── high-vis.mplstyle │ │ ├── light.mplstyle │ │ ├── muted.mplstyle │ │ ├── retro.mplstyle │ │ ├── std-colors.mplstyle │ │ └── vibrant.mplstyle │ ├── journals/ │ │ ├── ieee.mplstyle │ │ └── nature.mplstyle │ ├── languages/ │ │ ├── cjk-jp-font.mplstyle │ │ ├── cjk-kr-font.mplstyle │ │ ├── cjk-sc-font.mplstyle │ │ ├── cjk-tc-font.mplstyle │ │ ├── russian-font.mplstyle │ │ └── turkish-font.mplstyle │ ├── misc/ │ │ ├── grid.mplstyle │ │ ├── latex-sans.mplstyle │ │ ├── no-latex.mplstyle │ │ ├── pgf.mplstyle │ │ └── sans.mplstyle │ ├── notebook.mplstyle │ ├── scatter.mplstyle │ └── science.mplstyle ├── styles_discovery.py └── tests/ ├── __init__.py ├── conftest.py └── test_scienceplots.py