LivingDead NFT Project
This commit is contained in:
32
constants/blend_mode.js
Normal file
32
constants/blend_mode.js
Normal file
@@ -0,0 +1,32 @@
|
||||
const MODE = {
|
||||
sourceOver: "source-over",
|
||||
sourceIn: "source-in",
|
||||
sourceOut: "source-out",
|
||||
sourceAtop: "source-out",
|
||||
destinationOver: "destination-over",
|
||||
destinationIn: "destination-in",
|
||||
destinationOut: "destination-out",
|
||||
destinationAtop: "destination-atop",
|
||||
lighter: "lighter",
|
||||
copy: "copy",
|
||||
xor: "xor",
|
||||
multiply: "multiply",
|
||||
screen: "screen",
|
||||
overlay: "overlay",
|
||||
darken: "darken",
|
||||
lighten: "lighten",
|
||||
colorDodge: "color-dodge",
|
||||
colorBurn: "color-burn",
|
||||
hardLight: "hard-light",
|
||||
softLight: "soft-light",
|
||||
difference: "difference",
|
||||
exclusion: "exclusion",
|
||||
hue: "hue",
|
||||
saturation: "saturation",
|
||||
color: "color",
|
||||
luminosity: "luminosity",
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
MODE,
|
||||
};
|
8
constants/network.js
Normal file
8
constants/network.js
Normal file
@@ -0,0 +1,8 @@
|
||||
const NETWORK = {
|
||||
eth: "eth",
|
||||
sol: "sol",
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
NETWORK,
|
||||
};
|
Reference in New Issue
Block a user