# Eigenes CSS

## Themes Stratus, Atmos, Gravity

Für die Themes Stratus, Atmos und Gravity findest Du die Felder für Eigenen Code im Tab-Reiter **Erweitert**.

![](/files/-MK9MSGgcTBirArlMIJJ)

Im Feld **individuelles CSS** kannst Du direkt CSS Code hinterlegen.

Beispiel:

```css
body {
    background: #ffffff;
}
```

Im Feld für **Weitere CSS-Dateien** kannst du auch auf externe CSS Dateien verweisen.

Beispiel:

```css
<link rel="stylesheet" type="text/css" href="https://domain.de/style.css" media="screen" />
```

## Themes Horizon, Sphere

Für die Themes Horizon und Sphere findest Du die Felder für Eigenen Code im Tab-Reiter **Konfiguration**.

![](/files/-Md_nOE1wF6iySuq6f3P)

Im Feld für **Weitere CSS-Dateien** kannst du auf externe CSS Dateien verweisen oder direkt CSS Code hinterlegen.

Beispiel - externe CSS Datei:

```css
<link rel="stylesheet" type="text/css" href="https://domain.de/style.css" media="screen" />
```

Beispiel - CSS Code:

```css
<style>
body {
    background: #ffffff;
}
</style>
```

{% hint style="warning" %}
Die style-Tags sind hier zwingend erforderlich.
{% endhint %}


---

# 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://themedocs-sw5.zenit.design/faq/eigenes-css.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.
