Also you can use colorScheme
property and set like below :
theme: ThemeData(
colorScheme: ColorScheme.fromSwatch().copyWith(
primary: const Colors.yellow[700],
secondary: const Colors.yellow.shade700,
// or from RGB
primary: const Color(0xFF343A40),
secondary: const Color(0xFFFFC107),
),
),