fixed build
This commit is contained in:
parent
a5f9ba865d
commit
516e4f64f0
|
|
@ -151,7 +151,6 @@ export const userController = createController({
|
|||
const result = weightedPickRandom(lootbox.items, (i) =>
|
||||
getWeight(i.rarity),
|
||||
);
|
||||
console.log(result);
|
||||
collection.entries.push({
|
||||
id: result.id,
|
||||
aquired: Date.now(),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { ServerGame } from "./gameType";
|
||||
import type { ServerGame } from "./gameType";
|
||||
|
||||
const rotate = (arr: boolean[][]) => {
|
||||
return arr[0].map((_, colIndex) => arr.map((row) => row[colIndex]));
|
||||
|
|
|
|||
|
|
@ -280,7 +280,6 @@ const Tile = ({
|
|||
const resolveSprite = useCallback(
|
||||
(lt: LoadedTexture) => {
|
||||
if (Array.isArray(lt)) {
|
||||
console.log("hash:", hashStr(game.uuid + ";" + x + ";" + y));
|
||||
return weightedPickRandom(
|
||||
lt,
|
||||
(i) => i.weight,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const MLGTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -81,7 +81,6 @@ export const useTheme = (theme: Theme) => {
|
|||
return [key, loaded] as const;
|
||||
}),
|
||||
);
|
||||
console.log("loaded", Object.fromEntries(loadedEntries));
|
||||
setLoadedTheme(Object.fromEntries(loadedEntries) as LoadedTheme);
|
||||
};
|
||||
loadTheme();
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const basicTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const blackAndWhiteTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
@ -6,7 +6,8 @@ export const blackAndWhiteTheme: Theme = {
|
|||
tile: () => import("../assets/themes/black-and-white/tile.png"),
|
||||
revealed: () => import("../assets/themes/black-and-white/revealed.png"),
|
||||
flag: () => import("../assets/themes/black-and-white/flag.png"),
|
||||
questionMark: () => import("../assets/themes/black-and-white/question-mark.png"),
|
||||
questionMark: () =>
|
||||
import("../assets/themes/black-and-white/question-mark.png"),
|
||||
lastPos: () => import("../assets/themes/black-and-white/last-pos.png"),
|
||||
1: () => import("../assets/themes/black-and-white/1.png"),
|
||||
2: () => import("../assets/themes/black-and-white/2.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const catsTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const circuitBinaryTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const circuitTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "../Theme";
|
||||
import type { Theme } from "../Theme";
|
||||
|
||||
export const crimson: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,14 +1,16 @@
|
|||
import { Theme } from "../Theme";
|
||||
import type { Theme } from "../Theme";
|
||||
|
||||
export const nauticalTheme: Theme = {
|
||||
size: 32,
|
||||
mine: () => import("../../assets/themes/color-palettes/nautical/mine.png"),
|
||||
tile: () => import("../../assets/themes/color-palettes/nautical/tile.png"),
|
||||
revealed: () => import("../../assets/themes/color-palettes/nautical/revealed.png"),
|
||||
revealed: () =>
|
||||
import("../../assets/themes/color-palettes/nautical/revealed.png"),
|
||||
flag: () => import("../../assets/themes/color-palettes/nautical/flag.png"),
|
||||
questionMark: () =>
|
||||
import("../../assets/themes/color-palettes/nautical/question-mark.png"),
|
||||
lastPos: () => import("../../assets/themes/color-palettes/nautical/last-pos.png"),
|
||||
lastPos: () =>
|
||||
import("../../assets/themes/color-palettes/nautical/last-pos.png"),
|
||||
1: () => import("../../assets/themes/color-palettes/nautical/1.png"),
|
||||
2: () => import("../../assets/themes/color-palettes/nautical/2.png"),
|
||||
3: () => import("../../assets/themes/color-palettes/nautical/3.png"),
|
||||
|
|
|
|||
|
|
@ -1,14 +1,21 @@
|
|||
import { Theme } from "../Theme";
|
||||
import type { Theme } from "../Theme";
|
||||
|
||||
export const shadowWarriorTheme: Theme = {
|
||||
size: 32,
|
||||
mine: () => import("../../assets/themes/color-palettes/shadow-warrior/mine.png"),
|
||||
tile: () => import("../../assets/themes/color-palettes/shadow-warrior/tile.png"),
|
||||
revealed: () => import("../../assets/themes/color-palettes/shadow-warrior/revealed.png"),
|
||||
flag: () => import("../../assets/themes/color-palettes/shadow-warrior/flag.png"),
|
||||
mine: () =>
|
||||
import("../../assets/themes/color-palettes/shadow-warrior/mine.png"),
|
||||
tile: () =>
|
||||
import("../../assets/themes/color-palettes/shadow-warrior/tile.png"),
|
||||
revealed: () =>
|
||||
import("../../assets/themes/color-palettes/shadow-warrior/revealed.png"),
|
||||
flag: () =>
|
||||
import("../../assets/themes/color-palettes/shadow-warrior/flag.png"),
|
||||
questionMark: () =>
|
||||
import("../../assets/themes/color-palettes/shadow-warrior/question-mark.png"),
|
||||
lastPos: () => import("../../assets/themes/color-palettes/shadow-warrior/last-pos.png"),
|
||||
import(
|
||||
"../../assets/themes/color-palettes/shadow-warrior/question-mark.png"
|
||||
),
|
||||
lastPos: () =>
|
||||
import("../../assets/themes/color-palettes/shadow-warrior/last-pos.png"),
|
||||
1: () => import("../../assets/themes/color-palettes/shadow-warrior/1.png"),
|
||||
2: () => import("../../assets/themes/color-palettes/shadow-warrior/2.png"),
|
||||
3: () => import("../../assets/themes/color-palettes/shadow-warrior/3.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "../Theme";
|
||||
import type { Theme } from "../Theme";
|
||||
|
||||
export const upInSmokeTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "../Theme";
|
||||
import type { Theme } from "../Theme";
|
||||
|
||||
export const blueTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
@ -6,7 +6,8 @@ export const blueTheme: Theme = {
|
|||
tile: () => import("../../assets/themes/colors/blue/tile.png"),
|
||||
revealed: () => import("../../assets/themes/colors/blue/revealed.png"),
|
||||
flag: () => import("../../assets/themes/colors/blue/flag.png"),
|
||||
questionMark: () => import("../../assets/themes/colors/blue/question-mark.png"),
|
||||
questionMark: () =>
|
||||
import("../../assets/themes/colors/blue/question-mark.png"),
|
||||
lastPos: () => import("../../assets/themes/colors/blue/last-pos.png"),
|
||||
1: () => import("../../assets/themes/colors/blue/1.png"),
|
||||
2: () => import("../../assets/themes/colors/blue/2.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "../Theme";
|
||||
import type { Theme } from "../Theme";
|
||||
|
||||
export const greenTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
@ -6,7 +6,8 @@ export const greenTheme: Theme = {
|
|||
tile: () => import("../../assets/themes/colors/green/tile.png"),
|
||||
revealed: () => import("../../assets/themes/colors/green/revealed.png"),
|
||||
flag: () => import("../../assets/themes/colors/green/flag.png"),
|
||||
questionMark: () => import("../../assets/themes/colors/green/question-mark.png"),
|
||||
questionMark: () =>
|
||||
import("../../assets/themes/colors/green/question-mark.png"),
|
||||
lastPos: () => import("../../assets/themes/colors/green/last-pos.png"),
|
||||
1: () => import("../../assets/themes/colors/green/1.png"),
|
||||
2: () => import("../../assets/themes/colors/green/2.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "../Theme";
|
||||
import type { Theme } from "../Theme";
|
||||
|
||||
export const orangeTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
@ -6,7 +6,8 @@ export const orangeTheme: Theme = {
|
|||
tile: () => import("../../assets/themes/colors/orange/tile.png"),
|
||||
revealed: () => import("../../assets/themes/colors/orange/revealed.png"),
|
||||
flag: () => import("../../assets/themes/colors/orange/flag.png"),
|
||||
questionMark: () => import("../../assets/themes/colors/orange/question-mark.png"),
|
||||
questionMark: () =>
|
||||
import("../../assets/themes/colors/orange/question-mark.png"),
|
||||
lastPos: () => import("../../assets/themes/colors/orange/last-pos.png"),
|
||||
1: () => import("../../assets/themes/colors/orange/1.png"),
|
||||
2: () => import("../../assets/themes/colors/orange/2.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "../Theme";
|
||||
import type { Theme } from "../Theme";
|
||||
|
||||
export const pinkTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
@ -6,7 +6,8 @@ export const pinkTheme: Theme = {
|
|||
tile: () => import("../../assets/themes/colors/pink/tile.png"),
|
||||
revealed: () => import("../../assets/themes/colors/pink/revealed.png"),
|
||||
flag: () => import("../../assets/themes/colors/pink/flag.png"),
|
||||
questionMark: () => import("../../assets/themes/colors/pink/question-mark.png"),
|
||||
questionMark: () =>
|
||||
import("../../assets/themes/colors/pink/question-mark.png"),
|
||||
lastPos: () => import("../../assets/themes/colors/pink/last-pos.png"),
|
||||
1: () => import("../../assets/themes/colors/pink/1.png"),
|
||||
2: () => import("../../assets/themes/colors/pink/2.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "../Theme";
|
||||
import type { Theme } from "../Theme";
|
||||
|
||||
export const purpleTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
@ -6,7 +6,8 @@ export const purpleTheme: Theme = {
|
|||
tile: () => import("../../assets/themes/colors/purple/tile.png"),
|
||||
revealed: () => import("../../assets/themes/colors/purple/revealed.png"),
|
||||
flag: () => import("../../assets/themes/colors/purple/flag.png"),
|
||||
questionMark: () => import("../../assets/themes/colors/purple/question-mark.png"),
|
||||
questionMark: () =>
|
||||
import("../../assets/themes/colors/purple/question-mark.png"),
|
||||
lastPos: () => import("../../assets/themes/colors/purple/last-pos.png"),
|
||||
1: () => import("../../assets/themes/colors/purple/1.png"),
|
||||
2: () => import("../../assets/themes/colors/purple/2.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "../Theme";
|
||||
import type { Theme } from "../Theme";
|
||||
|
||||
export const redTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
@ -6,7 +6,8 @@ export const redTheme: Theme = {
|
|||
tile: () => import("../../assets/themes/colors/red/tile.png"),
|
||||
revealed: () => import("../../assets/themes/colors/red/revealed.png"),
|
||||
flag: () => import("../../assets/themes/colors/red/flag.png"),
|
||||
questionMark: () => import("../../assets/themes/colors/red/question-mark.png"),
|
||||
questionMark: () =>
|
||||
import("../../assets/themes/colors/red/question-mark.png"),
|
||||
lastPos: () => import("../../assets/themes/colors/red/last-pos.png"),
|
||||
1: () => import("../../assets/themes/colors/red/1.png"),
|
||||
2: () => import("../../assets/themes/colors/red/2.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "../Theme";
|
||||
import type { Theme } from "../Theme";
|
||||
|
||||
export const turquoiseTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
@ -6,7 +6,8 @@ export const turquoiseTheme: Theme = {
|
|||
tile: () => import("../../assets/themes/colors/turquoise/tile.png"),
|
||||
revealed: () => import("../../assets/themes/colors/turquoise/revealed.png"),
|
||||
flag: () => import("../../assets/themes/colors/turquoise/flag.png"),
|
||||
questionMark: () => import("../../assets/themes/colors/turquoise/question-mark.png"),
|
||||
questionMark: () =>
|
||||
import("../../assets/themes/colors/turquoise/question-mark.png"),
|
||||
lastPos: () => import("../../assets/themes/colors/turquoise/last-pos.png"),
|
||||
1: () => import("../../assets/themes/colors/turquoise/1.png"),
|
||||
2: () => import("../../assets/themes/colors/turquoise/2.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "../Theme";
|
||||
import type { Theme } from "../Theme";
|
||||
|
||||
export const yellowTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const defaultTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const dinoTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const eldenRingTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const farmTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const flowersTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const halliGalliTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ import { retroWaveTheme } from "./retro-wave";
|
|||
import { romanceTheme } from "./romance";
|
||||
import { techiesDireTheme } from "./techies-dire";
|
||||
import { techiesRadiantTheme } from "./techies-radiant";
|
||||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
import { tronBlueTheme } from "./tron-blue";
|
||||
import { tronOrangeTheme } from "./tron-orange";
|
||||
import { underwaterTheme } from "./underwater";
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const insectsTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const isaacTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const janitorTreshTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const leagueTeemoTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
@ -6,8 +6,7 @@ export const leagueTeemoTheme: Theme = {
|
|||
tile: () => import("../assets/themes/league/tile-1.png"),
|
||||
revealed: () => import("../assets/themes/league/revealed.png"),
|
||||
flag: () => import("../assets/themes/league/teemo/flag.png"),
|
||||
questionMark: () =>
|
||||
import("../assets/themes/league/question-mark.png"),
|
||||
questionMark: () => import("../assets/themes/league/question-mark.png"),
|
||||
lastPos: () => import("../assets/themes/league/last-pos.png"),
|
||||
1: () => import("../assets/themes/league/1.png"),
|
||||
2: () => import("../assets/themes/league/2.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const leagueZiggsTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
@ -6,8 +6,7 @@ export const leagueZiggsTheme: Theme = {
|
|||
tile: () => import("../assets/themes/league/tile-1.png"),
|
||||
revealed: () => import("../assets/themes/league/revealed.png"),
|
||||
flag: () => import("../assets/themes/league/ziggs/flag.png"),
|
||||
questionMark: () =>
|
||||
import("../assets/themes/league/question-mark.png"),
|
||||
questionMark: () => import("../assets/themes/league/question-mark.png"),
|
||||
lastPos: () => import("../assets/themes/league/last-pos.png"),
|
||||
1: () => import("../assets/themes/league/1.png"),
|
||||
2: () => import("../assets/themes/league/2.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const mineDogsTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const minecraftNetherTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
@ -6,7 +6,8 @@ export const minecraftNetherTheme: Theme = {
|
|||
tile: () => import("../assets/themes/minecraft-nether/tile.png"),
|
||||
revealed: () => import("../assets/themes/minecraft-nether/revealed.png"),
|
||||
flag: () => import("../assets/themes/minecraft-nether/flag.png"),
|
||||
questionMark: () => import("../assets/themes/minecraft-nether/question-mark.png"),
|
||||
questionMark: () =>
|
||||
import("../assets/themes/minecraft-nether/question-mark.png"),
|
||||
lastPos: () => import("../assets/themes/minecraft-nether/last-pos.png"),
|
||||
1: () => import("../assets/themes/minecraft-nether/1.png"),
|
||||
2: () => import("../assets/themes/minecraft-nether/2.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const minecraftOverworldTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
@ -6,7 +6,8 @@ export const minecraftOverworldTheme: Theme = {
|
|||
tile: () => import("../assets/themes/minecraft-overworld/tile.png"),
|
||||
revealed: () => import("../assets/themes/minecraft-overworld/revealed.png"),
|
||||
flag: () => import("../assets/themes/minecraft-overworld/flag.png"),
|
||||
questionMark: () => import("../assets/themes/minecraft-overworld/question-mark.png"),
|
||||
questionMark: () =>
|
||||
import("../assets/themes/minecraft-overworld/question-mark.png"),
|
||||
lastPos: () => import("../assets/themes/minecraft-overworld/last-pos.png"),
|
||||
1: () => import("../assets/themes/minecraft-overworld/1.png"),
|
||||
2: () => import("../assets/themes/minecraft-overworld/2.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const poopTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const retroWaveTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const techiesRadiantTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
@ -6,7 +6,8 @@ export const techiesRadiantTheme: Theme = {
|
|||
tile: () => import("../assets/themes/techies/radiant/tile-1.png"),
|
||||
revealed: () => import("../assets/themes/techies/radiant/revealed-1.png"),
|
||||
flag: () => import("../assets/themes/techies/flag.png"),
|
||||
questionMark: () => import("../assets/themes/techies/radiant/question-mark.png"),
|
||||
questionMark: () =>
|
||||
import("../assets/themes/techies/radiant/question-mark.png"),
|
||||
lastPos: () => import("../assets/themes/techies/radiant/last-pos.png"),
|
||||
1: () => import("../assets/themes/techies/radiant/1.png"),
|
||||
2: () => import("../assets/themes/techies/radiant/2.png"),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const tronBlueTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const tronOrangeTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Theme } from "./Theme";
|
||||
import type { Theme } from "./Theme";
|
||||
|
||||
export const underwaterTheme: Theme = {
|
||||
size: 32,
|
||||
|
|
|
|||
Loading…
Reference in New Issue