From b96d9e5cdb26d8c03cf607d74f716e3fd7cc1c3b Mon Sep 17 00:00:00 2001 From: olaf Date: Sun, 21 Dec 2025 08:24:35 +0000 Subject: [PATCH] Update default accessibility preferences MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Theme: dark - Dyslexia font: enabled - Line spacing: loose - Reading width: wide - Enhanced focus: off (default) - Font size: 100% (level 3) - Reduced motion: system 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- themes/swissfini/assets/js/accessibility.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/themes/swissfini/assets/js/accessibility.js b/themes/swissfini/assets/js/accessibility.js index 0e7874c..ae72534 100644 --- a/themes/swissfini/assets/js/accessibility.js +++ b/themes/swissfini/assets/js/accessibility.js @@ -25,11 +25,11 @@ const DEFAULTS = { fontSize: 3, // 1-5 scale, 3 = 100% - theme: 'system', // 'light', 'dark', 'high-contrast', 'system' - dyslexiaFont: false, - lineSpacing: 'normal', // 'compact', 'normal', 'relaxed', 'loose' + theme: 'dark', // 'light', 'dark', 'high-contrast', 'system' + dyslexiaFont: true, + lineSpacing: 'loose', // 'compact', 'normal', 'relaxed', 'loose' reducedMotion: 'system', // 'true', 'false', 'system' - readingWidth: 'medium', // 'narrow', 'medium', 'wide' + readingWidth: 'wide', // 'narrow', 'medium', 'wide' enhancedFocus: false };