This commit is contained in:
Maciej Caderek
2022-02-18 18:58:22 +01:00
parent ec4a63b59b
commit b14d7c7a3e
17 changed files with 140 additions and 9 deletions

View File

@@ -0,0 +1,41 @@
import { Style } from "../../../types";
const style: Style = {
name: "Wood 4",
category: "pic",
background: {
type: "image",
data: {
src: "/textures/wood04.jpg",
},
},
dark: {
type: "solid",
data: {
color: "transparent",
},
},
light: {
type: "solid",
data: {
color: "transparent",
},
},
moveIndicator: {
type: "color",
data: "#55ff0022",
},
border: {
type: "image",
data: {
src: "/textures/wood04_bg.jpg",
},
},
coords: {
onLight: "#333",
onDark: "#eee",
onBorder: "#ffffffbb",
},
};
export default style;