Revert "git things"

This reverts commit 1b95afdfc2.
This commit is contained in:
Kima
2024-05-01 19:53:33 +02:00
parent ca177ad69f
commit d0599bed7d
13 changed files with 48 additions and 21 deletions

View File

@@ -34,7 +34,7 @@ class NavbarItem extends StatelessWidget {
padding: const EdgeInsets.all(12.0),
decoration: BoxDecoration(
color: active
? Theme.of(context).colorScheme.secondary.withOpacity(.2)
? Theme.of(context).colorScheme.tertiary.withOpacity(.2)
: null,
borderRadius: BorderRadius.circular(14.0),
),

View File

@@ -30,7 +30,7 @@ class AccountView extends StatelessWidget {
AccountTile(
profileImage: ProfileImage(
name: _firstName,
backgroundColor: Theme.of(context).colorScheme.secondary,
backgroundColor: Theme.of(context).colorScheme.tertiary,
role: user.role,
),
name: SelectableText(

View File

@@ -136,7 +136,7 @@ class SettingsScreenState extends State<SettingsScreen>
profilePictureString: account.picture,
backgroundColor: Theme.of(context)
.colorScheme
.secondary, //!settings.presentationMode
.tertiary, //!settings.presentationMode
//? ColorUtils.stringToColor(account.name)
//: Theme.of(context).colorScheme.secondary,
),