40 lines
569 B
TypeScript
40 lines
569 B
TypeScript
import { Style } from "../../../types";
|
|
|
|
const style: Style = {
|
|
category: "solid",
|
|
background: {
|
|
type: "solid",
|
|
data: {
|
|
color: "transparent",
|
|
},
|
|
},
|
|
dark: {
|
|
type: "solid",
|
|
data: {
|
|
color: "#E54B4B",
|
|
},
|
|
},
|
|
light: {
|
|
type: "solid",
|
|
data: {
|
|
color: "#EFB293",
|
|
},
|
|
},
|
|
moveIndicator: {
|
|
color: "#ff00d044",
|
|
},
|
|
border: {
|
|
type: "solid",
|
|
data: {
|
|
color: "#9E3131",
|
|
},
|
|
},
|
|
coords: {
|
|
onLight: "#e54b4b",
|
|
onDark: "#EFB293",
|
|
onBorder: "#EFB293",
|
|
},
|
|
};
|
|
|
|
export default style;
|