An Altair theme implementing the World Bank Group Data Visualization Style Guide.
Documentation: https://datapartnership.github.io/attaviz/
uv add "attaviz @ git+https://github.com/datapartnership/attaviz.git"
# or
pip install "git+https://github.com/datapartnership/attaviz.git"import altair as alt
import attaviz
attaviz.enable() # every chart now uses the WBG theme
alt.Chart(data).mark_bar().encode(x="category:N", y="value:Q")See the documentation site for the full gallery and reference.