APP_NEW/lib/Theme/light_mode.dart

18 lines
449 B
Dart
Raw Permalink Normal View History

2025-03-11 21:17:14 +08:00
import "package:flutter/material.dart";
ThemeData lightTheme = ThemeData(
appBarTheme: const AppBarTheme(
centerTitle: true,
elevation: 0,
),
colorScheme: ColorScheme.light(
background: Colors.grey.shade300,
surface: Colors.grey.shade300,
primary: Colors.grey.shade500,
secondary: Colors.grey.shade100,
tertiary: Colors.white,
inverseSurface: Colors.black,
inversePrimary: const Color(0xFF616161),
),
);