All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.ipokerface.weixin.model.card.CardColor Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package cn.ipokerface.weixin.model.card;

/**
 * Created by       PokerFace
 * Create Date      2019-12-28.
 * Email:           [email protected]
 * Version          1.0.0
 * 

* Description: */ public enum CardColor { /** * Color010 */ Color010(99, 179, 89, "#63b359"), /** * Color020 */ Color020(44, 159, 103, "#2c9f67"), /** * Color030 */ Color030(80, 159, 201, "#509fc9"), /** * Color040 */ Color040(88, 133, 207, "#5885cf"), /** * Color050 */ Color050(144, 98, 192, "#9062c0"), /** * Color060 */ Color060(208, 154, 69, "#d09a45"), /** * Color070 */ Color070(228, 117, 56, "#e4b138"), /** * Color080 */ Color080(238, 144, 60, "#ee903c"), /** * Color081 */ Color081(240, 133, 0, "#f08500"), /** * Color082 */ Color082(169, 217, 45, "#a9d92d"), /** * Color090 */ Color090(221, 101, 73, "#dd6549"), /** * Color0100 */ Color100(204, 70, 61, "#cc463d"), /** * Color0101 */ Color101(207, 62, 54, "#cf3e36"), /** * Color0102 */ Color102(94, 102, 113, "#5E6671"); private int r; private int g; private int b; private String hex; CardColor(int r, int g, int b, String hex) { this.r = r; this.g = g; this.b = b; this.hex = hex; } public int getR() { return r; } public int getG() { return g; } public int getB() { return b; } public String getHex() { return hex; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy