WIP
This commit is contained in:
45
src/board/styles-board/gradient/sunset.ts
Normal file
45
src/board/styles-board/gradient/sunset.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
import { Style } from "../../../types";
|
||||
|
||||
const style: Style = {
|
||||
name: "Sunset",
|
||||
category: "gradient",
|
||||
background: {
|
||||
type: "gradient",
|
||||
data: {
|
||||
dir: "diagonal-top",
|
||||
colors: ["hsl(32, 88%, 67%)", "hsl(342, 83%, 57%)"],
|
||||
},
|
||||
},
|
||||
dark: {
|
||||
type: "solid",
|
||||
data: {
|
||||
color: "rgba(0, 0, 0, 0)",
|
||||
},
|
||||
},
|
||||
light: {
|
||||
type: "solid",
|
||||
data: {
|
||||
color: "rgba(255, 255, 255, 0.5)",
|
||||
},
|
||||
},
|
||||
moveIndicator: {
|
||||
type: "color",
|
||||
data: "#00ffee55",
|
||||
},
|
||||
border: {
|
||||
type: "gradient",
|
||||
data: {
|
||||
dir: "diagonal-top",
|
||||
colors: ["hsl(22, 68%, 57%)", "hsl(332, 63%, 47%)"],
|
||||
},
|
||||
},
|
||||
coords: {
|
||||
onLight: "hsl(332, 63%, 47%)",
|
||||
onDark: "#fff",
|
||||
onBorder: "#fff",
|
||||
},
|
||||
};
|
||||
|
||||
export default style;
|
||||
|
||||
// background-image: linear-gradient( 68.3deg, rgba(245,177,97,1) 0.4%, rgba(236,54,110,1) 100.2% );
|
||||
Reference in New Issue
Block a user