From 0187765a05d4e0d3d127a48ccd6b7d1bba7d89da Mon Sep 17 00:00:00 2001 From: J-P Nurmi Date: Fri, 10 Mar 2023 09:39:35 +0100 Subject: [PATCH] indicatorColor: use primary for both light and dark themes (#309) It's only used for M2 tabs in Flutter but make it consistent between the light and dark themes anyway so it'll be possible to share the theme creation without parameterizing indicatorColor. --- lib/src/themes/common_themes.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/themes/common_themes.dart b/lib/src/themes/common_themes.dart index 45a7552f1..c45a91e84 100644 --- a/lib/src/themes/common_themes.dart +++ b/lib/src/themes/common_themes.dart @@ -417,7 +417,7 @@ ThemeData createYaruLightTheme({ dividerColor: kDividerColorLight, dialogBackgroundColor: colorScheme.background, textTheme: createTextTheme(YaruColors.inkstone), - indicatorColor: colorScheme.secondary, + indicatorColor: colorScheme.primary, applyElevationOverlayColor: false, buttonTheme: _buttonThemeData, outlinedButtonTheme: _createOutlinedButtonThemeData(colorScheme),