From ef11dc6c8043736ddb5de602a719e6bd06951453 Mon Sep 17 00:00:00 2001 From: Stefan Dej Date: Sun, 7 Jul 2024 18:07:30 +0200 Subject: [PATCH 1/2] feat(theme): add LDO Motion theme (#1932) --- public/img/themes/sidebarLogo-ldo.svg | 7 +++++++ src/store/variables.ts | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 public/img/themes/sidebarLogo-ldo.svg diff --git a/public/img/themes/sidebarLogo-ldo.svg b/public/img/themes/sidebarLogo-ldo.svg new file mode 100644 index 000000000..d9a80686d --- /dev/null +++ b/public/img/themes/sidebarLogo-ldo.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/store/variables.ts b/src/store/variables.ts index e7f896a73..a8c887e42 100644 --- a/src/store/variables.ts +++ b/src/store/variables.ts @@ -161,4 +161,11 @@ export const themes: Theme[] = [ colorLogo: '#FF2300', logo: { show: true, light: false }, }, + { + name: 'ldo', + displayName: 'LDO Motion (Sponsor)', + colorLogo: '#326799', + colorPrimary: '#326799', + logo: { show: true, light: false }, + }, ] From ae5dceba1e61f0d21de518a037d6ccb68304fdf8 Mon Sep 17 00:00:00 2001 From: Stefan Dej Date: Sun, 7 Jul 2024 18:13:36 +0200 Subject: [PATCH 2/2] feat(theme): add YUMI theme (#1936) --- public/img/themes/sidebarLogo-yumi.svg | 1 + src/store/variables.ts | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 public/img/themes/sidebarLogo-yumi.svg diff --git a/public/img/themes/sidebarLogo-yumi.svg b/public/img/themes/sidebarLogo-yumi.svg new file mode 100644 index 000000000..0b3c6b4ce --- /dev/null +++ b/public/img/themes/sidebarLogo-yumi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/store/variables.ts b/src/store/variables.ts index a8c887e42..a7e76b4fb 100644 --- a/src/store/variables.ts +++ b/src/store/variables.ts @@ -168,4 +168,11 @@ export const themes: Theme[] = [ colorPrimary: '#326799', logo: { show: true, light: false }, }, + { + name: 'yumi', + displayName: 'YUMI (Sponsor)', + colorLogo: '#F6CF3D', + colorPrimary: '#F6CF3D', + logo: { show: true, light: false }, + }, ]