This commit is contained in:
Maciej Caderek
2022-01-16 05:20:19 +01:00
parent e1767fd48c
commit 7052c74171
7 changed files with 168 additions and 40 deletions

View File

@@ -3,6 +3,7 @@ import calm from "./calm";
import standard from "./standard";
import glass from "./glass";
// import kittens from "./kittens";
import lichess from "./lichess";
import lila from "./lila";
import mono from "./mono";
import peach from "./peach";
@@ -12,6 +13,7 @@ export default {
calm,
glass,
// kittens,
lichess,
lila,
mono,
peach,

View File

@@ -0,0 +1,42 @@
import { Style } from "../../types";
const style: Style = {
name: "Lichess",
background: {
type: "solid",
data: {
color: "transparent",
},
},
dark: {
type: "solid",
data: {
color: "#b58863",
},
},
light: {
type: "solid",
data: {
color: "#f0d9b5",
},
},
moveIndicator: {
type: "solid",
data: {
color: "rgba(155,199,0,0.41)",
},
},
border: null,
// border: {
// type: "solid",
// data: {
// color: "#896d56",
// },
// },
coords: {
lightColor: "#f0d9b5",
darkColor: "#b58863",
},
};
export default style;