Pastel Theme (Horrifying)

This commit is contained in:
Rsl1122 2017-12-01 17:53:50 +02:00
parent 0a5eda1fc8
commit d516fc6370
3 changed files with 63 additions and 1 deletions

View File

@ -33,6 +33,11 @@ public class ThemeConfig extends Config {
String fileLocation = "themes/";
switch (fileName.toLowerCase()) {
case "pastel":
case "brigth":
case "highcontrast":
fileLocation += "pastel.yml";
break;
case "sepia":
case "brown":
fileLocation += "sepia.yml";

View File

@ -33,7 +33,7 @@ public enum ThemeVal {
ORANGE("Colors.orange", "#FF9800"),
DEEP_ORANGE("Colors.deep-orange", "#FF5722"),
BROWN("Colors.brown", "#795548"),
GREY("Colors.brown", "#9E9E9E"),
GREY("Colors.grey", "#9E9E9E"),
BLUE_GREY("Colors.blue-grey", "#607D8B"),
BLACK("Colors.black", "#000000"),
WHITE("Colors.Extra.White", "#fff"),

View File

@ -0,0 +1,57 @@
# Default Theme bar color when user has not chosen a color
DefaultColor: "indigo"
Font:
# Location of the FontStyleSheet, eg. https://fonts.googleapis.com/css?family=Quicksand:300,400
FontStyleSheet: https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,cyrillic-ext
# Name of the Font for CSS eg "'Quicksand', sans-serif"
FontFamily: '"Roboto", sans-serif'
# Color codes for each theme element color
# These affect icons & backgrounds of all elements of this color.
Colors:
red: "#FF0000"
pink: "#FF0065"
purple: "#FF00FF"
deep-purple: "#870BFF"
indigo: "#1546FF"
blue: "#00C2FF"
light-blue: "#00F2FF"
cyan: "#00FFFF"
teal: "#00E8C1"
green: "#00F600"
light-green: "#5FF900"
lime: "#DDFF00"
yellow: "#FFFF00"
amber: "#FFC600"
orange: "#FF8100"
deep-orange: "#FF0A00"
brown: "#A84522"
grey: "#9E9E9E"
blue-grey: "#3C8BB2"
black: "#000000"
Extra:
White: "#fff"
# Useful tool for html colors
# https://www.w3schools.com/colors/colors_picker.asp
GraphColors:
PunchCard: "#222"
PlayersOnline: "#00B6FF"
TPS:
High: "#00C800"
Medium: "#FFE400"
Low: "#FF0808"
CPU: "#FFE200"
RAM: "#3EFF00"
Chunks: "#FF8200"
Entities: "#E32CFF"
WorldPie: '"#00E0FF", "#35EF00", "#0075FE", "#F007F0", "#00F5C6", "#C9C900", "#8700FF", "#FF4E00", "#00CF4C", "#267BFF"'
GMDrilldown: '"#C9C900", "#8700FF", "#FF4E00", "#00CF4C"'
ActivityPie: '"#00F600", "#5FF900", "#DDFF00", "#FFC600", "#3C8BB2"'
ServerPreferencePie: '"#00E0FF", "#35EF00", "#0075FE", "#F007F0", "#00F5C6", "#C9C900", "#8700FF", "#FF4E00", "#00CF4C", "#267BFF"'
# Leave blank "" for white
ParsedElements:
SessionAccordion: "teal"
ServerAccordion: "light-green"