Files
sharechess/src/board/styles-board/pic/lines_cardboard.ts

41 lines
653 B
TypeScript

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: {
color: "#1c67c933",
},
border: {
type: "image",
data: {
src: "/textures/cardboard.jpg",
},
},
coords: {
onLight: "#0000007f",
onDark: "#00000099",
onBorder: "#00000099",
},
ico: "/textures/cardboard_ico.png",
};
export default style;