WIP
This commit is contained in:
46
src/board/styles-board/solid/mono_rose.ts
Normal file
46
src/board/styles-board/solid/mono_rose.ts
Normal file
@@ -0,0 +1,46 @@
|
||||
import { Style } from "../../../types";
|
||||
|
||||
const bgColor = "#FB6299";
|
||||
const fgColor = "#FDB0CC";
|
||||
const darkFontColor = "#C8215D";
|
||||
const lightFontColor = "#ffffff";
|
||||
const borderFontColor = "#00000099";
|
||||
|
||||
const style: Style = {
|
||||
category: "solid",
|
||||
background: {
|
||||
type: "solid",
|
||||
data: {
|
||||
color: "transparent",
|
||||
},
|
||||
},
|
||||
dark: {
|
||||
type: "solid",
|
||||
data: {
|
||||
color: bgColor,
|
||||
},
|
||||
},
|
||||
light: {
|
||||
type: "solid",
|
||||
data: {
|
||||
color: fgColor,
|
||||
},
|
||||
},
|
||||
moveIndicator: {
|
||||
type: "color",
|
||||
data: "#ffff0033",
|
||||
},
|
||||
border: {
|
||||
type: "solid",
|
||||
data: {
|
||||
color: bgColor,
|
||||
},
|
||||
},
|
||||
coords: {
|
||||
onLight: darkFontColor,
|
||||
onDark: lightFontColor,
|
||||
onBorder: borderFontColor,
|
||||
},
|
||||
};
|
||||
|
||||
export default style;
|
||||
Reference in New Issue
Block a user