diff --git a/public/backgrounds/logo-dark.png b/public/backgrounds/logo-dark.png deleted file mode 100644 index 281d61899..000000000 Binary files a/public/backgrounds/logo-dark.png and /dev/null differ diff --git a/public/backgrounds/logo.png b/public/backgrounds/logo.png deleted file mode 100644 index ef5353e0c..000000000 Binary files a/public/backgrounds/logo.png and /dev/null differ diff --git a/public/backgrounds/logo.svg b/public/backgrounds/logo.svg new file mode 100644 index 000000000..651ce3085 --- /dev/null +++ b/public/backgrounds/logo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/backgrounds/logo_dark.svg b/public/backgrounds/logo_dark.svg new file mode 100644 index 000000000..cc93d19d3 --- /dev/null +++ b/public/backgrounds/logo_dark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/constants.ts b/src/constants.ts index c08e55d57..6a77270a2 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -360,5 +360,5 @@ export const FANCY_BACKGROUND_IMAGES = { export const DEFAULT_FANCY_BACKGROUND_IMAGE: keyof typeof FANCY_BACKGROUND_IMAGES = "solid" as const; -export const EXPORT_LOGO_URL = "/backgrounds/logo.png" as DataURL; -export const EXPORT_LOGO_URL_DARK = "/backgrounds/logo-dark.png" as DataURL; +export const EXPORT_LOGO_URL = "/backgrounds/logo.svg" as DataURL; +export const EXPORT_LOGO_URL_DARK = "/backgrounds/logo_dark.svg" as DataURL;