add Neon Theme

refactor-toolbar
Georg Eitler 8 years ago committed by Florens
parent 34d964224e
commit c49d724330
  1. 1
      Clover/app/src/main/java/org/floens/chan/ui/theme/ThemeHelper.java
  2. 35
      Clover/app/src/main/res/values/styles.xml

@ -58,6 +58,7 @@ public class ThemeHelper {
themes.add(new Theme("Photon", "photon", R.style.Chan_Theme_Photon, PrimaryColor.ORANGE)); themes.add(new Theme("Photon", "photon", R.style.Chan_Theme_Photon, PrimaryColor.ORANGE));
themes.add(new DarkTheme("Insomnia", "insomnia", R.style.Chan_Theme_Insomnia, PrimaryColor.DARK)); themes.add(new DarkTheme("Insomnia", "insomnia", R.style.Chan_Theme_Insomnia, PrimaryColor.DARK));
themes.add(new DarkTheme("Gruvbox", "gruvbox", R.style.Chan_Theme_Gruvbox, PrimaryColor.DARK)); themes.add(new DarkTheme("Gruvbox", "gruvbox", R.style.Chan_Theme_Gruvbox, PrimaryColor.DARK));
themes.add(new DarkTheme("Neon", "neon", R.style.Chan_Theme_Neon, PrimaryColor.DARK));
ChanSettings.ThemeColor settingTheme = ChanSettings.getThemeAndColor(); ChanSettings.ThemeColor settingTheme = ChanSettings.getThemeAndColor();
for (Theme theme : themes) { for (Theme theme : themes) {

@ -235,6 +235,41 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<item name="dropdown_dark_pressed_color">#ffffff</item> <item name="dropdown_dark_pressed_color">#ffffff</item>
</style> </style>
<style name="Chan.Theme.Neon" parent="Chan.Theme.Dark">
<item name="colorAccent">#999999</item>
<item name="backcolor">#222222</item>
<item name="backcolor_secondary">#555555</item>
<item name="android:textColor">#888888</item>
<item name="text_color_primary">#cccccc</item>
<item name="text_color_secondary">#dddddd</item>
<item name="text_color_hint">#808080</item>
<item name="text_color_reveal_spoiler">#282828</item>
<item name="post_name_color">#ff669900</item>
<item name="post_subject_color">#33b5e5</item>
<item name="post_details_color">#888888</item>
<item name="post_quote_color">#33b5e5</item>
<item name="post_highlight_quote_color">#ff0099cc</item>
<item name="post_inline_quote_color">#ff99cc00</item>
<item name="post_link_color">#ff0099cc</item>
<item name="post_spoiler_color">#bbbbbb</item>
<item name="post_capcode_color">#ff00ddff</item>
<item name="post_last_seen_color">#ff00ddff</item>
<item name="post_id_background_light">#6633b5e5</item>
<item name="post_saved_reply_color">#333333</item>
<item name="post_highlighted_color">#282828</item>
<item name="post_selected_color">#282828</item>
<item name="divider_color">#999999</item>
<item name="divider_split_color">#999999</item>
<item name="dropdown_dark_color">#6633b5e5</item>
<item name="dropdown_dark_pressed_color">#6633b5e5</item>
</style>
<!-- For FloatingMenu --> <!-- For FloatingMenu -->
<style name="ToolbarDropDownListViewStyle" parent="Widget.AppCompat.ListView.DropDown"> <style name="ToolbarDropDownListViewStyle" parent="Widget.AppCompat.ListView.DropDown">
<item name="android:background">#ffffffff</item> <item name="android:background">#ffffffff</item>

Loading…
Cancel
Save