diff --git a/src/constants.ts b/src/constants.ts
index d14013f5..c5bcba9d 100644
--- a/src/constants.ts
+++ b/src/constants.ts
@@ -424,6 +424,8 @@ export const FONT_SIZE = {
LARGE: 'large'
} as const
+export const DEFAULT_FONT_SIZE = FONT_SIZE.LARGE
+
/**
* Random public relays (from NIP-66 lively list; write-tested monitors preferred) merged into the
* publish relay picker. More candidates improve odds some accept open writes.
diff --git a/src/pages/secondary/GeneralSettingsPage/index.tsx b/src/pages/secondary/GeneralSettingsPage/index.tsx
index 8aba8e9d..0f6fda64 100644
--- a/src/pages/secondary/GeneralSettingsPage/index.tsx
+++ b/src/pages/secondary/GeneralSettingsPage/index.tsx
@@ -3,6 +3,7 @@ import { Label } from '@/components/ui/label'
import { Select, SelectContent, SelectItem, SelectTrigger } from '@/components/ui/select'
import { Switch } from '@/components/ui/switch'
import {
+ DEFAULT_FONT_SIZE,
FONT_SIZE,
MEDIA_AUTO_LOAD_POLICY,
NOTIFICATION_LIST_STYLE,
@@ -111,7 +112,7 @@ const GeneralSettingsPage = forwardRef(({ index, hideTitlebar = false }: { index
-