add themes to collection
This commit is contained in:
parent
3e0ace5230
commit
aab7e7de4e
|
|
@ -1,16 +1,32 @@
|
||||||
import { basicTheme } from "./basic";
|
import { basicTheme } from "./basic";
|
||||||
import { blackAndWhiteTheme } from "./black-and-white";
|
import { blackAndWhiteTheme } from "./black-and-white";
|
||||||
import { catsTheme } from "./cats";
|
import { catsTheme } from "./cats";
|
||||||
|
import { circuitTheme } from "./circuit";
|
||||||
|
import { circuitBinaryTheme } from "./circuit-binary";
|
||||||
|
import { blueTheme } from "./colors/blue";
|
||||||
|
import { greenTheme } from "./colors/green";
|
||||||
|
import { orangeTheme } from "./colors/orange";
|
||||||
|
import { pinkTheme } from "./colors/pink";
|
||||||
|
import { purpleTheme } from "./colors/purple";
|
||||||
|
import { redTheme } from "./colors/red";
|
||||||
|
import { turquoiseTheme } from "./colors/turquoise";
|
||||||
|
import { yellowTheme } from "./colors/yellow";
|
||||||
import { defaultTheme } from "./default";
|
import { defaultTheme } from "./default";
|
||||||
import { dinoTheme } from "./dinos";
|
import { dinoTheme } from "./dinos";
|
||||||
import { eldenRingTheme } from "./elden-ring";
|
import { eldenRingTheme } from "./elden-ring";
|
||||||
|
import { farmTheme } from "./farm";
|
||||||
import { flowersTheme } from "./flowers";
|
import { flowersTheme } from "./flowers";
|
||||||
|
import { halliGalliTheme } from "./halli-galli";
|
||||||
|
import { insectsTheme } from "./insects";
|
||||||
|
import { isaacTheme } from "./isaac";
|
||||||
import { janitorTreshTheme } from "./janitor-tresh";
|
import { janitorTreshTheme } from "./janitor-tresh";
|
||||||
import { leagueTeemoTheme } from "./league-teemo";
|
import { leagueTeemoTheme } from "./league-teemo";
|
||||||
import { leagueZiggsTheme } from "./league-ziggs";
|
import { leagueZiggsTheme } from "./league-ziggs";
|
||||||
import { mineDogsTheme } from "./mine-dogs";
|
import { mineDogsTheme } from "./mine-dogs";
|
||||||
import { minecraftNetherTheme } from "./minecraft-nether";
|
import { minecraftNetherTheme } from "./minecraft-nether";
|
||||||
import { minecraftOverworldTheme } from "./minecraft-overworld";
|
import { minecraftOverworldTheme } from "./minecraft-overworld";
|
||||||
|
import { MLGTheme } from "./MLG";
|
||||||
|
import { poopTheme } from "./poop";
|
||||||
import { retroWaveTheme } from "./retro-wave";
|
import { retroWaveTheme } from "./retro-wave";
|
||||||
import { romanceTheme } from "./romance";
|
import { romanceTheme } from "./romance";
|
||||||
import { techiesDireTheme } from "./techies-dire";
|
import { techiesDireTheme } from "./techies-dire";
|
||||||
|
|
@ -18,6 +34,7 @@ import { techiesRadiantTheme } from "./techies-radiant";
|
||||||
import { Theme } from "./Theme";
|
import { Theme } from "./Theme";
|
||||||
import { tronBlueTheme } from "./tron-blue";
|
import { tronBlueTheme } from "./tron-blue";
|
||||||
import { tronOrangeTheme } from "./tron-orange";
|
import { tronOrangeTheme } from "./tron-orange";
|
||||||
|
import { underwaterTheme } from "./underwater";
|
||||||
|
|
||||||
interface ThemeEntry {
|
interface ThemeEntry {
|
||||||
name: string;
|
name: string;
|
||||||
|
|
@ -142,4 +159,106 @@ export const themes: ThemeEntry[] = [
|
||||||
id: "tron-orange",
|
id: "tron-orange",
|
||||||
theme: tronOrangeTheme,
|
theme: tronOrangeTheme,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "Blue",
|
||||||
|
tags: [""],
|
||||||
|
id: "blue",
|
||||||
|
theme: blueTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Green",
|
||||||
|
tags: [""],
|
||||||
|
id: "green",
|
||||||
|
theme: greenTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Orange",
|
||||||
|
tags: [""],
|
||||||
|
id: "orange",
|
||||||
|
theme: orangeTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Pink",
|
||||||
|
tags: [""],
|
||||||
|
id: "pink",
|
||||||
|
theme: pinkTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Purple",
|
||||||
|
tags: [""],
|
||||||
|
id: "purple",
|
||||||
|
theme: purpleTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Red",
|
||||||
|
tags: [""],
|
||||||
|
id: "red",
|
||||||
|
theme: redTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Turquoise",
|
||||||
|
tags: [""],
|
||||||
|
id: "turquoise",
|
||||||
|
theme: turquoiseTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Yellow",
|
||||||
|
tags: [""],
|
||||||
|
id: "yellow",
|
||||||
|
theme: yellowTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Circuit",
|
||||||
|
tags: [""],
|
||||||
|
id: "circuit",
|
||||||
|
theme: circuitTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Circuit Binary",
|
||||||
|
tags: [""],
|
||||||
|
id: "circuit-biinary",
|
||||||
|
theme: circuitBinaryTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Farm",
|
||||||
|
tags: [""],
|
||||||
|
id: "farm",
|
||||||
|
theme: farmTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Halli Galli",
|
||||||
|
tags: ["No Numbers"],
|
||||||
|
id: "halli-galli",
|
||||||
|
theme: halliGalliTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Insects",
|
||||||
|
tags: ["No Numbers"],
|
||||||
|
id: "insects",
|
||||||
|
theme: insectsTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Binding of Isaac",
|
||||||
|
tags: ["Video Games"],
|
||||||
|
id: "isaac",
|
||||||
|
theme: isaacTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "MLG",
|
||||||
|
tags: [""],
|
||||||
|
id: "mlg",
|
||||||
|
theme: MLGTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Poop",
|
||||||
|
tags: [""],
|
||||||
|
id: "poop",
|
||||||
|
theme: poopTheme,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Underwater",
|
||||||
|
tags: [""],
|
||||||
|
id: "underwater",
|
||||||
|
theme: underwaterTheme,
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ const Collection = () => {
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-4 w-full">
|
<div className="flex flex-col gap-4 w-full">
|
||||||
<h2 className="text-white/90 text-xl">Collection</h2>
|
<h2 className="text-white/90 text-xl">Collection</h2>
|
||||||
<div className="flex flex-row gap-y-4 gap-x-8 items-center w-full flex-wrap justify-center">
|
<div className="flex flex-row gap-y-4 gap-x-8 items-center w-full flex-wrap justify-center mb-10">
|
||||||
{themes.map((theme) => (
|
{themes.map((theme) => (
|
||||||
<div key={theme.id}>
|
<div key={theme.id}>
|
||||||
<h3 className="text-white/90 text-lg">{theme.name}</h3>
|
<h3 className="text-white/90 text-lg">{theme.name}</h3>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue