Skip to content

Making Themes

Toast edited this page Jul 2, 2025 · 1 revision


placeholder page

Where to find Themes

The themes list is found at public/assets/data/themes.js

Creating a new theme

Follow this format for adding an app.

{
    "id": "Id goes here",
    "title": "Title goes here.",
    "url": "URL link goes here.",
    "image": 'Icon link goes here.',
    "description": "Description goes here.",
    'img': 'Cover image link goes here.'
},

Follow this format for adding a game.

{
    id: 'Id goes here',
    title: 'Title goes here.',
    description: 'Description goes here.',
    url: 'Game link goes here.',
    image: 'Icon link goes here.'
  },
  • Ids should always be lowercase with no spaces, dashes, and underscores.
  • If the app/game doesn't function properly, try adding uv: false. This disables Ultraviolet and allows the game to run without a proxy.

Clone this wiki locally