Customizing Logo in Forgejo
Customizing the logo and favicon in Forgejo is quite simple and we just need an .svg
file that needs to replaced with the current Forgejo icons.
Let’s use fedora.svg
as an example for this:
- Head inside the parent directory of
forgejo
. - Copy the
fedora.svg
intoassets/
. - Change the name of
fedora.svg
intofavicon.svg
&logo.svg
(making it two files). - From the parent directory of
forgejo
, run this command:
make generate-images
The above command will generate the respective files into public/assets/img
, that is:
public/assets/img/logo.svg
- Used for site icon, app iconpublic/assets/img/logo.png
- Used for Open Graphpublic/assets/img/avatar_default.png
- Used as the default avatar imagepublic/assets/img/apple-touch-icon.png
- Used on iOS devices for bookmarkspublic/assets/img/favicon.svg
- Used for faviconpublic/assets/img/favicon.png
- Used as fallback for browsers that don’t support SVG favicons
In simple terms, we don’t have to manually add the images into public/assets/img
and everything will be generated using that command.
Customizing the colors of the theme:
For now, I just changed the colors of each theme manually, this directory consists of sources for changing the themes.
web_src/css/themes/*
Filenames of the theme files:
theme-fedora-auto.css
theme-fedora-dark.css
theme-fedora-light.css
Changing the UI elements of the theme list:
Changed the UI element by modifying the element in modules/settings/ui.go
. Make sure the theme name & the file names are the same:
Themes: []string{`fedora-auto`, `fedora-light`, `fedora-dark`},