> ## Documentation Index
> Fetch the complete documentation index at: https://docs.altoura.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Text Formatting

> To enhance the appearance of text in various Panels and UI controls, users can utilize the following text formatting tags. These tags allow customization of text color, size, style, and structure.

### 1. Changing Text Color

You can change the text color using hexadecimal or named colors:

* **Hexadecimal Color Code:**
  ```
  <color=#ff0000>UAllows color modification using a hexadecimal code/color>
  ```
  **Named Colors:**
* ```
  <color=blue>Enables color adjustment using a predefined color name</color>
  ```

### 2. Underline

To underline text, use the `<u>` tag:

```
<u>Underline</u>
```

### 3. Line Break

To move text to the next line, use `<br>`:

```
Line one<br>Next line
```

### 4. Bold

To make text bold, use the `<b>` tag:

```
<b>Bold</b>
```

### 5. Text Size

You can change text size using absolute or percentage values:

* **Using Absolute Size (Integer Value in Percentage):**
  ```
  <size=40%>Size using percentage</size>
  ```
* **Using Fixed Integer Size:**
  ```
  <size=20>Defines text size using a specific integer value</size>
  ```

### 6. Strikethrough

To apply a strikethrough effect, use the `<s>` tag:

```
<s>Strike</s>
```

### 7. Italics

To italicize text, use the `<i>` tag:

```
<i>Italic</i>
```
