Structure

The basic structure of a theme consists of two files: main.css and manifest.json. The main.css file contains all the CSS code that defines the appearance of the theme, while the manifest.json file provides metadata about the theme, such as its name, author, and version.

main.css
manifest.json

The manifest.json file should follow this structure:

{
	"name": "My Theme",
	"author": "Your Name",
	"version": "1.0.0",
	"description": "A brief description of your theme."
}