Skip to content

Commit ff835c4

Browse files
committed
```
refactor: Update border color in light theme configuration This commit adjusts the light theme's color scheme to use a more neutral border color. ### Key Changes: * **`lib/theme/cubit/theme_state.dart`:** * Updated the `border` color in the `light` `ColorScheme` from `Colors.blue[900]` to `Colors.gray[500]`.
1 parent 59551ad commit ff835c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/theme/cubit/theme_state.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ final double radius = 0.5;
3535
final ColorScheme light = ColorSchemes.lightSlate.blue.copyWith(
3636
primary: () => Colors.blue[900],
3737
primaryForeground: () => Colors.white,
38-
border: () => Colors.blue[900],
38+
border: () => Colors.gray[500],
3939
input: () => Colors.gray[100],
4040
);
4141

0 commit comments

Comments
 (0)