2023-08-15 21:28:58 -07:00
|
|
|
import 'package:flowy_infra/theme.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
/// A class for the default appearance settings for the app
|
|
|
|
class DefaultAppearanceSettings {
|
|
|
|
static const kDefaultFontFamily = 'Poppins';
|
|
|
|
static const kDefaultThemeMode = ThemeMode.system;
|
|
|
|
static const kDefaultThemeName = "Default";
|
|
|
|
static const kDefaultTheme = BuiltInTheme.defaultTheme;
|
2023-12-20 18:34:25 -07:00
|
|
|
|
|
|
|
static Color getDefaultDocumentCursorColor(BuildContext context) {
|
|
|
|
return Theme.of(context).colorScheme.primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Color getDefaultDocumentSelectionColor(BuildContext context) {
|
|
|
|
return Theme.of(context).colorScheme.primary.withOpacity(0.2);
|
|
|
|
}
|
2023-08-15 21:28:58 -07:00
|
|
|
}
|