Theme Mapper: {{ current_theme }}

UI Elements

Headings and Text

Heading 1

Heading 2

Heading 3

Normal paragraph text. This is a link. This is marked text.

This is small text

This is inserted text and this is deleted text.

This is a blockquote with a citation.
This is inline code
// This is a code block
function example() {
  return "Hello World";
}

Buttons

Form Elements

Checkboxes
Radio Buttons

Theme Color Mapping

Main Colors

{% for color_name, color_value in main_colors %}
{{ color_name }}
{{ color_value }}
{% endfor %}

All Pico CSS Variables

{% for var_name, var_value in all_vars %} {% endfor %}
Variable Value Sample
{{ var_name }} {{ var_value }} {% if var_value.startswith('#') or var_value.startswith('rgb') %}
{% endif %}

Color Contrast Checks

{% for check in contrast_checks %} {% endfor %}
Foreground Background Contrast WCAG AA
{{ check.fg_name }} {{ check.bg_name }} {{ check.contrast }} {{ "Pass" if check.passes else "Fail" }}

Original Theme Colors

{% for group, names in original_colors.items() %} {% for name, value in names.items() %} {% endfor %} {% endfor %}
Group Name Value Sample
{{ group }} {{ name }} {{ value }}