>>2264415It's the default fastfetch preset module, he didn't customize it as far as I can tell. After you install fastfetch, in your terminal run [code:lit]fastfetch -c all.jsonc[/code:lit]
It will display every available value that you can show, pick which ones you want to use and note their names. Edit [code:lit]~/.config/fastfetch/config.jsonc[/code:lit] Choose any values from this list and include them in the above file
https://github.com/fastfetch-cli/fastfetch/blob/dev/presets/all.jsonc#L9You can write custom text (with custom colours), this is what determines your 'theme'
[code:lit]
{
"type": "custom",
"format": "\u001b[31m■ \u001b[91m■ \u001b[33m■ \u001b[93m■ \u001b[32m■ \u001b[92m■ \u001b[34m■ \u001b[94m■ \u001b[36m■ \u001b[96m■ \u001b[35m■ \u001b[95m■ \u001b[30m■ \u001b[37m■ \u001b[90m■ \u001b[97m■"
},
{
"type": "custom",
"format": "\u001b[96m This is my distro"
},[/code:lit]
This includes a display of all your 14 terminal colours and a line of text you can edit and place anywhere. If you want a specific theme like dracula, import the theme colours to your terminal config file and it will display them properly.