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: "Standard",
category: "mono",
background: {
type: "solid",
data: {
color: "transparent",
},
},
dark: {
type: "solid",
data: {
color: "#999",
},
},
light: {
type: "solid",
data: {
color: "#eee",
},
},
moveIndicator: {
type: "color",
data: "#0088ff66",
},
border: {
type: "solid",
data: {
color: "#444",
},
},
coords: {
onLight: "#999",
onDark: "#eee",
onBorder: "#eee",
},
};
export default style;