17 lines
422 B
Dart
17 lines
422 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'focus_flow_tokens.dart';
|
|
|
|
abstract final class FocusFlowTheme {
|
|
static ThemeData dark() {
|
|
final scheme = ColorScheme.fromSeed(
|
|
seedColor: FocusFlowTokens.accentMagenta,
|
|
brightness: Brightness.dark,
|
|
);
|
|
return ThemeData(
|
|
colorScheme: scheme,
|
|
scaffoldBackgroundColor: FocusFlowTokens.appBackground,
|
|
useMaterial3: true,
|
|
);
|
|
}
|
|
}
|