'Default color scheme Flutter

In this tutorial author show how to prepare new ColorScheme:

const ColorScheme _customColorScheme = ColorScheme(
  primary: customMagenta50,
  primaryVariant: customMagenta600,
  secondary: Colors.amber,
  secondaryVariant: customMagenta400,
  surface: Colors.purpleAccent,
  background: customSurfaceWhite,
  error: customMagenta900,
  onPrimary: Colors.red,
  onSecondary: Colors.deepOrange,
  onSurface: customMagenta300,
  onBackground: customMagenta100,
  onError: Colors.redAccent,
  brightness: Brightness.light,
);

A lot of parameters are required in this constructor. Where I can find default colours used in default light theme? I want use code as above and change only one or two values (another values I change at next phase of my project).



Solution 1:[1]

You can apply changes to the default light ColorScheme like so:

final ColorScheme _colorScheme = ColorScheme.light().copyWith(->your changes<-);

Solution 2:[2]

You can check the source-code on GitHub. For default light colorSchema

You can use copyWith constructor.

 return MaterialApp(
      title: 'Flutter Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
        colorScheme: Theme.of(context).colorScheme.copyWith(
          //..here 
        )
      ),

An easy way to find attributes by pressing ctrl+space while you are inside the copyWith(..here.) method

enter image description here

You can find more details on flutter.dev > ColorScheme.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 TheUltimateOptimist
Solution 2