{# bfx/badge.html — Badge / tag macro #}
{% macro badge(label, variant="primary", attrs={}) %}
{% set colors = {
"primary": "var(--pico-primary-background)",
"secondary": "var(--pico-secondary-background)",
"success": "#2e7d32",
"warning": "#e65100",
"error": "#c62828",
"info": "#1565c0"
} %}
{% set text_colors = {
"primary": "var(--pico-primary-inverse)",
"secondary": "var(--pico-secondary-inverse)",
"success": "#fff",
"warning": "#fff",
"error": "#fff",
"info": "#fff"
} %}
{{ label }}
{% endmacro %}