diff --git a/img/goblinpay-badge-black.svg b/img/goblinpay-badge-black.svg deleted file mode 100644 index bbef89af..00000000 --- a/img/goblinpay-badge-black.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - Pay - diff --git a/img/goblinpay-wordmark.svg b/img/goblinpay-wordmark.svg deleted file mode 100644 index 2248bf2a..00000000 --- a/img/goblinpay-wordmark.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - diff --git a/src/gui/views/goblin/mod.rs b/src/gui/views/goblin/mod.rs index 4847107c..3bae9c2e 100644 --- a/src/gui/views/goblin/mod.rs +++ b/src/gui/views/goblin/mod.rs @@ -2007,23 +2007,12 @@ impl GoblinWalletView { .unwrap_or_else(|| ("N".to_string(), String::new())); let header_tex = self.handle_tex(ui.ctx(), wallet, &header_handle); ui.horizontal(|ui| { - // Official GoblinPay lockup (left): the black Apple-Pay-style badge on - // light surfaces, the white wordmark on dark. Owner-specified brand mark. - if t.dark_base { - ui.add( - egui::Image::new(egui::include_image!( - "../../../../img/goblinpay-wordmark.svg" - )) - .fit_to_exact_size(Vec2::new(84.0, 33.0)), - ); - } else { - ui.add( - egui::Image::new(egui::include_image!( - "../../../../img/goblinpay-badge-black.svg" - )) - .fit_to_exact_size(Vec2::new(98.0, 40.0)), - ); - } + // Goblin mark (left), sized to match the right-side controls. + ui.add( + egui::Image::new(egui::include_image!("../../../../img/goblin-logo2.svg")) + .tint(t.text) + .fit_to_exact_size(Vec2::splat(40.0)), + ); // Right cluster: scan QR (black, no background) then the profile // picture at the far right; all three controls about the same size. ui.with_layout(Layout::right_to_left(Align::Center), |ui| {