WIP
This commit is contained in:
@@ -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,
|
||||
|
||||
42
src/board/styles-board/lichess.ts
Normal file
42
src/board/styles-board/lichess.ts
Normal 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;
|
||||
Reference in New Issue
Block a user