add tags / fix them name
|
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 255 B |
|
Before Width: | Height: | Size: 337 B After Width: | Height: | Size: 337 B |
|
Before Width: | Height: | Size: 436 B After Width: | Height: | Size: 436 B |
|
Before Width: | Height: | Size: 296 B After Width: | Height: | Size: 296 B |
|
Before Width: | Height: | Size: 358 B After Width: | Height: | Size: 358 B |
|
Before Width: | Height: | Size: 387 B After Width: | Height: | Size: 387 B |
|
Before Width: | Height: | Size: 290 B After Width: | Height: | Size: 290 B |
|
Before Width: | Height: | Size: 373 B After Width: | Height: | Size: 373 B |
|
Before Width: | Height: | Size: 444 B After Width: | Height: | Size: 444 B |
|
Before Width: | Height: | Size: 389 B After Width: | Height: | Size: 389 B |
|
Before Width: | Height: | Size: 621 B After Width: | Height: | Size: 621 B |
|
Before Width: | Height: | Size: 489 B After Width: | Height: | Size: 489 B |
|
Before Width: | Height: | Size: 147 B After Width: | Height: | Size: 147 B |
|
Before Width: | Height: | Size: 263 B After Width: | Height: | Size: 263 B |
|
|
@ -0,0 +1,20 @@
|
||||||
|
import { Theme } from "../Theme";
|
||||||
|
|
||||||
|
export const dwarfFortressTheme: Theme = {
|
||||||
|
size: 32,
|
||||||
|
mine: () => import("../../assets/themes/color-palettes/crimson/mine.png"),
|
||||||
|
tile: () => import("../../assets/themes/color-palettes/crimson/tile.png"),
|
||||||
|
revealed: () => import("../../assets/themes/color-palettes/crimson/revealed.png"),
|
||||||
|
flag: () => import("../../assets/themes/color-palettes/crimson/flag.png"),
|
||||||
|
questionMark: () =>
|
||||||
|
import("../../assets/themes/color-palettes/crimson/question-mark.png"),
|
||||||
|
lastPos: () => import("../../assets/themes/color-palettes/crimson/last-pos.png"),
|
||||||
|
1: () => import("../../assets/themes/color-palettes/crimson/1.png"),
|
||||||
|
2: () => import("../../assets/themes/color-palettes/crimson/2.png"),
|
||||||
|
3: () => import("../../assets/themes/color-palettes/crimson/3.png"),
|
||||||
|
4: () => import("../../assets/themes/color-palettes/crimson/4.png"),
|
||||||
|
5: () => import("../../assets/themes/color-palettes/crimson/5.png"),
|
||||||
|
6: () => import("../../assets/themes/color-palettes/crimson/6.png"),
|
||||||
|
7: () => import("../../assets/themes/color-palettes/crimson/7.png"),
|
||||||
|
8: () => import("../../assets/themes/color-palettes/crimson/8.png"),
|
||||||
|
};
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
import { Theme } from "../Theme";
|
|
||||||
|
|
||||||
export const dwarfFortressTheme: Theme = {
|
|
||||||
size: 32,
|
|
||||||
mine: () => import("../../assets/themes/color-palettes/dwarf-fortress/mine.png"),
|
|
||||||
tile: () => import("../../assets/themes/color-palettes/dwarf-fortress/tile.png"),
|
|
||||||
revealed: () => import("../../assets/themes/color-palettes/dwarf-fortress/revealed.png"),
|
|
||||||
flag: () => import("../../assets/themes/color-palettes/dwarf-fortress/flag.png"),
|
|
||||||
questionMark: () =>
|
|
||||||
import("../../assets/themes/color-palettes/dwarf-fortress/question-mark.png"),
|
|
||||||
lastPos: () => import("../../assets/themes/color-palettes/dwarf-fortress/last-pos.png"),
|
|
||||||
1: () => import("../../assets/themes/color-palettes/dwarf-fortress/1.png"),
|
|
||||||
2: () => import("../../assets/themes/color-palettes/dwarf-fortress/2.png"),
|
|
||||||
3: () => import("../../assets/themes/color-palettes/dwarf-fortress/3.png"),
|
|
||||||
4: () => import("../../assets/themes/color-palettes/dwarf-fortress/4.png"),
|
|
||||||
5: () => import("../../assets/themes/color-palettes/dwarf-fortress/5.png"),
|
|
||||||
6: () => import("../../assets/themes/color-palettes/dwarf-fortress/6.png"),
|
|
||||||
7: () => import("../../assets/themes/color-palettes/dwarf-fortress/7.png"),
|
|
||||||
8: () => import("../../assets/themes/color-palettes/dwarf-fortress/8.png"),
|
|
||||||
};
|
|
||||||
|
|
@ -3,7 +3,7 @@ import { blackAndWhiteTheme } from "./black-and-white";
|
||||||
import { catsTheme } from "./cats";
|
import { catsTheme } from "./cats";
|
||||||
import { circuitTheme } from "./circuit";
|
import { circuitTheme } from "./circuit";
|
||||||
import { circuitBinaryTheme } from "./circuit-binary";
|
import { circuitBinaryTheme } from "./circuit-binary";
|
||||||
import { dwarfFortressTheme } from "./color-palettes/dwarf-fortress";
|
import { dwarfFortressTheme } from "./color-palettes/crimson";
|
||||||
import { nauticalTheme } from "./color-palettes/nautical";
|
import { nauticalTheme } from "./color-palettes/nautical";
|
||||||
import { shadowWarriorTheme } from "./color-palettes/shadow-warrior";
|
import { shadowWarriorTheme } from "./color-palettes/shadow-warrior";
|
||||||
import { upInSmokeTheme } from "./color-palettes/up-in-smoke";
|
import { upInSmokeTheme } from "./color-palettes/up-in-smoke";
|
||||||
|
|
@ -165,67 +165,67 @@ export const themes: ThemeEntry[] = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Blue",
|
name: "Blue",
|
||||||
tags: [""],
|
tags: ["Monochrome"],
|
||||||
id: "blue",
|
id: "blue",
|
||||||
theme: blueTheme,
|
theme: blueTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Green",
|
name: "Green",
|
||||||
tags: [""],
|
tags: ["Monochrome"],
|
||||||
id: "green",
|
id: "green",
|
||||||
theme: greenTheme,
|
theme: greenTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Orange",
|
name: "Orange",
|
||||||
tags: [""],
|
tags: ["Monochrome"],
|
||||||
id: "orange",
|
id: "orange",
|
||||||
theme: orangeTheme,
|
theme: orangeTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Pink",
|
name: "Pink",
|
||||||
tags: [""],
|
tags: ["Monochrome"],
|
||||||
id: "pink",
|
id: "pink",
|
||||||
theme: pinkTheme,
|
theme: pinkTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Purple",
|
name: "Purple",
|
||||||
tags: [""],
|
tags: ["Monochrome"],
|
||||||
id: "purple",
|
id: "purple",
|
||||||
theme: purpleTheme,
|
theme: purpleTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Red",
|
name: "Red",
|
||||||
tags: [""],
|
tags: ["Monochrome"],
|
||||||
id: "red",
|
id: "red",
|
||||||
theme: redTheme,
|
theme: redTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Turquoise",
|
name: "Turquoise",
|
||||||
tags: [""],
|
tags: ["Monochrome"],
|
||||||
id: "turquoise",
|
id: "turquoise",
|
||||||
theme: turquoiseTheme,
|
theme: turquoiseTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Yellow",
|
name: "Yellow",
|
||||||
tags: [""],
|
tags: ["Monochrome"],
|
||||||
id: "yellow",
|
id: "yellow",
|
||||||
theme: yellowTheme,
|
theme: yellowTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Circuit",
|
name: "Circuit",
|
||||||
tags: [""],
|
tags: [],
|
||||||
id: "circuit",
|
id: "circuit",
|
||||||
theme: circuitTheme,
|
theme: circuitTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Circuit Binary",
|
name: "Circuit Binary",
|
||||||
tags: [""],
|
tags: ["No Numbers"],
|
||||||
id: "circuit-biinary",
|
id: "circuit-biinary",
|
||||||
theme: circuitBinaryTheme,
|
theme: circuitBinaryTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Farm",
|
name: "Farm",
|
||||||
tags: [""],
|
tags: [],
|
||||||
id: "farm",
|
id: "farm",
|
||||||
theme: farmTheme,
|
theme: farmTheme,
|
||||||
},
|
},
|
||||||
|
|
@ -249,44 +249,44 @@ export const themes: ThemeEntry[] = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "MLG",
|
name: "MLG",
|
||||||
tags: [""],
|
tags: [],
|
||||||
id: "mlg",
|
id: "mlg",
|
||||||
theme: MLGTheme,
|
theme: MLGTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Poop",
|
name: "Poop",
|
||||||
tags: [""],
|
tags: [],
|
||||||
id: "poop",
|
id: "poop",
|
||||||
theme: poopTheme,
|
theme: poopTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Underwater",
|
name: "Underwater",
|
||||||
tags: [""],
|
tags: [],
|
||||||
id: "underwater",
|
id: "underwater",
|
||||||
theme: underwaterTheme,
|
theme: underwaterTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Nautical",
|
name: "Nautical",
|
||||||
tags: [""],
|
tags: [],
|
||||||
id: "nautical",
|
id: "nautical",
|
||||||
theme: nauticalTheme,
|
theme: nauticalTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Up in Smoke",
|
name: "Up in Smoke",
|
||||||
tags: [""],
|
tags: [],
|
||||||
id: "up-in-smoke",
|
id: "up-in-smoke",
|
||||||
theme: upInSmokeTheme,
|
theme: upInSmokeTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Shadow Warrior",
|
name: "Shadow Warrior",
|
||||||
tags: [""],
|
tags: [],
|
||||||
id: "shadow-warrior",
|
id: "shadow-warrior",
|
||||||
theme: shadowWarriorTheme,
|
theme: shadowWarriorTheme,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Dwarf Fortress",
|
name: "Crimson",
|
||||||
tags: [""],
|
tags: [],
|
||||||
id: "dwarf-fortress",
|
id: "crimson",
|
||||||
theme: dwarfFortressTheme,
|
theme: dwarfFortressTheme,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
||||||