This commit is contained in:
Maciej Caderek
2022-01-28 01:23:28 +01:00
parent 6c401d1459
commit e000a0083a
24 changed files with 648 additions and 360 deletions

View 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% );