-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.js
More file actions
53 lines (51 loc) · 1.86 KB
/
settings.js
File metadata and controls
53 lines (51 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
let settings = {
background: {
active: false,
image: "./bg/2.jpg", // Path to the background image
},
particles: true, // Set to true to enable particles, false to disable
genreColorsActive: true, // Set to true to enable genre colors, false to disable
genreColors: {
Default: "#FFFFFF", // Default color for genres not specified or when genre colors are disabled
Trap: "#8C0F27",
DNB: "#F21904",
House: "#EA8C00",
Electro: "#E6CE00",
HardDance: "#019700",
GlitchHop: "#0B9757",
NuDisco: "#1CABB3",
FutureBass: "#9A98FC",
Trance: "#007EE7",
Dubstep: "#8D04E1",
Drumstep: "#F32188",
Electronic: "#C1C1C1",
}
}
let songList = [{
Info: "Do not remove this Object. Add your songs below this line."
},
///////////////////////////////////////////////////////////////////////
{
Artist: "Au5", // Main artist
Title: "Follow You", // Title of the song
Additional: "feat. Danyka Nadeau", // Additional artists, if any (e.g., featured artists or remixers)
Audio: "./audio/au5-follow-you.mp3", // Path to the audio file
Cover: "./cover/au5-follow-you.webp", // Path to the cover image
Genre: "FutureBass" // Genre of the song (has to match the genreColors settings)
}, {
Artist: "Sound Remedy & Nitro Fun",
Title: "Turbo Penguin",
Additional: false,
Audio: "./audio/sound-remedy-nitro-fun-turbo-penguin.mp3",
Cover: "./cover/sound-remedy-nitro-fun-turbo-penguin.webp",
Genre: "GlitchHop"
},
{
Artist: "Trivecta, AMIDY & RØRY",
Title: "Riptide",
Additional: false,
Audio: "./audio/trivecta-amidy-rory-riptide.mp3",
Cover: "./cover/trivecta-amidy-rory-riptide.webp",
Genre: "FutureBass"
}
]