WIP
This commit is contained in:
@@ -41,5 +41,3 @@ const style: Style = {
|
||||
};
|
||||
|
||||
export default style;
|
||||
|
||||
// background-image: linear-gradient( 68.3deg, rgba(245,177,97,1) 0.4%, rgba(236,54,110,1) 100.2% );
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import chesscom from "./mono/chesscom";
|
||||
import lichess from "./mono/lichess";
|
||||
import lila from "./mono/lila";
|
||||
import peach from "./mono/peach";
|
||||
@@ -15,6 +16,7 @@ import rainbowLight from "./gradient/rainbow-light";
|
||||
import kittens from "./pic/kittens";
|
||||
|
||||
export default {
|
||||
chesscom,
|
||||
lichess,
|
||||
lila,
|
||||
peach,
|
||||
|
||||
41
src/board/styles-board/mono/chesscom.ts
Normal file
41
src/board/styles-board/mono/chesscom.ts
Normal 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;
|
||||
Reference in New Issue
Block a user