Change the main color and logo of your website.
This page explains only two things:
You will only edit simple values in two files:
config/branding.tsconfig/header.tsconfig/branding.ts.export const colorsConfig = {
primary: "#19D773",
"primary-foreground": "#000000",
};"#19D773" with your brand color (for example "#FF3B6A")."primary-foreground" to "#FFFFFF" (white)."#000000" (black).You can get color codes (like
#FF3B6A) from any online color picker.
public folder.public/my-logo.png.config/header.ts.logo: {
src: "/logo.svg",
altKey: "Sifo",
width: 32,
height: 32,
},src to your file path, for example:src: "/my-logo.png",width and height so the logo looks good (for example 48 and 48).The small text description of the logo (used for accessibility) comes from the translation files:
config/messages/en.jsonconfig/messages/es.jsonInside those files, look for the "Header" section and the "logoAlt" value.
Change the text there in both files to describe your own brand.