This commit is contained in:
Maciej Caderek
2022-01-30 15:15:47 +01:00
parent 3023329586
commit 6ca3836586
12 changed files with 250 additions and 45 deletions

View File

@@ -0,0 +1,41 @@
import { Style } from "../../../types";
const style: Style = {
name: "Chessc*m",
category: "mono",
background: {
type: "solid",
data: {
color: "transparent",
},
},
dark: {
type: "solid",
data: {
color: "#769656",
},
},
light: {
type: "solid",
data: {
color: "#eeeed2",
},
},
moveIndicator: {
type: "color",
data: "#ffff007f",
},
border: {
type: "solid",
data: {
color: "#40522f",
},
},
coords: {
onLight: "#40522f",
onDark: "#fcfce1",
onBorder: "#eeeed2",
},
};
export default style;