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: "diagonal-top",
colors: ["#DC3BCC", "#9E52FF"],
},
},
dark: {
type: "solid",
data: {
color: "transparent",
},
},
light: {
type: "solid",
data: {
color: "#ffffff7f",
},
},
moveIndicator: {
type: "color",
data: "#ffaa0055",
},
border: {
type: "gradient",
data: {
dir: "diagonal-top",
colors: ["#AF2EA2", "#8243D3"],
},
},
coords: {
onLight: "#9838BA",
onDark: "#fff",
onBorder: "#fff",
},
};
export default style;