This commit is contained in:
Maciej Caderek
2022-04-23 03:58:31 +02:00
parent 8462bb949a
commit 4e67a55a15
83 changed files with 692 additions and 167 deletions

View File

@@ -0,0 +1,42 @@
import { Style } from "../../../types";
const style: Style = {
category: "gradient",
background: {
type: "gradient",
data: {
dir: "vertical",
colors: ["#FF8D4D", "#914DFF"],
},
},
dark: {
type: "solid",
data: {
color: "transparent",
},
},
light: {
type: "solid",
data: {
color: "#ffffff66",
},
},
moveIndicator: {
type: "color",
data: "#00ffff55",
},
border: {
type: "gradient",
data: {
dir: "vertical",
colors: ["#E8702C", "#6334B0"],
},
},
coords: {
onLight: "#00000077",
onDark: "#fff",
onBorder: "#fff",
},
};
export default style;