# Progress Bars

{% code title="Default Progress Bar" %}

```html
<div class="progress progress-m">
    <div class="progress-bar"></div>
</div>
```

{% endcode %}

## Sizes

{% tabs %}
{% tab title="Extra Small" %}

```html
<div class="progress progress-xs">
	<div class="progress-bar" style="width: 35%;"></div>
</div>
```

{% endtab %}

{% tab title="Small" %}

```html
<div class="progress progress-s">
	<div class="progress-bar" style="width: 35%;"></div>
</div>
```

{% endtab %}

{% tab title="Medium" %}

```html
<div class="progress progress-m">
	<div class="progress-bar" style="width: 35%;"></div>
</div>
```

{% endtab %}

{% tab title="Large" %}

```html
<div class="progress progress-l">
	<div class="progress-bar" style="width: 35%;"></div>
</div>
```

{% endtab %}

{% tab title="Extra Large" %}

```html
<div class="progress progress-xl">
	<div class="progress-bar" style="width: 35%;"></div>
</div>
```

{% endtab %}
{% endtabs %}

{% embed url="<https://codepen.io/neptunecss/pen/mdzzoRW>" %}
Progress bar size examples
{% endembed %}

## Styles

{% tabs %}
{% tab title="Primary" %}

```html
<div class="progress progress-primary progress-m">
	<div class="progress-bar" style="width: 35%;"></div>
</div>
```

{% endtab %}

{% tab title="Accent" %}

```html
<div class="progress progress-accent progress-m">
	<div class="progress-bar" style="width: 35%;"></div>
</div>
```

{% endtab %}

{% tab title="Information" %}

```html
<div class="progress progress-info progress-m">
	<div class="progress-bar" style="width: 35%;"></div>
</div>
```

{% endtab %}

{% tab title="Success" %}

```html
<div class="progress progress-success progress-m">
	<div class="progress-bar" style="width: 35%;"></div>
</div>
```

{% endtab %}

{% tab title="Warning" %}

```html
<div class="progress progress-warning progress-m">
	<div class="progress-bar" style="width: 35%;"></div>
</div>
```

{% endtab %}

{% tab title="Error" %}

```html
<div class="progress progress-error progress-m">
	<div class="progress-bar" style="width: 35%;"></div>
</div>
```

{% endtab %}
{% endtabs %}

{% embed url="<https://codepen.io/neptunecss/pen/PoyyLWK>" %}
Progress bar color examples
{% endembed %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://neptune-css.gitbook.io/neptune-css-docs/components/progress-bars.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
