feat: Update dialog styles and background colors for consistency across screens

This commit is contained in:
2026-05-23 11:27:26 +02:00
parent f4bb5104e2
commit 29881183ed
5 changed files with 37 additions and 5 deletions
+5 -1
View File
@@ -202,7 +202,11 @@ class _NoteEditorScreenState extends State<NoteEditorScreen> {
final bool isDeletedNote = _currentNote.isDeleted;
return AlertDialog(
backgroundColor: AppColors.surfaceElevated,
backgroundColor: AppColors.cardBackground,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
side: BorderSide(color: AppColors.border),
),
title: Text(
isDeletedNote ? 'Eliminar permanentemente' : 'Eliminar nota',
style: const TextStyle(color: AppColors.textPrimary),