42 lines
650 B
TypeScript
42 lines
650 B
TypeScript
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: {
|
|
color: "#00ffff55",
|
|
},
|
|
border: {
|
|
type: "gradient",
|
|
data: {
|
|
dir: "vertical",
|
|
colors: ["#E8702C", "#6334B0"],
|
|
},
|
|
},
|
|
coords: {
|
|
onLight: "#00000077",
|
|
onDark: "#fff",
|
|
onBorder: "#fff",
|
|
},
|
|
};
|
|
|
|
export default style;
|