17 lines
534 B
Dart
17 lines
534 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:rogapp/theme/pallete.dart';
|
|
|
|
class AppTheme {
|
|
static ThemeData theme = ThemeData.light(useMaterial3: true).copyWith(
|
|
scaffoldBackgroundColor: Pallete.WHITE_COLOR,
|
|
primaryColor: Pallete.BLUE_COLOR,
|
|
secondaryHeaderColor: Pallete.GREEN_COLOR,
|
|
appBarTheme: const AppBarTheme(
|
|
color: Pallete.BACKGROUND_COLOR,
|
|
elevation: 0
|
|
),
|
|
floatingActionButtonTheme: const FloatingActionButtonThemeData(
|
|
backgroundColor: Pallete.BLUE_COLOR
|
|
),
|
|
);
|
|
} |