- Joined
- Aug 23, 2015
- Messages
- 1,970
- Thread Author
- #1
Attached is a zipped folder of all the icons. Below is the code for an enum with all the colors.
Code:
package com.RegalAPI.ui;
import java.awt.*;
/**
* Created by NoahQuinn on 05/12/2017.
* Alphabetized, americanized, and appeneded by Snufalufugus on 01/24/2017.
* Most colors scraped from the CSS of the Runemate botstore
* Unofficial colors picked from the corresponding untrimmed skillcape
*/
public enum SkillColors {
AGILITY("Agility", Color.decode("#a0c216")),
ATTACK_UNOFFICIAL("Attack_unofficial", Color.decode("#7C271B")),
COMBAT("Combat", Color.decode("#d35400")),
CONSTITUTION("Constitution", Color.decode("#bd1a1a")),
CONSTRUCTION("Construction", Color.decode("#835b30")),
COOKING("Cooking", Color.decode("#a14a09")),
CRAFTING("Crafting", Color.decode("#4e3c15")),
DEFENCE("Defence", Color.decode("#365164")),
DEVELOPER_TOOLS("Developer Tools", Color.decode("#210040")),
DIVINATION("Divination", Color.decode("#00365c")),
DUNGEONEERING("Dungeoneering", Color.decode("#be471e")),
FARMING("Farming", Color.decode("#10a900")),
FIREMAKING("Firemaking", Color.decode("#c86300")),
FISHING("Fishing", Color.decode("#197b84")),
FLETCHING("Fletching", Color.decode("#647b1d")),
HERBLORE("Herblore", Color.decode("#1b4423")),
HUNTER("Hunter", Color.decode("#48382b")),
INVENTION("Invention", Color.decode("#f4d03f")),
MAGIC("Magic", Color.decode("#001140")),
MINIGAMES("Minigames", Color.decode("#93A7AC")),
MINING("Mining", Color.decode("#221508")),
MONEYMAKING("Moneymaking", Color.decode("#f5b94b")),
OTHER("Other", Color.decode("#918A6F")),
PRAYER("Prayer", Color.decode("#e8dfaa")),
QUESTING("Questing", Color.decode("#3737C8")),
RANGED("Ranged", Color.decode("#1a6720")),
RUNECRAFTING("Runecrafting", Color.decode("#f6b900")),
SLAYER("Slayer", Color.decode("#390000")),
SMITHING("Smithing", Color.decode("#4b4b4b")),
STRENGTH("Strength", Color.decode("#7f2d1c")),
STRENGTH_UNOFFICIAL("Strength_unofficial", Color.decode("0D6E4B")),
SUMMONING("Summoning", Color.decode("#00415c")),
THIEVING("Thieving", Color.decode("#141414")),
WOODCUTTING("Woodcutting", Color.decode("#174717"));
private String name;
private Color color;
SkillColors(String name, Color color) {
this.name = name;
this.color = color;
}
public String getName() { return name; }
public Color getColor() { return color; }
}