mirror of
https://github.com/CCBlueX/LiquidBounce.git
synced 2025-09-07 02:18:32 +00:00

- Adds support for custom components per theme - Adds per-theme component configuration - Adds support for remembering last theme - Adds support for in-memory theme serving via Rest API (LiquidBounce) - Adds support for themes to be loaded from URL (Includes metadata, background, fonts ...) Bit of refactoring as well. This PR replaced https://github.com/CCBlueX/LiquidBounce/pull/5619 and prepared for https://github.com/CCBlueX/LiquidBounce/pull/3884. Warning: This breaks compatibility with existing themes. No backwards compatibility!
19 lines
650 B
HTML
19 lines
650 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>LiquidBounce UI</title>
|
|
<link rel="preload" href="/fonts/Inter-Bold.ttf" as="font" crossorigin="anonymous">
|
|
<link rel="preload" href="/fonts/Inter-Medium.ttf" as="font" crossorigin="anonymous">
|
|
<link rel="preload" href="/fonts/Inter-Regular.ttf" as="font" crossorigin="anonymous">
|
|
<link rel="preload" href="/fonts/Inter-Light.ttf" as="font" crossorigin="anonymous">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
|
|
</html> |