mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-05-11 01:22:13 +00:00
17 lines
390 B
Dart
17 lines
390 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class BaseThemeV2 {
|
|
static final ThemeData appTheme = ThemeData(
|
|
colorScheme: ColorScheme(
|
|
brightness: brightness,
|
|
primary: primary,
|
|
onPrimary: onPrimary,
|
|
secondary: secondary,
|
|
onSecondary: onSecondary,
|
|
error: error,
|
|
onError: onError,
|
|
surface: surface,
|
|
onSurface: onSurface,
|
|
),
|
|
);
|
|
}
|