From c68235fcfc78efbd080bb691f0c4519c344b3bd3 Mon Sep 17 00:00:00 2001 From: Synced Synapse Date: Sun, 19 May 2019 13:23:36 +0100 Subject: [PATCH] Tweak Themes Use more consistent color Schemes --- .../ui/generic/NavigationDrawerFragment.java | 2 +- .../ui/sections/video/MovieListFragment.java | 2 +- .../video/TVShowEpisodeListFragment.java | 3 +- .../ui/sections/video/TVShowListFragment.java | 6 +- .../video/TVShowProgressFragment.java | 2 +- .../org/xbmc/kore/ui/widgets/ControlPad.java | 2 +- .../xbmc/kore/ui/widgets/HighlightButton.java | 2 +- .../xbmc/kore/ui/widgets/PlaylistsBar.java | 2 +- .../java/org/xbmc/kore/utils/UIUtils.java | 6 +- app/src/main/res/layout/grid_item_cast.xml | 3 +- .../res/layout/volume_controller_dialog.xml | 2 +- app/src/main/res/values-ast/strings.xml | 2 - app/src/main/res/values-bg/strings.xml | 2 - app/src/main/res/values-ca/strings.xml | 2 - app/src/main/res/values-cs/strings.xml | 4 +- app/src/main/res/values-de/strings.xml | 3 - app/src/main/res/values-es/strings.xml | 2 - app/src/main/res/values-eu/strings.xml | 4 +- app/src/main/res/values-fr/strings.xml | 2 - app/src/main/res/values-hr/strings.xml | 2 - app/src/main/res/values-hu/strings.xml | 2 - app/src/main/res/values-it/strings.xml | 2 - app/src/main/res/values-iw/strings.xml | 4 +- app/src/main/res/values-ja/strings.xml | 2 - app/src/main/res/values-lt/strings.xml | 2 - app/src/main/res/values-nl/strings.xml | 2 - app/src/main/res/values-pl/strings.xml | 4 +- app/src/main/res/values-pt-rBR/strings.xml | 2 - app/src/main/res/values-pt/strings.xml | 4 +- app/src/main/res/values-ru/strings.xml | 2 - app/src/main/res/values-sl/strings.xml | 2 - app/src/main/res/values-uk/strings.xml | 2 - app/src/main/res/values-zh-rCN/strings.xml | 2 - app/src/main/res/values/arrays.xml | 6 +- app/src/main/res/values/attr.xml | 2 +- app/src/main/res/values/colors.xml | 167 +++++++++++------- app/src/main/res/values/strings.xml | 4 +- app/src/main/res/values/themes.xml | 146 ++++++++------- 38 files changed, 197 insertions(+), 215 deletions(-) diff --git a/app/src/main/java/org/xbmc/kore/ui/generic/NavigationDrawerFragment.java b/app/src/main/java/org/xbmc/kore/ui/generic/NavigationDrawerFragment.java index 29b9f11..7081b12 100644 --- a/app/src/main/java/org/xbmc/kore/ui/generic/NavigationDrawerFragment.java +++ b/app/src/main/java/org/xbmc/kore/ui/generic/NavigationDrawerFragment.java @@ -475,7 +475,7 @@ public class NavigationDrawerFragment extends Fragment { R.attr.textColorOverPrimary }); Resources resources = context.getResources(); - selectedItemColor = styledAttributes.getColor(styledAttributes.getIndex(0), resources.getColor(R.color.accent_default)); + selectedItemColor = styledAttributes.getColor(styledAttributes.getIndex(0), resources.getColor(R.color.default_accent)); hostItemColor = styledAttributes.getColor(styledAttributes.getIndex(1), resources.getColor(R.color.white)); styledAttributes.recycle(); } diff --git a/app/src/main/java/org/xbmc/kore/ui/sections/video/MovieListFragment.java b/app/src/main/java/org/xbmc/kore/ui/sections/video/MovieListFragment.java index ffb9776..a5dfa79 100644 --- a/app/src/main/java/org/xbmc/kore/ui/sections/video/MovieListFragment.java +++ b/app/src/main/java/org/xbmc/kore/ui/sections/video/MovieListFragment.java @@ -338,7 +338,7 @@ public class MovieListFragment extends AbstractCursorListFragment { }); - themeAccentColor = styledAttributes.getColor(styledAttributes.getIndex(0), getResources().getColor(R.color.accent_default)); + themeAccentColor = styledAttributes.getColor(styledAttributes.getIndex(0), getResources().getColor(R.color.default_accent)); dimmedNeutralColor = styledAttributes.getColor(styledAttributes.getIndex(1), getResources().getColor(R.color.white_dim_26pct)); styledAttributes.recycle(); diff --git a/app/src/main/java/org/xbmc/kore/ui/sections/video/TVShowEpisodeListFragment.java b/app/src/main/java/org/xbmc/kore/ui/sections/video/TVShowEpisodeListFragment.java index 7ec2df3..fcdf0bf 100644 --- a/app/src/main/java/org/xbmc/kore/ui/sections/video/TVShowEpisodeListFragment.java +++ b/app/src/main/java/org/xbmc/kore/ui/sections/video/TVShowEpisodeListFragment.java @@ -47,7 +47,6 @@ import org.xbmc.kore.service.library.LibrarySyncService; import org.xbmc.kore.ui.AbstractCursorListFragment; import org.xbmc.kore.ui.AbstractFragment; import org.xbmc.kore.ui.RecyclerViewCursorAdapter; -import org.xbmc.kore.ui.sections.audio.SongsListFragment; import org.xbmc.kore.utils.LogUtils; import org.xbmc.kore.utils.MediaPlayerUtils; import org.xbmc.kore.utils.UIUtils; @@ -230,7 +229,7 @@ public class TVShowEpisodeListFragment extends AbstractCursorListFragment { TypedArray styledAttributes = theme.obtainStyledAttributes(new int[] { R.attr.colorAccent }); - themeAccentColor = styledAttributes.getColor(styledAttributes.getIndex(0), getResources().getColor(R.color.accent_default)); + themeAccentColor = styledAttributes.getColor(styledAttributes.getIndex(0), getResources().getColor(R.color.default_accent)); styledAttributes.recycle(); hostManager = HostManager.getInstance(context); diff --git a/app/src/main/java/org/xbmc/kore/ui/sections/video/TVShowListFragment.java b/app/src/main/java/org/xbmc/kore/ui/sections/video/TVShowListFragment.java index bb21e06..39f0c49 100644 --- a/app/src/main/java/org/xbmc/kore/ui/sections/video/TVShowListFragment.java +++ b/app/src/main/java/org/xbmc/kore/ui/sections/video/TVShowListFragment.java @@ -15,7 +15,6 @@ */ package org.xbmc.kore.ui.sections.video; -import android.app.Activity; import android.content.Context; import android.content.SharedPreferences; import android.content.res.ColorStateList; @@ -47,7 +46,6 @@ import org.xbmc.kore.service.library.LibrarySyncService; import org.xbmc.kore.ui.AbstractCursorListFragment; import org.xbmc.kore.ui.AbstractInfoFragment; import org.xbmc.kore.ui.RecyclerViewCursorAdapter; -import org.xbmc.kore.ui.sections.audio.SongsListFragment; import org.xbmc.kore.utils.LogUtils; import org.xbmc.kore.utils.UIUtils; import org.xbmc.kore.utils.Utils; @@ -321,11 +319,11 @@ public class TVShowListFragment extends AbstractCursorListFragment { Resources.Theme theme = context.getTheme(); TypedArray styledAttributes = theme.obtainStyledAttributes(new int[] { R.attr.colorAccent, - R.attr.colorinProgress, + R.attr.colorInProgress, R.attr.colorFinished }); - themeAccentColor = styledAttributes.getColor(styledAttributes.getIndex(0), getResources().getColor(R.color.accent_default)); + themeAccentColor = styledAttributes.getColor(styledAttributes.getIndex(0), getResources().getColor(R.color.default_accent)); inProgressColor = styledAttributes.getColor(styledAttributes.getIndex(1), getResources().getColor(R.color.orange_500)); finishedColor = styledAttributes.getColor(styledAttributes.getIndex(2), getResources().getColor(R.color.light_green_600)); styledAttributes.recycle(); diff --git a/app/src/main/java/org/xbmc/kore/ui/sections/video/TVShowProgressFragment.java b/app/src/main/java/org/xbmc/kore/ui/sections/video/TVShowProgressFragment.java index 0644c56..fda077c 100644 --- a/app/src/main/java/org/xbmc/kore/ui/sections/video/TVShowProgressFragment.java +++ b/app/src/main/java/org/xbmc/kore/ui/sections/video/TVShowProgressFragment.java @@ -287,7 +287,7 @@ public class TVShowProgressFragment extends AbstractAdditionalInfoFragment imple // Get theme colors Resources.Theme theme = getActivity().getTheme(); TypedArray styledAttributes = theme.obtainStyledAttributes(new int[] { - R.attr.colorinProgress, + R.attr.colorInProgress, R.attr.colorFinished }); diff --git a/app/src/main/java/org/xbmc/kore/ui/widgets/ControlPad.java b/app/src/main/java/org/xbmc/kore/ui/widgets/ControlPad.java index a3836b9..82b9d42 100644 --- a/app/src/main/java/org/xbmc/kore/ui/widgets/ControlPad.java +++ b/app/src/main/java/org/xbmc/kore/ui/widgets/ControlPad.java @@ -173,7 +173,7 @@ public class ControlPad extends SquareGridLayout Resources.Theme theme = getContext().getTheme(); TypedArray styledAttributes = theme.obtainStyledAttributes(new int[] {R.attr.contentBackgroundColor}); int remoteBackgroundColor = styledAttributes.getColor(styledAttributes.getIndex(0), - getResources().getColor(R.color.dark_content_background_dim_70pct)); + getResources().getColor(R.color.dark_content_background_dim)); styledAttributes.recycle(); // On ICS the remote background isn't shown as the tinting isn't supported diff --git a/app/src/main/java/org/xbmc/kore/ui/widgets/HighlightButton.java b/app/src/main/java/org/xbmc/kore/ui/widgets/HighlightButton.java index 6fa99a1..a7568f4 100644 --- a/app/src/main/java/org/xbmc/kore/ui/widgets/HighlightButton.java +++ b/app/src/main/java/org/xbmc/kore/ui/widgets/HighlightButton.java @@ -67,7 +67,7 @@ public class HighlightButton extends AppCompatImageButton { .obtainStyledAttributes(new int[]{R.attr.colorAccent, R.attr.defaultButtonColorFilter}); highlightColor = styledAttributes.getColor(styledAttributes.getIndex(0), - context.getResources().getColor(R.color.accent_default)); + context.getResources().getColor(R.color.default_accent)); defaultColor = styledAttributes.getColor(styledAttributes.getIndex(1), context.getResources().getColor(R.color.white)); styledAttributes.recycle(); diff --git a/app/src/main/java/org/xbmc/kore/ui/widgets/PlaylistsBar.java b/app/src/main/java/org/xbmc/kore/ui/widgets/PlaylistsBar.java index 31b3e13..f19bf5d 100644 --- a/app/src/main/java/org/xbmc/kore/ui/widgets/PlaylistsBar.java +++ b/app/src/main/java/org/xbmc/kore/ui/widgets/PlaylistsBar.java @@ -168,7 +168,7 @@ public class PlaylistsBar extends TabLayout { .obtainStyledAttributes(new int[]{R.attr.colorAccent, R.attr.defaultButtonColorFilter}); highlightColor = styledAttributes.getColor(styledAttributes.getIndex(0), - context.getResources().getColor(R.color.accent_default)); + context.getResources().getColor(R.color.default_accent)); defaultColor = styledAttributes.getColor(styledAttributes.getIndex(1), context.getResources().getColor(R.color.white)); styledAttributes.recycle(); diff --git a/app/src/main/java/org/xbmc/kore/utils/UIUtils.java b/app/src/main/java/org/xbmc/kore/utils/UIUtils.java index b28fc15..28182dd 100644 --- a/app/src/main/java/org/xbmc/kore/utils/UIUtils.java +++ b/app/src/main/java/org/xbmc/kore/utils/UIUtils.java @@ -405,9 +405,9 @@ public class UIUtils { case 2: return R.style.MistTheme; case 3: - return R.style.SolarizedLightTheme; + return R.style.SunriseTheme; case 4: - return R.style.SolarizedDarkTheme; + return R.style.SunsetTheme; default: return R.style.NightTheme; } @@ -596,7 +596,7 @@ public class UIUtils { R.attr.colorAccent}); view.setColorFilter( styledAttributes.getColor(styledAttributes.getIndex(0), - context.getResources().getColor(R.color.accent_default))); + context.getResources().getColor(R.color.default_accent))); styledAttributes.recycle(); } else { view.clearColorFilter(); diff --git a/app/src/main/res/layout/grid_item_cast.xml b/app/src/main/res/layout/grid_item_cast.xml index c9739dc..a8f7aa3 100644 --- a/app/src/main/res/layout/grid_item_cast.xml +++ b/app/src/main/res/layout/grid_item_cast.xml @@ -80,7 +80,8 @@ android:layout_height="wrap_content" android:layout_centerVertical="true" android:src="?attr/iconOpenInNew" - android:contentDescription="@string/poster"/> + android:contentDescription="@string/poster" + android:tint="?attr/defaultButtonColorFilter"/> + tools:background="@color/dark_content_background_dim"> Finar p\'apenzar a usar el mandu. Nueche Día Caín - Soleyeru - Escuridá soleyero Camudar al mandu dempués del aniciu de medios Caltener el mandu enriba la pantalla de bloquéu Amosar avisu entrín se reproduz diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml index 1d16d93..8e7b549 100644 --- a/app/src/main/res/values-bg/strings.xml +++ b/app/src/main/res/values-bg/strings.xml @@ -320,8 +320,6 @@ Нощ Ден Мъгла - Соларизирана - Соларизирана (Тъмна) Към дистанционното след стартиране Показвай дистанционното над заключения екран diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index bdb1f3f..1ce028f 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -250,8 +250,6 @@ Nit Dia Boira - Solaritzat - Solaritzat fosc Mostra al iniciar el dispositiu Mostra sobre la pantalla de bloqueig Estigues pendent diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index f0798c2..99f2988 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -340,9 +340,7 @@ Noc Den Mlha - Solarized - Solarized Dark - + Show on media start Show over lockscreen Zůstat vzhůru diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 4bea17d..7af7636 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -334,14 +334,11 @@ Nacht Tag Nebel - Solarized - Solarized dunkel Nach dem Abspielen eines Mediums zur Fernbedienung wechseln Fernbedienung auf dem Sperrbildschirm anzeigen Bildschirm nicht während der Nutzung als Fernbedienung ausschalten Nachricht mit aktueller Wiedergabe anzeigen - Zeigt ein ausklappbares Feld am unteren Rand des Bildschirms an, während Medien wiedergegeben werden Benutze Schritte zum Suchen Während des Suchens von einer Benachrichtigung die Wiedergabegeschwindigkeit ändern diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index f2b9b49..9d2099e 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -236,8 +236,6 @@ Noche Día Niebla - Soleado - Soleado oscuro Cambiar a control remoto después de que inicie la reproducción Mostrar notificaciones durante la reproducción Usar las teclas de volumen para el control de volumen diff --git a/app/src/main/res/values-eu/strings.xml b/app/src/main/res/values-eu/strings.xml index 093873c..3b97efb 100644 --- a/app/src/main/res/values-eu/strings.xml +++ b/app/src/main/res/values-eu/strings.xml @@ -340,9 +340,7 @@ Gaua Eguna Lanbroa - Alderantzikatua - Alderantzikatu iluna - + Aldatu urrunekora multimedia hastean Erakutsi blokeatutako pantailaren gainean Mantendu aktibo diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 8c9cc91..bc8d3ce 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -342,8 +342,6 @@ Nuit Jour Brouillard - Solarisé - Solarisé Foncé Basculer sur la télécommande après le début de la lecture Conserver la télécommande sur l\'écran de déverrouillage diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml index 924f9ea..f6e99b8 100644 --- a/app/src/main/res/values-hr/strings.xml +++ b/app/src/main/res/values-hr/strings.xml @@ -321,8 +321,6 @@ Noć Dan Izmaglica - Solarizirano - Solarizirano Tamno Prebaci na daljinski nakon pokretanja medija Zadrži daljinski iznad zaslona zaključavanja diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 5846d08..6895c08 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -178,8 +178,6 @@ Küldendő szöveg Nappal Köd - Szolarizált - Sötét szolarizált Miniatűr %1$s szavazat Húzd lefelé a frissítéshez diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 25d14ee..c91c756 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -293,8 +293,6 @@ Notte Giorno Nebbia - Solarized - Solarized Dark Cambia a remoto dopo l\'avvio del file Mostra le notifiche durante l\'esecuzione diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml index 1e9a820..7bc995f 100644 --- a/app/src/main/res/values-iw/strings.xml +++ b/app/src/main/res/values-iw/strings.xml @@ -342,9 +342,7 @@ לילה יום ערפל - זריחה - זריחה כהה - + הצגה עם הפעלת המדיה הצגה על גבי מסך הנעילה להשאיר את המסך דולק diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index 6f932b8..3109e58 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -326,8 +326,6 @@ 夜間 日中 ミスト - ソラリゼーション - ソラリゼーションダーク メディア開始時に表示 ロック画面上に表示 diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml index 4abf9b0..44ec21f 100644 --- a/app/src/main/res/values-lt/strings.xml +++ b/app/src/main/res/values-lt/strings.xml @@ -326,8 +326,6 @@ Naktis Diena Rūkas - Ryški - Ryški tamsi Atidaryti pultą paleidus media Rodyti pultą užrakintame ekrane diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index dc45b4d..5f16305 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -243,8 +243,6 @@ Nacht Dag Mist - Zonnig - Zonnig donker Tonen bij starten van media Afspeelmelding tonen tijdens afspelen Fysieke volumeknoppen gebruiken diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index f48a9c9..fd0b694 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -341,9 +341,7 @@ Noc Dzień Mgła - Prześwietlony - Ciemny prześwietlony - + Przełącz do zdalnego sterowania po uruchomieniu odtwarzania Pilot nad blokadą ekranu Nie wyłączaj ekranu podczas używania pilota diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index bbe411e..9e9dca5 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -304,8 +304,6 @@ Noite Dia Neblina - Solarized - Solarized escuro Mudar para o controle remoto ao iniciar reprodução Mostrar notificação enquanto estiver em reprodução diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index b5489f5..21fdae7 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -207,8 +207,8 @@ Pressione Concluir para usar o controlo remoto.]]> Noite Dia Neblina - Solarized - Solarized escuro + Madrugada + Crepúsculo Mostrar ao iniciar reprodução Sobre Ночь День Туман - Solarized - Solarized Dark Переходить к управлению при старте воспроизведения Показывать уведомление при воспроизведении diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml index 6621cdc..091026f 100644 --- a/app/src/main/res/values-sl/strings.xml +++ b/app/src/main/res/values-sl/strings.xml @@ -246,8 +246,6 @@ Noč Dan Megla - Solarizirano - Solarizirano Temno Prikaži ob pričetku medija Pokaži nad zaklenjenim zaslonom Med predvajanjem prikaži obvestilo diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index 4095b29..1064dfc 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -332,8 +332,6 @@ Ніч День Туман - Solarized - Solarized Dark Відображати при початку відтворення Відображати на екрані блокування diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index e98cb8e..b6c3418 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -293,8 +293,6 @@ 深夜风格 晨间风格 迷雾风格 - 太阳能亮色调 - 太阳能暗色调 媒体播放后切换到遥控器 播放时显示通知 diff --git a/app/src/main/res/values/arrays.xml b/app/src/main/res/values/arrays.xml index 9e03bad..5023a04 100644 --- a/app/src/main/res/values/arrays.xml +++ b/app/src/main/res/values/arrays.xml @@ -30,15 +30,15 @@ @string/theme_night @string/theme_day @string/theme_mist - @string/theme_solarized - + @string/theme_sunrise + @string/theme_sunset 0 1 2 3 - + 4 diff --git a/app/src/main/res/values/attr.xml b/app/src/main/res/values/attr.xml index 0441ae4..3f544d7 100644 --- a/app/src/main/res/values/attr.xml +++ b/app/src/main/res/values/attr.xml @@ -40,7 +40,7 @@ - + diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index f178c5c..ce3cd2e 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -17,90 +17,123 @@ #0BB1E6 - #ff121314 - #ffeeeeee - - #ff192227 + + #ff1b1b1b + #ff333333 + #b4333333 + #ff404040 - - @color/orange_A400 - @color/orange_A700 - @color/orange_A100 + #FFB05F + #FF9A34 + #FF8100 + #C66400 + #9C4F00 - #ffffffff + #499FB8 + #278BA8 + #0f85a5 + #04617B + #024C61 + + + #ffebebeb + #ffffffff + #c4ffffff + #fff3f3f3 + + #69BD57 + #449F31 + #2B8519 + #156604 + #0C4300 + + #DB6470 + #B83945 + #9A1C28 + #76040F + #4D0007 + + + + + #ff192227 + #ff263238 + #b4263238 + #ff43575d + + #FFE9CF + #DEBC96 + #B99163 + #966E40 + #7A5021 + + #8CA1AB + #617E8C + #416475 + #2B4E5F + #173C4D + + + #ffededed + #fffefefe + #c4fefefe + #fffefefe + + #FF813A + #ED5B09 + + + + + #44BA99 + #26A783 + #069C72 + + + #ff1D2126 + #ff262C33 + #b4262C33 + #ff303740 + + + + + + #995AC7 + #7E3AAF + + + + #B3CB65 + #89A236 + #627A14 + + + + + + @android:color/white #43ffffff #88ffffff - #b3ffffff - + #b4ffffff + #deffffff #de000000 #8a000000 #43000000 - #0f85a5 - #17cdff - #0a5b71 - - - - #e66000 - #cd5700 - #b13956 - #873349 - - - - - #ff323232 - #b4323232 - #ff505050 - - #ffffffff - #b4ffffff - #ffd1d1d1 - - #ff263238 - #b4263238 - #ff43575d - #ff505050 #ffafafaf #ff505050 #ff606060 - - @color/dark_content_background - @color/light_content_background - @color/blue_grey_content_background + #51cc93 + #51cc93 + + #ffff8800 #ff669900 #ffcc0000 - #ff002b36 - #ff073642 - #ff586e75 - #ff657b83 - #ff839496 - #ff93a1a1 - #ffeee8d5 - #fffdf6e3 - #ffb58900 - #ffcb4b16 - #ffdc322f - #ffd33682 - #ff6c71c4 - #ff268bd2 - #ff2aa198 - #ff859900 - - #b4002b36 - #b4073642 - #b4fdf6e3 - #b4eee8d5 - - #ffc73a00 - - @color/background_floating_material_dark - \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index a3aea06..98fc809 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -341,8 +341,8 @@ Night Day Mist - Solarized - Solarized Dark + Sunrise + Sunset Show on media start Show over lockscreen diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml index 25a6252..a2b0b30 100644 --- a/app/src/main/res/values/themes.xml +++ b/app/src/main/res/values/themes.xml @@ -23,28 +23,18 @@ @color/dark_background @color/dark_background + @color/dark_background @style/PrefTheme @style/DrawerArrowStyle - - - - - - - - - - - - - @color/estuary_default - @color/estuary_default_dark + @color/estuary_blue + @color/estuary_blue_dark - @color/accent_default + @color/default_accent + @color/default_accent_light @@ -54,36 +44,36 @@ ?attr/colorPrimary @color/white - @color/white_dim_50pct + @color/white_dim_70pct @color/white @color/white ?attr/colorPrimary ?attr/colorPrimaryDark - @color/estuary_default_light + ?attr/colorPrimary ?attr/colorPrimary ?attr/colorPrimaryDark - @color/estuary_default_light + ?attr/colorPrimary @color/white - @color/yellow_800 - @color/green_600 + @color/default_accent + @color/default_accent_darker @style/ThemeOverlay.AppCompat.ActionBar @style/ThemeOverlay.AppCompat - @color/dark_content_background_dim_70pct + @color/dark_content_background_dim @color/dark_content_background @color/dark_selected_content_background - @color/dark_content_background_dim_70pct + @color/dark_content_background_dim - @color/dark_drawer_background + @color/dark_background @color/dark_separator @color/dark_fastscroll_handle @@ -180,6 +170,7 @@ @color/light_background @color/light_background + @color/light_background @style/PrefTheme @@ -188,7 +179,9 @@ @color/day_primary @color/day_primary_dark + @color/day_accent + @color/day_accent_light @@ -207,29 +200,29 @@ ?attr/colorPrimary ?attr/colorPrimaryDark - @color/accent_default_light + ?attr/colorPrimary ?attr/colorPrimary ?attr/colorPrimaryDark - @color/accent_default_light + ?attr/colorPrimary @color/white - @color/yellow_800 - @color/light_green_600 + @color/day_accent + @color/day_accent_dark @style/ThemeOverlay.AppCompat.Dark.ActionBar @style/ThemeOverlay.AppCompat.Light - @color/light_content_background_dim_70pct + @color/light_content_background_dim @color/light_content_background @color/light_selected_content_background - @color/light_content_background_dim_70pct + @color/light_content_background_dim - @color/light_drawer_background + @color/light_content_background @color/light_separator @color/light_fastscroll_handle @@ -334,75 +327,76 @@ - - - -