Skip to content

Commit

Permalink
Improve color schemes
Browse files Browse the repository at this point in the history
  • Loading branch information
AhsanSarwar45 committed Dec 13, 2023
1 parent 95b026e commit c3e7ba2
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions lib/theme/data/default_color_schemes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ List<ColorSchemeData> defaultColorSchemes = [
shadow: const Color.fromARGB(255, 0, 0, 0),
outline: const Color.fromARGB(255, 220, 220, 220),
error: const Color(0xFFFE4A49),
useAccentAsShadow: true,
useAccentAsOutline: true,
onError: Colors.white,
isDefault: true,
),
Expand All @@ -90,12 +92,14 @@ List<ColorSchemeData> defaultColorSchemes = [
ColorSchemeData(
name: 'Nature',
background: const Color.fromARGB(255, 200, 230, 201),
onBackground: const Color.fromARGB(255, 25, 25, 25),
onBackground: const Color.fromARGB(255, 25, 40, 25),
card: const Color.fromARGB(255, 230, 255, 230),
onCard: const Color.fromARGB(255, 25, 25, 25),
onCard: const Color.fromARGB(255, 25, 40, 25),
accent: const Color.fromARGB(255, 100, 180, 100),
onAccent: const Color.fromARGB(255, 25, 25, 25),
onAccent: const Color.fromARGB(255, 25, 40, 25),
shadow: const Color.fromARGB(255, 0, 0, 0),
useAccentAsShadow: true,
useAccentAsOutline: true,
outline: const Color.fromARGB(255, 180, 180, 180),
error: const Color(0xFFFE4A49),
onError: Colors.white,
Expand All @@ -104,14 +108,16 @@ List<ColorSchemeData> defaultColorSchemes = [
ColorSchemeData(
name: 'Cherry Blossom',
background: const Color.fromARGB(255, 255, 228, 230),
onBackground: const Color.fromARGB(255, 51, 51, 51),
card: const Color.fromARGB(255, 255, 204, 206),
onCard: const Color.fromARGB(255, 51, 51, 51),
accent: const Color.fromARGB(255, 255, 163, 168),
onAccent: const Color.fromARGB(255, 51, 51, 51),
onBackground: const Color.fromARGB(255, 71, 51, 51),
card: const Color.fromARGB(255, 255, 214, 216),
onCard: const Color.fromARGB(255, 71, 51, 51),
accent: const Color.fromARGB(255, 250, 153, 158),
onAccent: const Color.fromARGB(255, 71, 51, 51),
shadow: const Color.fromARGB(255, 0, 0, 0),
outline: const Color.fromARGB(255, 204, 204, 204),
error: const Color(0xFFFE4A49),
useAccentAsShadow: true,
useAccentAsOutline: true,
onError: Colors.white,
isDefault: true,
),
Expand Down

0 comments on commit c3e7ba2

Please sign in to comment.