Add the following functions.
- `use_line_graph_style_as_global_settings`
- `use_bar_graph_style_as_global_settings`
These functions can be used instead of `plt.style.use`.
Before.
python
from reipresoplot import get_line_graph_mpl_style_path
mpl_style_path: str = get_line_graph_mpl_style_path()
plt.style.use(mpl_style_path)
After.
python
from reipresoplot import use_line_graph_style_as_global_settings
use_line_graph_style_as_global_settings()