forked from firka/student-legacy
150 lines
6.8 KiB
Dart
150 lines
6.8 KiB
Dart
import 'package:filcnaplo/models/settings.dart';
|
|
import 'package:filcnaplo/theme/colors/accent.dart';
|
|
import 'package:filcnaplo/theme/colors/colors.dart';
|
|
import 'package:filcnaplo/theme/observer.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:material_color_utilities/material_color_utilities.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
class AppTheme {
|
|
// Dev note: All of these could be constant variables, but this is better for
|
|
// development (you don't have to hot-restart)
|
|
|
|
static const String _fontFamily = "Montserrat";
|
|
|
|
static Color? _paletteAccentLight(CorePalette? palette) => palette != null ? Color(palette.primary.get(70)) : null;
|
|
static Color? _paletteHighlightLight(CorePalette? palette) => palette != null ? Color(palette.neutral.get(100)) : null;
|
|
static Color? _paletteBackgroundLight(CorePalette? palette) => palette != null ? Color(palette.neutral.get(95)) : null;
|
|
|
|
static Color? _paletteAccentDark(CorePalette? palette) => palette != null ? Color(palette.primary.get(80)) : null;
|
|
static Color? _paletteBackgroundDark(CorePalette? palette) => palette != null ? Color(palette.neutralVariant.get(10)) : null;
|
|
static Color? _paletteHighlightDark(CorePalette? palette) => palette != null ? Color(palette.neutralVariant.get(20)) : null;
|
|
|
|
// Light Theme
|
|
static ThemeData lightTheme(BuildContext context, {CorePalette? palette}) {
|
|
var lightColors = AppColors.fromBrightness(Brightness.light);
|
|
final settings = Provider.of<SettingsProvider>(context, listen: false);
|
|
AccentColor accentColor = settings.accentColor;
|
|
final customAccentColor = accentColor == AccentColor.custom ? settings.customAccentColor : null;
|
|
Color accent = customAccentColor ?? accentColorMap[accentColor] ?? const Color(0x00000000);
|
|
|
|
if (accentColor == AccentColor.adaptive) {
|
|
if (palette != null) accent = _paletteAccentLight(palette)!;
|
|
} else {
|
|
palette = null;
|
|
}
|
|
|
|
Color backgroundColor =
|
|
accentColor == AccentColor.custom ? settings.customBackgroundColor : _paletteBackgroundLight(palette) ?? lightColors.background;
|
|
Color highlightColor =
|
|
accentColor == AccentColor.custom ? settings.customHighlightColor : _paletteHighlightLight(palette) ?? lightColors.highlight;
|
|
|
|
return ThemeData(
|
|
brightness: Brightness.light,
|
|
useMaterial3: true,
|
|
fontFamily: _fontFamily,
|
|
scaffoldBackgroundColor: backgroundColor,
|
|
primaryColor: lightColors.filc,
|
|
dividerColor: const Color(0x00000000),
|
|
colorScheme: ColorScheme.fromSwatch(
|
|
accentColor: accent,
|
|
backgroundColor: highlightColor,
|
|
brightness: Brightness.light,
|
|
cardColor: highlightColor,
|
|
errorColor: lightColors.red,
|
|
primaryColorDark: lightColors.filc,
|
|
),
|
|
shadowColor: highlightColor.withOpacity(.5), //lightColors.shadow,
|
|
appBarTheme: AppBarTheme(backgroundColor: backgroundColor),
|
|
indicatorColor: accent,
|
|
iconTheme: IconThemeData(color: lightColors.text.withOpacity(.75)),
|
|
navigationBarTheme: NavigationBarThemeData(
|
|
indicatorColor: accent.withOpacity(accentColor == AccentColor.adaptive ? 0.4 : 0.8),
|
|
iconTheme: MaterialStateProperty.all(IconThemeData(color: lightColors.text)),
|
|
backgroundColor: highlightColor,
|
|
labelTextStyle: MaterialStateProperty.all(TextStyle(
|
|
fontSize: 13.0,
|
|
fontWeight: FontWeight.w500,
|
|
color: lightColors.text.withOpacity(0.8),
|
|
)),
|
|
labelBehavior: NavigationDestinationLabelBehavior.alwaysShow,
|
|
height: 76.0,
|
|
),
|
|
sliderTheme: SliderThemeData(
|
|
inactiveTrackColor: accent.withOpacity(.3),
|
|
),
|
|
progressIndicatorTheme: ProgressIndicatorThemeData(color: accent),
|
|
expansionTileTheme: ExpansionTileThemeData(iconColor: accent),
|
|
cardColor: highlightColor,
|
|
bottomNavigationBarTheme: BottomNavigationBarThemeData(
|
|
backgroundColor: Provider.of<ThemeModeObserver>(context, listen: false).updateNavbarColor ? backgroundColor : null,
|
|
),
|
|
);
|
|
}
|
|
|
|
// Dark Theme
|
|
static ThemeData darkTheme(BuildContext context, {CorePalette? palette}) {
|
|
var darkColors = AppColors.fromBrightness(Brightness.dark);
|
|
final settings = Provider.of<SettingsProvider>(context, listen: false);
|
|
AccentColor accentColor = settings.accentColor;
|
|
final customAccentColor = accentColor == AccentColor.custom ? settings.customAccentColor : null;
|
|
Color accent = customAccentColor ?? accentColorMap[accentColor] ?? const Color(0x00000000);
|
|
|
|
if (accentColor == AccentColor.adaptive) {
|
|
if (palette != null) accent = _paletteAccentDark(palette)!;
|
|
} else {
|
|
palette = null;
|
|
}
|
|
|
|
Color backgroundColor =
|
|
accentColor == AccentColor.custom ? settings.customBackgroundColor : _paletteBackgroundDark(palette) ?? darkColors.background;
|
|
Color highlightColor = accentColor == AccentColor.custom ? settings.customHighlightColor : _paletteHighlightDark(palette) ?? darkColors.highlight;
|
|
|
|
return ThemeData(
|
|
brightness: Brightness.dark,
|
|
useMaterial3: true,
|
|
fontFamily: _fontFamily,
|
|
scaffoldBackgroundColor: backgroundColor,
|
|
primaryColor: darkColors.filc,
|
|
dividerColor: const Color(0x00000000),
|
|
colorScheme: ColorScheme.fromSwatch(
|
|
accentColor: accent,
|
|
backgroundColor: highlightColor,
|
|
brightness: Brightness.dark,
|
|
cardColor: highlightColor,
|
|
errorColor: darkColors.red,
|
|
primaryColorDark: darkColors.filc,
|
|
),
|
|
shadowColor: highlightColor.withOpacity(.5), //darkColors.shadow,
|
|
appBarTheme: AppBarTheme(backgroundColor: backgroundColor),
|
|
indicatorColor: accent,
|
|
iconTheme: IconThemeData(color: darkColors.text.withOpacity(.75)),
|
|
navigationBarTheme: NavigationBarThemeData(
|
|
indicatorColor: accent.withOpacity(accentColor == AccentColor.adaptive ? 0.4 : 0.8),
|
|
iconTheme: MaterialStateProperty.all(IconThemeData(color: darkColors.text)),
|
|
backgroundColor: highlightColor,
|
|
labelTextStyle: MaterialStateProperty.all(TextStyle(
|
|
fontSize: 13.0,
|
|
fontWeight: FontWeight.w500,
|
|
color: darkColors.text.withOpacity(0.8),
|
|
)),
|
|
labelBehavior: NavigationDestinationLabelBehavior.alwaysShow,
|
|
height: 76.0,
|
|
),
|
|
sliderTheme: SliderThemeData(
|
|
inactiveTrackColor: accent.withOpacity(.3),
|
|
),
|
|
progressIndicatorTheme: ProgressIndicatorThemeData(color: accent),
|
|
expansionTileTheme: ExpansionTileThemeData(iconColor: accent),
|
|
cardColor: highlightColor,
|
|
chipTheme: ChipThemeData(
|
|
backgroundColor: accent.withOpacity(.2),
|
|
elevation: 1,
|
|
),
|
|
bottomNavigationBarTheme: BottomNavigationBarThemeData(
|
|
backgroundColor: Provider.of<ThemeModeObserver>(context, listen: false).updateNavbarColor ? backgroundColor : null,
|
|
),
|
|
);
|
|
}
|
|
}
|