Skip to content

Theming & Customization

DashLearn is designed to be easily themed. You can change colors, fonts, and strings to match your brand identity.

The app’s color palette is defined in lib/app/utils/app_colors.dart (or similar, depending on exact file structure). The main theme configuration is located in lib/app/app_theme.dart.

To change the primary brand color:

  1. Open lib/app/app_theme.dart.
  2. Locate the primaryColor definition.
  3. Update the Color value.
// Example in app_theme.dart
static const Color primaryColor = Color(0xFF6C63FF); // Change this hex code
  1. Replace the files in assets/images/ with your own logo images.

    • app_logo.png
    • app_launcher_icon.png
  2. Run the launcher icons generator:

    Terminal window
    flutter pub run flutter_launcher_icons