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

@@ -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% );

View File

@@ -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,

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;