ente/lib/ente_theme_data.dart

198 lines
6.4 KiB
Dart
Raw Normal View History

2022-04-08 05:59:20 +00:00
import 'package:flutter/material.dart';
2022-06-06 10:32:10 +00:00
import 'package:flutter_datetime_picker/flutter_datetime_picker.dart';
2022-04-08 05:59:20 +00:00
extension CustomColorScheme on ColorScheme {
Color get defaultTextColor =>
brightness == Brightness.light ? Colors.black : Colors.white;
Color get inverseTextColor =>
brightness == Brightness.light ? Colors.white : Colors.black;
Color get inverseIconColor =>
brightness == Brightness.light ? Colors.white : Colors.black;
Color get inverseBackgroundColor =>
brightness == Brightness.light ? Colors.black : Colors.white;
2022-04-08 05:59:20 +00:00
Color get boxSelectColor => brightness == Brightness.light
? Color.fromRGBO(67, 186, 108, 1)
: Color.fromRGBO(16, 32, 32, 1);
Color get boxUnSelectColor => brightness == Brightness.light
? Color.fromRGBO(240, 240, 240, 1)
: Color.fromRGBO(8, 18, 18, 0.4);
2022-04-22 11:32:20 +00:00
Color get dynamicFABBackgroundColor =>
2022-04-08 05:59:20 +00:00
brightness == Brightness.light ? Colors.black : Colors.grey[850];
2022-04-22 11:32:20 +00:00
Color get dynamicFABTextColor => Colors.white; //same for both themes
2022-04-08 05:59:20 +00:00
// todo: use brightness == Brightness.light for changing color for dark/light theme
ButtonStyle get optionalActionButtonStyle => buildElevatedButtonThemeData(
2022-06-11 08:23:52 +00:00
onPrimary: Color(0xFF777777),
primary: Color(0xFFF0F0F0),
elevation: 0,
).style;
2022-04-28 02:11:42 +00:00
Color get recoveryKeyBoxColor => brightness == Brightness.light
? Color.fromRGBO(49, 155, 86, 0.2)
: Color(0xFF1DB954);
2022-06-09 07:53:11 +00:00
Color get frostyBlurBackdropFilterColor => brightness == Brightness.light
? Color.fromRGBO(238, 238, 238, 0.5)
2022-06-09 07:53:11 +00:00
: Color.fromRGBO(48, 48, 48, 0.5);
Color get iconColor =>
brightness == Brightness.light ? Colors.black : Colors.white;
Color get cancelSelectedButtonColor => brightness == Brightness.light
2022-06-09 07:53:11 +00:00
? Color.fromRGBO(238, 238, 238, 1)
: Color.fromRGBO(48, 48, 48, 0.5);
Color get bgColorForQuestions => brightness == Brightness.light
? Colors.white
: Color.fromRGBO(10, 15, 15, 1.0);
2022-06-10 14:21:50 +00:00
Color get greenText => Color.fromARGB(255, 40, 190, 113);
Color get cupertinoPickerTopColor => brightness == Brightness.light
? Color.fromARGB(255, 238, 238, 238)
: Colors.white.withOpacity(0.1);
2022-06-06 10:32:10 +00:00
DatePickerTheme get dateTimePickertheme => brightness == Brightness.light
? DatePickerTheme(
backgroundColor: Colors.white,
itemStyle: TextStyle(color: Colors.black),
2022-06-11 08:23:52 +00:00
cancelStyle: TextStyle(color: Colors.black),
)
2022-06-06 10:32:10 +00:00
: DatePickerTheme(
backgroundColor: Colors.black,
itemStyle: TextStyle(color: Colors.white),
2022-06-11 08:23:52 +00:00
cancelStyle: TextStyle(color: Colors.white),
);
2022-06-07 04:40:29 +00:00
Color get stepProgressUnselectedColor => brightness == Brightness.light
? Color.fromRGBO(196, 196, 196, 0.6)
: Color.fromRGBO(255, 255, 255, 0.7);
2022-06-07 08:11:21 +00:00
Color get gNavBackgroundColor => brightness == Brightness.light
2022-06-07 04:40:29 +00:00
? Color.fromRGBO(196, 196, 196, 0.6)
2022-06-07 07:56:46 +00:00
: Color.fromRGBO(40, 40, 40, 0.6);
Color get gNavBarActiveColor => brightness == Brightness.light
? Color.fromRGBO(255, 255, 255, 0.6)
: Color.fromRGBO(255, 255, 255, 0.9);
Color get gNavIconColor => brightness == Brightness.light
2022-06-10 06:47:49 +00:00
? Color.fromRGBO(0, 0, 0, 0.8)
: Color.fromRGBO(255, 255, 255, 0.8);
2022-06-07 07:56:46 +00:00
Color get gNavActiveIconColor => brightness == Brightness.light
2022-06-10 06:47:49 +00:00
? Color.fromRGBO(0, 0, 0, 0.8)
: Color.fromRGBO(0, 0, 0, 0.8);
2022-06-07 08:03:35 +00:00
Color get galleryThumbBackgroundColor => brightness == Brightness.light
2022-06-07 08:07:45 +00:00
? Color.fromRGBO(240, 240, 240, 1)
: Color.fromRGBO(20, 20, 20, 1);
2022-06-07 08:03:35 +00:00
Color get galleryThumbDrawColor => brightness == Brightness.light
? Colors.black.withOpacity(0.8)
: Colors.white.withOpacity(0.5);
Color get backupEnabledBgColor => brightness == Brightness.light
? Color.fromRGBO(230, 230, 230, 0.95)
: Color.fromRGBO(10, 40, 40, 0.3);
2022-06-10 12:51:25 +00:00
Color get dotsIndicatorActiveColor => brightness == Brightness.light
? Colors.black.withOpacity(0.5)
: Colors.white.withOpacity(0.5);
Color get dotsIndicatorInactiveColor => brightness == Brightness.light
? Colors.black.withOpacity(0.12)
: Colors.white.withOpacity(0.12);
Color get toastTextColor =>
brightness == Brightness.light ? Colors.white : Colors.black;
Color get toastBackgroundColor => brightness == Brightness.light
? Color.fromRGBO(24, 24, 24, 0.95)
: Color.fromRGBO(255, 255, 255, 0.95);
Color get subTextColor => brightness == Brightness.light
? Color.fromRGBO(180, 180, 180, 1)
: Color.fromRGBO(100, 100, 100, 1);
2022-04-08 05:59:20 +00:00
}
2022-06-11 08:23:52 +00:00
OutlinedButtonThemeData buildOutlinedButtonThemeData({
Color bgDisabled,
Color bgEnabled,
Color fgDisabled,
Color fgEnabled,
}) {
2022-04-08 05:59:20 +00:00
return OutlinedButtonThemeData(
style: OutlinedButton.styleFrom(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8),
),
alignment: Alignment.center,
padding: EdgeInsets.fromLTRB(50, 16, 50, 16),
textStyle: TextStyle(
fontWeight: FontWeight.w600,
fontFamily: 'Inter-SemiBold',
fontSize: 18,
),
).copyWith(
backgroundColor: MaterialStateProperty.resolveWith<Color>(
(Set<MaterialState> states) {
if (states.contains(MaterialState.disabled)) {
return bgDisabled;
}
return bgEnabled;
},
),
foregroundColor: MaterialStateProperty.resolveWith<Color>(
(Set<MaterialState> states) {
if (states.contains(MaterialState.disabled)) {
return fgDisabled;
}
return fgEnabled;
},
),
alignment: Alignment.center,
),
);
}
2022-06-11 08:23:52 +00:00
ElevatedButtonThemeData buildElevatedButtonThemeData({
@required Color onPrimary, // text button color
@required Color primary,
double elevation = 2, // background color of button
}) {
2022-04-08 05:59:20 +00:00
return ElevatedButtonThemeData(
2022-06-11 08:23:52 +00:00
style: ElevatedButton.styleFrom(
elevation: elevation,
onPrimary: onPrimary,
primary: primary,
alignment: Alignment.center,
textStyle: TextStyle(
fontWeight: FontWeight.w600,
fontFamily: 'Inter-SemiBold',
fontSize: 18,
),
padding: EdgeInsets.symmetric(vertical: 18),
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(8)),
),
2022-04-08 05:59:20 +00:00
),
2022-06-11 08:23:52 +00:00
);
2022-04-08 05:59:20 +00:00
}
2022-04-21 05:12:18 +00:00
TextStyle gradientButtonTextTheme() {
return TextStyle(
color: Colors.white,
fontWeight: FontWeight.w600,
fontFamily: 'Inter-SemiBold',
fontSize: 18,
);
}