mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-14 16:09:31 +01:00
design: Textfield bordercolors
This commit is contained in:
parent
b0d60c874a
commit
82fe657e68
@ -56,6 +56,12 @@ abstract class FluffyThemes {
|
||||
),
|
||||
inputDecorationTheme: InputDecorationTheme(
|
||||
border: OutlineInputBorder(borderRadius: BorderRadius.circular(12)),
|
||||
enabledBorder: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
borderSide: BorderSide(
|
||||
color: AppConfig.primaryColor.withAlpha(16),
|
||||
),
|
||||
),
|
||||
filled: true,
|
||||
fillColor: AppConfig.primaryColor.withAlpha(16),
|
||||
),
|
||||
@ -100,6 +106,12 @@ abstract class FluffyThemes {
|
||||
border: OutlineInputBorder(borderRadius: BorderRadius.circular(12)),
|
||||
filled: true,
|
||||
fillColor: AppConfig.primaryColorLight.withAlpha(32),
|
||||
enabledBorder: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
borderSide: BorderSide(
|
||||
color: AppConfig.primaryColor.withAlpha(16),
|
||||
),
|
||||
),
|
||||
),
|
||||
appBarTheme: AppBarTheme(
|
||||
brightness: Brightness.dark,
|
||||
|
Loading…
Reference in New Issue
Block a user