Skip to content

๐ŸŽจ Customization Guide

You can customize the look and feel of the loading screen by editing the config.json file located in the html directory of the package. This guide walks you through the most important configuration options.

๐Ÿ“ Place any images, videos, or audio files inside the html/assets/ folder to ensure they load correctly in the UI.

Overall Theme Color

Customize the main highlight color used throughout the UI:

"selectedColor": "#ff007b",

Color Format

Accepts both hex and RGB formats.

Background Options

You can use either a static image or a video background. If both are set, video will take priority.

๐Ÿ“ท Static Image

"backgroundImage": "./assets/path/to/background.png",
"backgroundVideo": ""

Static Image Notes

If you're using a static image, leave "backgroundVideo" empty.
Subtle flickering and movement effects will still apply to the image for visual depth.

๐ŸŽฅ Video Background (MP4)

"backgroundVideo": "./assets/path/to/bg.mp4"

๐Ÿ“บ Video Background (YouTube)

"backgroundVideo": "https://www.youtube.com/watch?v=abc123"

Video Takes Priority

If "backgroundVideo" is set, the static "backgroundImage" will be ignored.