From 14c6076c33764a6ef861e9654e4baa36ec566bbb Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 9 Jun 2025 13:44:48 -0500 Subject: [PATCH] Relate consts to theme values --- src/screens/PostThread/const.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/screens/PostThread/const.ts b/src/screens/PostThread/const.ts index 7cd629b4d4..cf559ac4e7 100644 --- a/src/screens/PostThread/const.ts +++ b/src/screens/PostThread/const.ts @@ -1,5 +1,7 @@ -export const TREE_INDENT = 16 +import {tokens} from '#/alf' + +export const TREE_INDENT = tokens.space.lg export const TREE_AVI_WIDTH = 24 export const LINEAR_AVI_WIDTH = 42 export const REPLY_LINE_WIDTH = 2 -export const OUTER_SPACE = 16 +export const OUTER_SPACE = tokens.space.lg