1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Resource Runemate Bot Store Skill Icons and Colors

Discussion in 'Tutorials & Resources' started by Snufalufugus, Jan 24, 2018.

  1. Snufalufugus

    Joined:
    Aug 23, 2015
    Messages:
    1,961
    Likes Received:
    757
    Attached is a zipped folder of all the icons. Below is the code for an enum with all the colors.

    Code (Text):
    1. package com.RegalAPI.ui;
    2.  
    3. import java.awt.*;
    4.  
    5. /**
    6. * Created by NoahQuinn on 05/12/2017.
    7. * Alphabetized, americanized, and appeneded by Snufalufugus on 01/24/2017.
    8. * Most colors scraped from the CSS of the Runemate botstore
    9. * Unofficial colors picked from the corresponding untrimmed skillcape
    10. */
    11.  
    12. public enum SkillColors {
    13.  
    14.     AGILITY("Agility", Color.decode("#a0c216")),
    15.     ATTACK_UNOFFICIAL("Attack_unofficial", Color.decode("#7C271B")),
    16.     COMBAT("Combat", Color.decode("#d35400")),
    17.     CONSTITUTION("Constitution", Color.decode("#bd1a1a")),
    18.     CONSTRUCTION("Construction", Color.decode("#835b30")),
    19.     COOKING("Cooking", Color.decode("#a14a09")),
    20.     CRAFTING("Crafting", Color.decode("#4e3c15")),
    21.     DEFENCE("Defence", Color.decode("#365164")),
    22.     DEVELOPER_TOOLS("Developer Tools", Color.decode("#210040")),
    23.     DIVINATION("Divination", Color.decode("#00365c")),
    24.     DUNGEONEERING("Dungeoneering", Color.decode("#be471e")),
    25.     FARMING("Farming", Color.decode("#10a900")),
    26.     FIREMAKING("Firemaking", Color.decode("#c86300")),
    27.     FISHING("Fishing", Color.decode("#197b84")),
    28.     FLETCHING("Fletching", Color.decode("#647b1d")),
    29.     HERBLORE("Herblore", Color.decode("#1b4423")),
    30.     HUNTER("Hunter", Color.decode("#48382b")),
    31.     INVENTION("Invention", Color.decode("#f4d03f")),
    32.     MAGIC("Magic", Color.decode("#001140")),
    33.     MINIGAMES("Minigames", Color.decode("#93A7AC")),
    34.     MINING("Mining", Color.decode("#221508")),
    35.     MONEYMAKING("Moneymaking", Color.decode("#f5b94b")),
    36.     OTHER("Other", Color.decode("#918A6F")),
    37.     PRAYER("Prayer", Color.decode("#e8dfaa")),
    38.     QUESTING("Questing", Color.decode("#3737C8")),
    39.     RANGED("Ranged", Color.decode("#1a6720")),
    40.     RUNECRAFTING("Runecrafting", Color.decode("#f6b900")),
    41.     SLAYER("Slayer", Color.decode("#390000")),
    42.     SMITHING("Smithing", Color.decode("#4b4b4b")),
    43.     STRENGTH("Strength", Color.decode("#7f2d1c")),
    44.     STRENGTH_UNOFFICIAL("Strength_unofficial", Color.decode("0D6E4B")),
    45.     SUMMONING("Summoning", Color.decode("#00415c")),
    46.     THIEVING("Thieving", Color.decode("#141414")),
    47.     WOODCUTTING("Woodcutting", Color.decode("#174717"));
    48.  
    49.     private String name;
    50.     private Color color;
    51.  
    52.     SkillColors(String name, Color color) {
    53.         this.name = name;
    54.         this.color = color;
    55.     }
    56.  
    57.     public String getName() { return name; }
    58.  
    59.     public Color getColor() { return color; }
    60. }
     

    Attached Files:

    Wet Rag, Jhinn and Swych like this.
  2. Jhinn

    Joined:
    Jun 9, 2015
    Messages:
    3,646
    Likes Received:
    1,337
    Useful! +1 for sharing
     

Share This Page

Loading...