WIP
This commit is contained in:
42
src/board/styles-board/gradient/contrast_c.ts
Normal file
42
src/board/styles-board/gradient/contrast_c.ts
Normal 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;
|
||||
Reference in New Issue
Block a user