> For the complete documentation index, see [llms.txt](https://owwwlab.gitbook.io/chaos-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://owwwlab.gitbook.io/chaos-docs/els/icon-lists.md).

# Lists

### Numbers

![](/files/-LLV04023cGB_sLysQ27)

```
<ol class="with-shaded-label">
  <li>List One</li>
  <li>List Two</li>
  <li>List Three</li>
  <li>List Four</li>
  <li>List Five</li>
</ol>
```

### Lower Alpha

![](/files/-LLV0404XPKTmyseH389)

```
<ol class="with-shaded-label ol-lower-alpha">
  <li>List One</li>
  <li>List Two</li>
  <li>List Three</li>
  <li>List Four</li>
  <li>List Five</li>
</ol>
```

### Upper Alpha

![](/files/-LLV0406U8GsX-msiwbV)

```
<ol class="with-shaded-label ol-upper-alpha">
  <li>List One</li>
  <li>List Two</li>
  <li>List Three</li>
  <li>List Four</li>
  <li>List Five</li>
</ol>
```

### Lower Roman

![](/files/-LLV040844pdF17oEiBC)

```
<ol class="with-shaded-label ol-lower-roman">
  <li>List One</li>
  <li>List Two</li>
  <li>List Three</li>
  <li>List Four</li>
  <li>List Five</li>
</ol>
```

### Upper Roman

![](/files/-LLV040AcBDaHaOCPTKp)

```
<ol class="with-shaded-label ol-upper-roman">
  <li>List One</li>
  <li>List Two</li>
  <li>List Three</li>
  <li>List Four</li>
  <li>List Five</li>
</ol>
```

### Greek

![](/files/-LLV040CrFOngtQ24_bM)

```
<ol class="with-shaded-label ol-greek">
  <li>List One</li>
  <li>List Two</li>
  <li>List Three</li>
  <li>List Four</li>
  <li>List Five</li>
</ol>
```

### Simple lists

Above codes can be used to get simple ordered lists without using `.whith-shaded-label` class

## List with icon

![Icon lists](/files/-LLV040ENvJf760bu2fg)

### Markup

```
<ul class="icon-list">
    <li><i class="oli oli-two-hearts"></i> Icon List One</li>
    <li><i class="oli oli-airplane-mode-on"></i> Icon List Two</li>
    <li><i class="oli oli-user-male-circle-filled"></i> Icon List Three</li>
    <li><i class="oli oli-diamond"></i> Icon List Four</li>
</ul>
```

### Variations

1. You can see the default icon list's markup above.
2. It is represented by `.icon-list icon-border` class & the ul element would be:

   ```
   <ul class="icon-list icon-border">
   ```
3. It is represented by `icon-list icon-border radius` classes. Ul element would be like no.2.
4. It is represented by `icon-list icon-border circle` classes. Ul element would be like no.2.
5. It is just like the general markup except `theme-color` has been added to every icon element of the list, so icon would be:

   ```
   <li><i class="theme-color oli oli-two-hearts"></i> Icon List One</li>
   ```
6. It is represented by `icon-list icon-bg-box` classes. Ul element would be like no.2.
7. It is represented by `icon-list icon-dark radius` classes. Ul element would be like no.2.
8. It is represented by `icon-list icon-theme circle` classes. Ul element would be like no.2.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://owwwlab.gitbook.io/chaos-docs/els/icon-lists.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.
