open-goverance/Resources/Logo_Variants
2025-06-15 22:49:52 +01:00
..
_festivals.toml logo: added the server logo config to OG 2025-06-15 22:49:52 +01:00
Christmas_2024.png Upload files to "Resources/Logo_Variants" 2024-12-01 14:58:01 +00:00
Halloween_2024.png Added the Haloween Logo 2024-10-27 20:22:01 +00:00
Logo_2024.svg fmt: re-organise the logos so only the current version is out of teh varients folder 2025-03-18 01:12:27 +00:00
Logo_Pre-2024.png fmt: re-organise the logos so only the current version is out of teh varients folder 2025-03-18 01:12:27 +00:00
Pride_2025.svg Pride month logo for June 2025-06-06 16:19:42 +00:00
README.md logo: added the server logo config to OG 2025-06-15 22:49:52 +01:00

Server Logos

This folder contains images used for the Discord server icon.
It also contains _festivals.toml which is used to choose what icon to show.

Festivals

The config format for festivals is as follows

[[festivals]]
name = "pride"
all_year = true
start = { day =  1, month =  6, year = 0}
end   = { day = 30, month =  6, year = 0}

[[festivals]]
name = "easter"
all_year = false
start = { day =  13, month = 4, year = 2025}
end   = { day = 27, month = 4, year = 2025}

[[festivals]]

This "header" creates an array in the toml format, with everything below it (until the next [[festivals]]) is part of that item.

name

Name of the festival, searches for icons which contain this name.

all_year

Can these icons be used year round?
In the sample above the pride icons can be used all year while the easter ones cannot.

start/end

What is the start/end dates of the festival. If the year is set to 0 then its for every year like the Pride one above.
Conversely if the year is filled in then it is only for that year, useful for moving festivals such as Easter

If there is no active festival then any icon can be chosen, takingall_year into account.

Adding new icons/Festivals

  1. Fork this repo
  2. Ensure that you have git and git-lfs installed.
  3. Add the new logos/festivals
    Image format:
    • svg
    • jpg
    • png
    • gif
  4. Open a pull request