diff --git a/lib/pages/routines/create_new_routines/dropdown_menu_content.dart b/lib/pages/routines/create_new_routines/dropdown_menu_content.dart index 67c19600..4b2206ba 100644 --- a/lib/pages/routines/create_new_routines/dropdown_menu_content.dart +++ b/lib/pages/routines/create_new_routines/dropdown_menu_content.dart @@ -76,7 +76,8 @@ class _DropdownMenuContentState extends State { child: TextFormField( controller: _searchController, onChanged: _handleSearch, - style: const TextStyle(fontSize: 14, color: Colors.black), + style: const TextStyle( + fontSize: 14, color: ColorsManager.blackColor), decoration: InputDecoration( hintText: 'Search for space...', prefixIcon: const Icon(Icons.search, size: 20), @@ -124,7 +125,9 @@ class _DropdownMenuContentState extends State { title: Text( community.name, style: TextStyle( - color: isSelected ? Colors.blue : Colors.black, + color: isSelected + ? ColorsManager.dropDownSelectBlue + : ColorsManager.blackColor, fontWeight: isSelected ? FontWeight.bold : FontWeight.normal, ),