Creating Themes
Now when you're here, I guess you want to create a new theme for another shop. Here I will guide you on how it works, don't worry.
Creating your first theme
Navigate to
shared/themesCreate a new file, preferrably named something that makes sense, i'll call this
blackmarket.jsonNow that we've created our
blackmarket.jsonfile inside ofshared/themesOpen the fileCopy and paste this code
{
"primary": "",
"secondary": "",
"button_color": "",
"border": "",
"gradient": ""
}You're probably wondering, "but Skeexs, how do I know what to put in here", and I fully understand you
In this file I use rgba() formatting, and these are r, g, b, a. I.e 255, 0, 0, 1 this will display a fully red, not transparent at all.
If you have a hex color you want to use, use THIS website to convert it and paste the numbers WITHOUT the "rgba()", only the numbers
Now you're done with the theme configuration
When wanting to use this on a shop, add
theme = "filename"to the shop and it will apply by it self
If you still don't understand you could always joing my discord and open a ticket and ask :)
Last updated