30 lines
716 B
Dart
30 lines
716 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AppTheme {
|
|
static final light = ThemeData(
|
|
useMaterial3: true,
|
|
colorScheme: ColorScheme.fromSeed(
|
|
seedColor: const Color(0xFF888888),
|
|
brightness: Brightness.light,
|
|
).copyWith(
|
|
primary: Colors.black,
|
|
onPrimary: Colors.white,
|
|
surface: Colors.white,
|
|
onSurface: Colors.black,
|
|
),
|
|
);
|
|
|
|
static final dark = ThemeData(
|
|
useMaterial3: true,
|
|
colorScheme: ColorScheme.fromSeed(
|
|
seedColor: const Color(0xFF888888),
|
|
brightness: Brightness.dark,
|
|
).copyWith(
|
|
primary: Colors.white,
|
|
onPrimary: Colors.black,
|
|
surface: const Color(0xFF121212),
|
|
onSurface: Colors.white,
|
|
),
|
|
);
|
|
}
|