Back to project page MinerStatus.
The source code is released under:
Apache License
If you think the Android project MinerStatus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package me.davidgreene.minerstatus.theme; //from www. j av a2s. c o m import android.graphics.Color; public class DarkTheme implements Theme { @Override public int getTextColor() { return Color.WHITE; } @Override public int getBackgroundColor() { return Color.BLACK; } @Override public int getHeaderTextColor() { return Color.GRAY; } }