From eb241ab3fcbee22c26f3728ef846761a9ef1cd93 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}; }