Skip to content

Commit

Permalink
revert input fill color
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyxchow committed Sep 7, 2024
1 parent 166ab8d commit 996e2e4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ class FrostyThemes {
brightness: brightness,
);

final secondaryBackgroundColor = colorScheme.surfaceContainerLow;

final borderColor = colorScheme.outlineVariant;

const borderWidth = 0.5;
Expand Down Expand Up @@ -49,7 +47,7 @@ class FrostyThemes {
inputDecorationTheme: InputDecorationTheme(
contentPadding: const EdgeInsets.symmetric(horizontal: 20, vertical: 8),
filled: true,
fillColor: secondaryBackgroundColor,
fillColor: colorScheme.surfaceContainer,
border: const OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(100)),
),
Expand Down

0 comments on commit 996e2e4

Please sign in to comment.