From 090c89187f7d81faca7a7b1ebb868b3649d08da0 Mon Sep 17 00:00:00 2001 From: ariel-lindemann <41641978+ariel-lindemann@users.noreply.github.com> Date: Thu, 19 Feb 2026 13:51:33 +0100 Subject: [PATCH] feat: increase keyboard font size for classic theme (#897) ## Summary * **What is the goal of this PR?** (e.g., Implements the new feature for file uploading.) Adresses Feature Request #896 * **What changes are included?** Changed key dimensions, initial positions and margins. ## Additional Context The keyboard now looks like this: ![image](https://github.com/user-attachments/assets/e2b8f3fe-e54a-4a44-9a29-2ef9f2c8dffb) --- ### AI Usage While CrossPoint doesn't have restrictions on AI tools in contributing, please be transparent about their usage as it helps set the right context for reviewers. Did you use AI tools to help write this code? _**NO**_ --- src/components/themes/BaseTheme.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/themes/BaseTheme.h b/src/components/themes/BaseTheme.h index 7bc89f74..91193d39 100644 --- a/src/components/themes/BaseTheme.h +++ b/src/components/themes/BaseTheme.h @@ -90,9 +90,9 @@ constexpr ThemeMetrics values = {.batteryWidth = 15, .sideButtonHintsWidth = 30, .progressBarHeight = 16, .bookProgressBarHeight = 4, - .keyboardKeyWidth = 18, - .keyboardKeyHeight = 18, - .keyboardKeySpacing = 3, + .keyboardKeyWidth = 22, + .keyboardKeyHeight = 30, + .keyboardKeySpacing = 10, .keyboardBottomAligned = false, .keyboardCenteredText = false}; }