Loading app/src/main/assets/themes/contributors/Fedilab_theme_ACN.csv +2 −2 Original line number Diff line number Diff line base_theme,0 base_theme,1 author,acn128 name,ACN theme_boost_header_color,-727060 Loading @@ -10,6 +10,6 @@ theme_icons_color,-15395562 pref_color_background,-1 pref_color_navigation_bar,true pref_color_status_bar,true theme_accent,-1 theme_accent,-14059009 theme_text_color,-13027015 theme_primary,-1 app/src/main/assets/themes/contributors/Fedilab_theme_Solarized_Cyan_Accent.csv +4 −4 Original line number Diff line number Diff line base_theme,0 base_theme,1 author,Animaly name,Solarized - Cyan Accent theme_boost_header_color,-69167 Loading @@ -7,9 +7,9 @@ theme_text_header_2_line,-7102047 theme_statuses_color,-133405 theme_link_color,-14251054 theme_icons_color,-10106727 pref_color_background,-1 pref_color_background,-1120043 pref_color_navigation_bar,true pref_color_status_bar,true theme_accent,-1 theme_accent,-8021760 theme_text_color,-16766154 theme_primary,-1 theme_primary,-1120043 app/src/main/java/app/fedilab/android/ui/fragment/settings/FragmentThemingSettings.java +12 −3 Original line number Diff line number Diff line Loading @@ -338,6 +338,7 @@ public class FragmentThemingSettings extends PreferenceFragmentCompat implements if (launch_custom_theme != null) { launch_custom_theme.setOnPreferenceClickListener(preference -> { startActivity(new Intent(requireActivity(), CyaneaSettingsActivity.class)); shouldRestart = true; return false; }); Loading Loading @@ -456,6 +457,7 @@ public class FragmentThemingSettings extends PreferenceFragmentCompat implements ComposeActivity.MY_PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE); return true; } shouldRestart = true; Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.addCategory(Intent.CATEGORY_OPENABLE); intent.setType("*/*"); Loading @@ -476,6 +478,7 @@ public class FragmentThemingSettings extends PreferenceFragmentCompat implements createPref(); }); shouldRestart = true; dialogBuilder.setNegativeButton(R.string.cancel, (dialog, id) -> dialog.dismiss()); AlertDialog alertDialog = dialogBuilder.create(); alertDialog.setCancelable(false); Loading Loading @@ -514,12 +517,18 @@ public class FragmentThemingSettings extends PreferenceFragmentCompat implements int theme_statuses_color = appPref.getInt("theme_statuses_color", -1); int theme_link_color = appPref.getInt("theme_link_color", -1); int theme_icons_color = appPref.getInt("theme_icons_color", -1); int pref_color_background = cyneaPref.getInt("pref_color_background", -1); int pref_color_background; if (cyneaPref.getString("base_theme", "DARK").compareTo("DARK") == 0) { pref_color_background = cyneaPref.getInt("background_dark", -1); } else { pref_color_background = cyneaPref.getInt("background_light", -1); } boolean pref_color_navigation_bar = cyneaPref.getBoolean("pref_color_navigation_bar", true); boolean pref_color_status_bar = cyneaPref.getBoolean("pref_color_status_bar", true); int theme_accent = cyneaPref.getInt("theme_accent", -1); int theme_accent = cyneaPref.getInt("accent", -1); int theme_text_color = appPref.getInt("theme_text_color", -1); int theme_primary = cyneaPref.getInt("theme_primary", -1); int theme_primary = cyneaPref.getInt("primary", -1); int theme = appPref.getInt(getString(R.string.SET_THEME), 0); Loading app/src/main/res/drawable/ic_baseline_account_circle_24.xml +1 −1 Original line number Diff line number Diff line <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:tint="#FFFFFF" android:tint="?attr/colorControlNormal" android:viewportWidth="24" android:viewportHeight="24"> <path Loading app/src/main/res/drawable/ic_baseline_keyboard_arrow_down_24.xml +1 −1 Original line number Diff line number Diff line <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:tint="#FFFFFF" android:tint="?attr/colorControlNormal" android:viewportWidth="24" android:viewportHeight="24"> <path Loading Loading
app/src/main/assets/themes/contributors/Fedilab_theme_ACN.csv +2 −2 Original line number Diff line number Diff line base_theme,0 base_theme,1 author,acn128 name,ACN theme_boost_header_color,-727060 Loading @@ -10,6 +10,6 @@ theme_icons_color,-15395562 pref_color_background,-1 pref_color_navigation_bar,true pref_color_status_bar,true theme_accent,-1 theme_accent,-14059009 theme_text_color,-13027015 theme_primary,-1
app/src/main/assets/themes/contributors/Fedilab_theme_Solarized_Cyan_Accent.csv +4 −4 Original line number Diff line number Diff line base_theme,0 base_theme,1 author,Animaly name,Solarized - Cyan Accent theme_boost_header_color,-69167 Loading @@ -7,9 +7,9 @@ theme_text_header_2_line,-7102047 theme_statuses_color,-133405 theme_link_color,-14251054 theme_icons_color,-10106727 pref_color_background,-1 pref_color_background,-1120043 pref_color_navigation_bar,true pref_color_status_bar,true theme_accent,-1 theme_accent,-8021760 theme_text_color,-16766154 theme_primary,-1 theme_primary,-1120043
app/src/main/java/app/fedilab/android/ui/fragment/settings/FragmentThemingSettings.java +12 −3 Original line number Diff line number Diff line Loading @@ -338,6 +338,7 @@ public class FragmentThemingSettings extends PreferenceFragmentCompat implements if (launch_custom_theme != null) { launch_custom_theme.setOnPreferenceClickListener(preference -> { startActivity(new Intent(requireActivity(), CyaneaSettingsActivity.class)); shouldRestart = true; return false; }); Loading Loading @@ -456,6 +457,7 @@ public class FragmentThemingSettings extends PreferenceFragmentCompat implements ComposeActivity.MY_PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE); return true; } shouldRestart = true; Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.addCategory(Intent.CATEGORY_OPENABLE); intent.setType("*/*"); Loading @@ -476,6 +478,7 @@ public class FragmentThemingSettings extends PreferenceFragmentCompat implements createPref(); }); shouldRestart = true; dialogBuilder.setNegativeButton(R.string.cancel, (dialog, id) -> dialog.dismiss()); AlertDialog alertDialog = dialogBuilder.create(); alertDialog.setCancelable(false); Loading Loading @@ -514,12 +517,18 @@ public class FragmentThemingSettings extends PreferenceFragmentCompat implements int theme_statuses_color = appPref.getInt("theme_statuses_color", -1); int theme_link_color = appPref.getInt("theme_link_color", -1); int theme_icons_color = appPref.getInt("theme_icons_color", -1); int pref_color_background = cyneaPref.getInt("pref_color_background", -1); int pref_color_background; if (cyneaPref.getString("base_theme", "DARK").compareTo("DARK") == 0) { pref_color_background = cyneaPref.getInt("background_dark", -1); } else { pref_color_background = cyneaPref.getInt("background_light", -1); } boolean pref_color_navigation_bar = cyneaPref.getBoolean("pref_color_navigation_bar", true); boolean pref_color_status_bar = cyneaPref.getBoolean("pref_color_status_bar", true); int theme_accent = cyneaPref.getInt("theme_accent", -1); int theme_accent = cyneaPref.getInt("accent", -1); int theme_text_color = appPref.getInt("theme_text_color", -1); int theme_primary = cyneaPref.getInt("theme_primary", -1); int theme_primary = cyneaPref.getInt("primary", -1); int theme = appPref.getInt(getString(R.string.SET_THEME), 0); Loading
app/src/main/res/drawable/ic_baseline_account_circle_24.xml +1 −1 Original line number Diff line number Diff line <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:tint="#FFFFFF" android:tint="?attr/colorControlNormal" android:viewportWidth="24" android:viewportHeight="24"> <path Loading
app/src/main/res/drawable/ic_baseline_keyboard_arrow_down_24.xml +1 −1 Original line number Diff line number Diff line <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:tint="#FFFFFF" android:tint="?attr/colorControlNormal" android:viewportWidth="24" android:viewportHeight="24"> <path Loading