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

# Dify System Logo

## Requirements

* favicon.ico
  * height: 48px
  * width: 48px
* logo-site.png
  * height: 40px
  * width: any

## Configuration

### Base64 encode images

You can use the following command to encode images to base64.

```bash theme={null}
base64 -i favicon.ico -o favicon.ico.txt
base64 -i logo-site.png -o logo-site.png.txt
```

#### Update Helm values

Copy the base64 encoded string from the generated files and replace the `#REPLACE_ME#` in the following values.

```yaml theme={null}
web:
  logoConfig:
    enabled: true
    faviconIcoBase64: |
      #REPLACE_ME#
    logoSitePngBase64: |
      #REPLACE_ME#
```
