This commit is contained in:
Maciej Caderek
2022-01-28 01:23:28 +01:00
parent 6c401d1459
commit e000a0083a
24 changed files with 648 additions and 360 deletions

View File

@@ -0,0 +1,41 @@
import { Style } from "../../../types";
const style: Style = {
name: "Lila",
category: "mono",
background: {
type: "solid",
data: {
color: "transparent",
},
},
dark: {
type: "solid",
data: {
color: "#c0acb5",
},
},
light: {
type: "solid",
data: {
color: "#e5d0cb",
},
},
moveIndicator: {
type: "hueShift",
data: 180,
},
border: {
type: "solid",
data: {
color: "#735c66",
},
},
coords: {
onLight: "#876b77",
onDark: "#fff5f2",
onBorder: "#e5d0cb",
},
};
export default style;