WIP
BIN
public/textures/wood01.jpg
Normal file
|
After Width: | Height: | Size: 410 KiB |
BIN
public/textures/wood01_bg.jpg
Normal file
|
After Width: | Height: | Size: 430 KiB |
BIN
public/textures/wood01_bg2.jpg
Normal file
|
After Width: | Height: | Size: 2.9 MiB |
BIN
public/textures/wood02.jpg
Normal file
|
After Width: | Height: | Size: 244 KiB |
BIN
public/textures/wood02_bg.jpg
Normal file
|
After Width: | Height: | Size: 132 KiB |
BIN
public/textures/wood03.jpg
Normal file
|
After Width: | Height: | Size: 291 KiB |
BIN
public/textures/wood03_bg.jpg
Normal file
|
After Width: | Height: | Size: 236 KiB |
BIN
public/textures/wood04.jpg
Normal file
|
After Width: | Height: | Size: 205 KiB |
BIN
public/textures/wood04.jpg~
Normal file
|
After Width: | Height: | Size: 309 KiB |
BIN
public/textures/wood04_bg.jpg
Normal file
|
After Width: | Height: | Size: 224 KiB |
BIN
public/textures/wood04_bg.jpg~
Normal file
|
After Width: | Height: | Size: 2.4 MiB |
@@ -14,6 +14,10 @@ import laguna from "./gradient/laguna";
|
|||||||
import sunset from "./gradient/sunset";
|
import sunset from "./gradient/sunset";
|
||||||
|
|
||||||
// import kittens from "./pic/kittens";
|
// import kittens from "./pic/kittens";
|
||||||
|
import wood1 from "./pic/wood1";
|
||||||
|
import wood2 from "./pic/wood2";
|
||||||
|
import wood3 from "./pic/wood3";
|
||||||
|
import wood4 from "./pic/wood4";
|
||||||
|
|
||||||
const styles = {
|
const styles = {
|
||||||
standard,
|
standard,
|
||||||
@@ -29,6 +33,10 @@ const styles = {
|
|||||||
laguna,
|
laguna,
|
||||||
sunset,
|
sunset,
|
||||||
// kittens,
|
// kittens,
|
||||||
|
wood1,
|
||||||
|
wood2,
|
||||||
|
wood3,
|
||||||
|
wood4,
|
||||||
};
|
};
|
||||||
|
|
||||||
export default styles;
|
export default styles;
|
||||||
|
|||||||
@@ -1,40 +1,40 @@
|
|||||||
import { Style } from "../../../types";
|
import { Style } from "../../../types";
|
||||||
|
|
||||||
const style: Style = {
|
const style: Style = {
|
||||||
name: "Kittens",
|
name: "Wood 1",
|
||||||
category: "pic",
|
category: "pic",
|
||||||
background: {
|
background: {
|
||||||
type: "image",
|
type: "image",
|
||||||
data: {
|
data: {
|
||||||
src: "https://placekitten.com/720/720",
|
src: "/textures/wood01.jpg",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
dark: {
|
dark: {
|
||||||
type: "solid",
|
type: "solid",
|
||||||
data: {
|
data: {
|
||||||
color: "#00000055",
|
color: "transparent",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
light: {
|
light: {
|
||||||
type: "solid",
|
type: "solid",
|
||||||
data: {
|
data: {
|
||||||
color: "#ffffff55",
|
color: "transparent",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
moveIndicator: {
|
moveIndicator: {
|
||||||
type: "color",
|
type: "color",
|
||||||
data: "#ffff0055",
|
data: "#55ff0022",
|
||||||
},
|
},
|
||||||
border: {
|
border: {
|
||||||
type: "solid",
|
type: "image",
|
||||||
data: {
|
data: {
|
||||||
color: "#444",
|
src: "/textures/wood01_bg.jpg",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
coords: {
|
coords: {
|
||||||
onLight: "#333",
|
onLight: "#333",
|
||||||
onDark: "#eee",
|
onDark: "#eee",
|
||||||
onBorder: "#eee",
|
onBorder: "#ffffffbb",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
41
src/board/styles-board/pic/wood2.ts
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
import { Style } from "../../../types";
|
||||||
|
|
||||||
|
const style: Style = {
|
||||||
|
name: "Wood 2",
|
||||||
|
category: "pic",
|
||||||
|
background: {
|
||||||
|
type: "image",
|
||||||
|
data: {
|
||||||
|
src: "/textures/wood02.jpg",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
dark: {
|
||||||
|
type: "solid",
|
||||||
|
data: {
|
||||||
|
color: "transparent",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
light: {
|
||||||
|
type: "solid",
|
||||||
|
data: {
|
||||||
|
color: "transparent",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
moveIndicator: {
|
||||||
|
type: "color",
|
||||||
|
data: "#55ff0022",
|
||||||
|
},
|
||||||
|
border: {
|
||||||
|
type: "image",
|
||||||
|
data: {
|
||||||
|
src: "/textures/wood02_bg.jpg",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
coords: {
|
||||||
|
onLight: "#333",
|
||||||
|
onDark: "#eee",
|
||||||
|
onBorder: "#ffffffbb",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default style;
|
||||||
41
src/board/styles-board/pic/wood3.ts
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
import { Style } from "../../../types";
|
||||||
|
|
||||||
|
const style: Style = {
|
||||||
|
name: "Wood 3",
|
||||||
|
category: "pic",
|
||||||
|
background: {
|
||||||
|
type: "image",
|
||||||
|
data: {
|
||||||
|
src: "/textures/wood03.jpg",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
dark: {
|
||||||
|
type: "solid",
|
||||||
|
data: {
|
||||||
|
color: "transparent",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
light: {
|
||||||
|
type: "solid",
|
||||||
|
data: {
|
||||||
|
color: "transparent",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
moveIndicator: {
|
||||||
|
type: "color",
|
||||||
|
data: "#55ff0022",
|
||||||
|
},
|
||||||
|
border: {
|
||||||
|
type: "image",
|
||||||
|
data: {
|
||||||
|
src: "/textures/wood03_bg.jpg",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
coords: {
|
||||||
|
onLight: "#333",
|
||||||
|
onDark: "#eee",
|
||||||
|
onBorder: "#ffffffbb",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default style;
|
||||||
41
src/board/styles-board/pic/wood4.ts
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
import { Style } from "../../../types";
|
||||||
|
|
||||||
|
const style: Style = {
|
||||||
|
name: "Wood 4",
|
||||||
|
category: "pic",
|
||||||
|
background: {
|
||||||
|
type: "image",
|
||||||
|
data: {
|
||||||
|
src: "/textures/wood04.jpg",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
dark: {
|
||||||
|
type: "solid",
|
||||||
|
data: {
|
||||||
|
color: "transparent",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
light: {
|
||||||
|
type: "solid",
|
||||||
|
data: {
|
||||||
|
color: "transparent",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
moveIndicator: {
|
||||||
|
type: "color",
|
||||||
|
data: "#55ff0022",
|
||||||
|
},
|
||||||
|
border: {
|
||||||
|
type: "image",
|
||||||
|
data: {
|
||||||
|
src: "/textures/wood04_bg.jpg",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
coords: {
|
||||||
|
onLight: "#333",
|
||||||
|
onDark: "#eee",
|
||||||
|
onBorder: "#ffffffbb",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default style;
|
||||||
@@ -49,7 +49,7 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.light {
|
.light {
|
||||||
background-color: #b2bcc0;
|
background-color: #959ea1;
|
||||||
background-image: url(/img/pattern-light.png);
|
background-image: url(/img/pattern-light.png);
|
||||||
color: rgb(29, 31, 32);
|
color: rgb(29, 31, 32);
|
||||||
--logo-url: url(/img/logo-dark.svg);
|
--logo-url: url(/img/logo-dark.svg);
|
||||||
|
|||||||