Added paper-style boards

This commit is contained in:
Maciej Caderek
2022-04-26 23:49:01 +02:00
parent 2da3b60118
commit 5f0e3b1e6f
11 changed files with 220 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
import { Style } from "../../../types";
const style: Style = {
category: "pic",
background: {
type: "solid",
data: {
color: "transparent",
},
},
dark: {
type: "image",
data: {
src: "/textures/squares/dark-lines2.svg",
},
},
light: {
type: "solid",
data: {
color: "transparent",
},
},
moveIndicator: {
type: "color",
data: "#55ff0022",
},
border: {
type: "image",
data: {
src: "/textures/paper.jpg",
},
},
coords: {
onLight: "#0000007f",
onDark: "#00000099",
onBorder: "#00000099",
},
ico: "/textures/paper_ico.png",
};
export default style;