This repository contains the source code for the LiquidBounce Default Theme, built using Svelte. It is intended for development, customization, and distribution through the LiquidBounce theme system and marketplace.
If you want to create your own LiquidBounce theme, the recommended starting point is to fork the official default theme repository:
https://github.com/CCBlueX/LiquidBounce-Theme
Forking this repository gives you a fully working baseline with proper project structure, build configuration, and marketplace integration already set up. From there, you can modify the UI, styles, and components to create your own custom theme while staying compatible with LiquidBounce’s theming system.
Ensure the following software is installed before proceeding:
- Node.js (latest LTS or stable release recommended)
-
Install dependencies
npm install
-
Launch LiquidBounce
Start the LiquidBounce client before running the development server.
-
Start the development server
npm run dev
-
Set the theme in the client
Use the live development URL provided by the dev server (for example, http://localhost:5173/):
.client theme set <live-url> -
Open the theme in a browser
Run the following command in the client and select the UI you want to open in your system browser:
.client integration menu
Follow these steps to create a production-ready build of the theme.
-
Build the theme
npm run build
-
Locate the build output
-
The production build is generated in the
distdirectory -
This directory contains the optimized and minified theme files
-
-
Deploy to the themes directory
-
Copy the entire dist directory into your LiquidBounce themes directory
-
You can open the themes directory by running:
.client theme browse- Rename the dist folder to your desired theme name
-
-
Apply the theme
.client theme set <your-theme-name>
To publish the theme to the LiquidBounce Marketplace, complete the following steps.
-
Generate an API token
-
Generate an API token from your account settings
-
Obtain the marketplace item ID
-
Navigate to: https://liquidbounce.net/marketplace
-
Open your marketplace item page
-
Copy the value from the Item ID field displayed on the right side
-
-
Configure the repository
-
Add
API_TOKENas a repository secret under Settings → Secrets and variables → Actions -
Update the following values in
.github/workflows/build.yml:-
MARKETPLACE_ITEM_ID -
ZIP_NAME
-
-
-
Enable publishing
- Uncomment the GitHub release and marketplace upload steps in:
.github/workflows/build.yml
Once configured, the workflow will automatically build and publish the theme when triggered.