refactor: Migrate to Tweakcn themes and enhance UI consistency

- Replaced references to AppColorPalettes with TweakcnThemes across various files to standardize theme usage.
- Updated the AppTheme and AppColorTokens to utilize TweakcnThemeDefinition for improved theme management.
- Adjusted UI components in ChatPage, ChatsDrawer, AppCustomizationPage, and ProfilePage to align with the new theme structure, ensuring consistent styling and color application.
- Removed the deprecated color_palettes.dart file to streamline the theme architecture.
This commit is contained in:
cogwheel0
2025-10-18 13:58:15 +05:30
parent 23071bb7b1
commit 60883315a2
14 changed files with 1700 additions and 1437 deletions

View File

@@ -1217,12 +1217,15 @@ class _ChatPageState extends ConsumerState<ChatPage> {
.set(false);
} catch (_) {}
},
drawer: SafeArea(
top: true,
bottom: true,
left: false,
right: false,
child: const ChatsDrawer(),
drawer: Container(
color: context.sidebarTheme.background,
child: SafeArea(
top: true,
bottom: true,
left: false,
right: false,
child: const ChatsDrawer(),
),
),
child: Scaffold(
backgroundColor: context.conduitTheme.surfaceBackground,