This commit is contained in:
Maciej Caderek
2022-03-08 05:28:08 +01:00
parent 24358c1fdd
commit 642b9b47a0
3 changed files with 18 additions and 54 deletions

View File

@@ -19,8 +19,6 @@ import mud from "./solid/mud";
import rose from "./solid/rose";
import avocado from "./solid/avocado";
// import flagUkraine from "./solid/flag-ukraine";
import smoothSunset from "./gradient/smooth-sunset";
import smoothSummer from "./gradient/smooth-summer";
import smoothSpring from "./gradient/smooth-spring";
@@ -65,8 +63,6 @@ const styles = {
botez,
avocado,
// flagUkraine,
smoothSunset,
smoothSummer,
smoothSpring,

View File

@@ -1,41 +0,0 @@
import { Style } from "../../../types";
const style: Style = {
name: "Ukraine",
category: "solid",
background: {
type: "solid",
data: {
color: "transparent",
},
},
dark: {
type: "solid",
data: {
color: "#3e81c9",
},
},
light: {
type: "solid",
data: {
color: "#FFEB82",
},
},
moveIndicator: {
type: "color",
data: "#00ff0055",
},
border: {
type: "solid",
data: {
color: "#003D7E",
},
},
coords: {
onLight: "#001D3C",
onDark: "#fff",
onBorder: "#FED500",
},
};
export default style;