fscolortable.java

来自「利用opensource的开源jar实现生成flash文件」· Java 代码 · 共 854 行 · 第 1/5 页

JAVA
854
字号
    public static FSColor plum() { return new FSColor(0xDD, 0xA0, 0xDD, 0xFF); }
    /** Definition of the color, powderblue from the Netscape color table. */
    public static FSColor powderblue() { return new FSColor(0xB0, 0xE0, 0xE6, 0xFF); }
    /** Definition of the color, purple from the Netscape color table. */
    public static FSColor purple() { return new FSColor(0x80, 0x00, 0x80, 0xFF); }
    /** Definition of the color, red from the Netscape color table. */
    public static FSColor red() { return new FSColor(0xFF, 0x00, 0x00, 0xFF); }
    /** Definition of the color, rosybrown from the Netscape color table. */
    public static FSColor rosybrown() { return new FSColor(0xBC, 0x8F, 0x8F, 0xFF); }
    /** Definition of the color, royalblue from the Netscape color table. */
    public static FSColor royalblue() { return new FSColor(0x41, 0x69, 0xE1, 0xFF); }
    /** Definition of the color, saddlebrown from the Netscape color table. */
    public static FSColor saddlebrown() { return new FSColor(0x8B, 0x45, 0x13, 0xFF); }
    /** Definition of the color, salmon from the Netscape color table. */
    public static FSColor salmon() { return new FSColor(0xFA, 0x80, 0x72, 0xFF); }
    /** Definition of the color, sandybrown from the Netscape color table. */
    public static FSColor sandybrown() { return new FSColor(0xF4, 0xA4, 0x60, 0xFF); }
    /** Definition of the color, seagreen from the Netscape color table. */
    public static FSColor seagreen() { return new FSColor(0x2E, 0x8B, 0x57, 0xFF); }
    /** Definition of the color, seashell from the Netscape color table. */
    public static FSColor seashell() { return new FSColor(0xFF, 0xF5, 0xEE, 0xFF); }
    /** Definition of the color, sienna from the Netscape color table. */
    public static FSColor sienna() { return new FSColor(0xA0, 0x52, 0x2d, 0xFF); }
    /** Definition of the color, silver from the Netscape color table. */
    public static FSColor silver() { return new FSColor(0xC0, 0xC0, 0xC0, 0xFF); }
    /** Definition of the color, skyblue from the Netscape color table. */
    public static FSColor skyblue() { return new FSColor(0x87, 0xCE, 0xEB, 0xFF); }
    /** Definition of the color, slateblue from the Netscape color table. */
    public static FSColor slateblue() { return new FSColor(0x6A, 0x5A, 0xCD, 0xFF); }
    /** Definition of the color, slategray from the Netscape color table. */
    public static FSColor slategray() { return new FSColor(0x70, 0x80, 0x90, 0xFF); }
    /** Definition of the color, snow from the Netscape color table. */
    public static FSColor snow() { return new FSColor(0xFF, 0xFA, 0xFA, 0xFF); }
    /** Definition of the color, springgreen from the Netscape color table. */
    public static FSColor springgreen() { return new FSColor(0x00, 0xFF, 0x7F, 0xFF); }
    /** Definition of the color, steelblue from the Netscape color table. */
    public static FSColor steelblue() { return new FSColor(0x46, 0x82, 0xB4, 0xFF); }
    /** Definition of the color, tan from the Netscape color table. */
    public static FSColor tan() { return new FSColor(0xD2, 0xB4, 0x8C, 0xFF); }
    /** Definition of the color, teal from the Netscape color table. */
    public static FSColor teal() { return new FSColor(0x00, 0x80, 0x80, 0xFF); }
    /** Definition of the color, thistle from the Netscape color table. */
    public static FSColor thistle() { return new FSColor(0xD8, 0xBF, 0xD8, 0xFF); }
    /** Definition of the color, tomato from the Netscape color table. */
    public static FSColor tomato() { return new FSColor(0xFF, 0x63, 0x47, 0xFF); }
    /** Definition of the color, turquoise from the Netscape color table. */
    public static FSColor turquoise() { return new FSColor(0x40, 0xE0, 0xD0, 0xFF); }
    /** Definition of the color, violet from the Netscape color table. */
    public static FSColor violet() { return new FSColor(0xEE, 0x82, 0xEE, 0xFF); }
    /** Definition of the color, wheat from the Netscape color table. */
    public static FSColor wheat() { return new FSColor(0xF5, 0xDE, 0xB3, 0xFF); }
    /** Definition of the color, white from the Netscape color table. */
    public static FSColor white() { return new FSColor(0xFF, 0xFF, 0xFF, 0xFF); }
    /** Definition of the color, whitesmoke from the Netscape color table. */
    public static FSColor whitesmoke() { return new FSColor(0xF5, 0xF5, 0xF5, 0xFF); }
    /** Definition of the color, yellow from the Netscape color table. */
    public static FSColor yellow() { return new FSColor(0xFF, 0xFF, 0x00, 0xFF); }
    /** Definition of the color, yellowgreen from the Netscape color table. */
    public static FSColor yellowgreen() { return new FSColor(0x9A, 0xCD, 0x32, 0xFF); } 

    /** Definition of the transparent color, aliceblue from the Netscape color table. */
    public static FSColor aliceblue(int alpha) { return new FSColor(0xF0, 0xF8, 0xFF, alpha); }
    /** Definition of the transparent color, antiquewhite from the Netscape color table. */
    public static FSColor antiquewhite(int alpha) { return new FSColor(0xFA, 0xEB, 0xD7, alpha); }
    /** Definition of the transparent color, aqua from the Netscape color table. */
    public static FSColor aqua(int alpha) { return new FSColor(0x00, 0xFF, 0xFF, alpha); }
    /** Definition of the transparent color, aquamarine from the Netscape color table. */
    public static FSColor aquamarine(int alpha) { return new FSColor(0x7F, 0xFF, 0xD4, alpha); }
    /** Definition of the transparent color, azure from the Netscape color table. */
    public static FSColor azure(int alpha) { return new FSColor(0xF0, 0xFF, 0xFF, alpha); }
    /** Definition of the transparent color, beige from the Netscape color table. */
    public static FSColor beige(int alpha) { return new FSColor(0xF5, 0xF5, 0xDC, alpha); }
    /** Definition of the transparent color, bisque from the Netscape color table. */
    public static FSColor bisque(int alpha) { return new FSColor(0xFF, 0xE4, 0xC4, alpha); }
    /** Definition of the transparent color, black from the Netscape color table. */
    public static FSColor black(int alpha) { return new FSColor(0x00, 0x00, 0x00, alpha); }
    /** Definition of the transparent color, blanchedalmond from the Netscape color table. */
    public static FSColor blanchedalmond(int alpha) { return new FSColor(0xFF, 0xEB, 0xCD, alpha); }
    /** Definition of the transparent color, blue from the Netscape color table. */
    public static FSColor blue(int alpha) { return new FSColor(0x00, 0x00, 0xFF, alpha); }
    /** Definition of the transparent color, blueviolet from the Netscape color table. */
    public static FSColor blueviolet(int alpha) { return new FSColor(0x8A, 0x2B, 0xE2, alpha); }
    /** Definition of the transparent color, brown from the Netscape color table. */
    public static FSColor brown(int alpha) { return new FSColor(0xA5, 0x2A, 0x2A, alpha); }
    /** Definition of the transparent color, burlywood from the Netscape color table. */
    public static FSColor burlywood(int alpha) { return new FSColor(0xDE, 0xB8, 0x87, alpha); }
    /** Definition of the transparent color, cadetblue from the Netscape color table. */
    public static FSColor cadetblue(int alpha) { return new FSColor(0x5F, 0x9E, 0xA0, alpha); }
    /** Definition of the transparent color, chartreuse from the Netscape color table. */
    public static FSColor chartreuse(int alpha) { return new FSColor(0x7F, 0xFF, 0x00, alpha); }
    /** Definition of the transparent color, chocolate from the Netscape color table. */
    public static FSColor chocolate(int alpha) { return new FSColor(0xD2, 0x69, 0x1E, alpha); }
    /** Definition of the transparent color, coral from the Netscape color table. */
    public static FSColor coral(int alpha) { return new FSColor(0xFF, 0x7F, 0x50, alpha); }
    /** Definition of the transparent color, cornflowerblue from the Netscape color table. */
    public static FSColor cornflowerblue(int alpha) { return new FSColor(0x64, 0x95, 0xED, alpha); }
    /** Definition of the transparent color, cornsilk from the Netscape color table. */
    public static FSColor cornsilk(int alpha) { return new FSColor(0xFF, 0xF8, 0xDC, alpha); }
    /** Definition of the transparent color, crimson from the Netscape color table. */
    public static FSColor crimson(int alpha) { return new FSColor(0xDC, 0x14, 0x3C, alpha); }
    /** Definition of the transparent color, cyan from the Netscape color table. */
    public static FSColor cyan(int alpha) { return new FSColor(0x00, 0xFF, 0xFF, alpha); }
    /** Definition of the transparent color, darkblue from the Netscape color table. */
    public static FSColor darkblue(int alpha) { return new FSColor(0x00, 0x00, 0x8B, alpha); }
    /** Definition of the transparent color, darkcyan from the Netscape color table. */
    public static FSColor darkcyan(int alpha) { return new FSColor(0x00, 0x8B, 0x8B, alpha); }
    /** Definition of the transparent color, darkgoldenrod from the Netscape color table. */
    public static FSColor darkgoldenrod(int alpha) { return new FSColor(0xB8, 0x86, 0x0B, alpha); }
    /** Definition of the transparent color, darkgray from the Netscape color table. */
    public static FSColor darkgray(int alpha) { return new FSColor(0xA9, 0xA9, 0xA9, alpha); }
    /** Definition of the transparent color, darkgreen from the Netscape color table. */
    public static FSColor darkgreen(int alpha) { return new FSColor(0x00, 0x64, 0x00, alpha); }
    /** Definition of the transparent color, darkkhaki from the Netscape color table. */
    public static FSColor darkkhaki(int alpha) { return new FSColor(0xBD, 0xB7, 0x6B, alpha); }
    /** Definition of the transparent color, darkmagenta from the Netscape color table. */
    public static FSColor darkmagenta(int alpha) { return new FSColor(0x8B, 0x00, 0x8B, alpha); }
    /** Definition of the transparent color, darkolivegreen from the Netscape color table. */
    public static FSColor darkolivegreen(int alpha) { return new FSColor(0x55, 0x6B, 0x2F, alpha); }
    /** Definition of the transparent color, darkorange from the Netscape color table. */
    public static FSColor darkorange(int alpha) { return new FSColor(0xFF, 0x8C, 0x00, alpha); }
    /** Definition of the transparent color, darkorchid from the Netscape color table. */
    public static FSColor darkorchid(int alpha) { return new FSColor(0x99, 0x32, 0xCC, alpha); }
    /** Definition of the transparent color, darkred from the Netscape color table. */
    public static FSColor darkred(int alpha) { return new FSColor(0x8B, 0x00, 0x00, alpha); }
    /** Definition of the transparent color, darksalmon from the Netscape color table. */
    public static FSColor darksalmon(int alpha) { return new FSColor(0xE9, 0x96, 0x7A, alpha); }
    /** Definition of the transparent color, darkseagreen from the Netscape color table. */
    public static FSColor darkseagreen(int alpha) { return new FSColor(0x8F, 0xBC, 0x8F, alpha); }
    /** Definition of the transparent color, darkslateblue from the Netscape color table. */
    public static FSColor darkslateblue(int alpha) { return new FSColor(0x48, 0x3D, 0x8B, alpha); }
    /** Definition of the transparent color, darkslategray from the Netscape color table. */
    public static FSColor darkslategray(int alpha) { return new FSColor(0x2F, 0x4F, 0x4F, alpha); }
    /** Definition of the transparent color, darkturquoise from the Netscape color table. */
    public static FSColor darkturquoise(int alpha) { return new FSColor(0x00, 0xCE, 0xD1, alpha); }
    /** Definition of the transparent color, darkviolet from the Netscape color table. */
    public static FSColor darkviolet(int alpha) { return new FSColor(0x94, 0x00, 0xD3, alpha); }
    /** Definition of the transparent color, deeppink from the Netscape color table. */
    public static FSColor deeppink(int alpha) { return new FSColor(0xFF, 0x14, 0x93, alpha); }
    /** Definition of the transparent color, deepskyblue from the Netscape color table. */
    public static FSColor deepskyblue(int alpha) { return new FSColor(0x00, 0xBF, 0xFF, alpha); }
    /** Definition of the transparent color, dimgray from the Netscape color table. */
    public static FSColor dimgray(int alpha) { return new FSColor(0x69, 0x69, 0x69, alpha); }
    /** Definition of the transparent color, dodgerblue from the Netscape color table. */
    public static FSColor dodgerblue(int alpha) { return new FSColor(0x1E, 0x90, 0xFF, alpha); }
    /** Definition of the transparent color, firebrick from the Netscape color table. */
    public static FSColor firebrick(int alpha) { return new FSColor(0xB2, 0x22, 0x22, alpha); }
    /** Definition of the transparent color, floralwhite from the Netscape color table. */
    public static FSColor floralwhite(int alpha) { return new FSColor(0xFF, 0xFA, 0xF0, alpha); }
    /** Definition of the transparent color, forestgreen from the Netscape color table. */
    public static FSColor forestgreen(int alpha) { return new FSColor(0x22, 0x8B, 0x22, alpha); }
    /** Definition of the transparent color, fuchsia from the Netscape color table. */
    public static FSColor fuchsia(int alpha) { return new FSColor(0xFF, 0x00, 0xFF, alpha); }
    /** Definition of the transparent color, gainsboro from the Netscape color table. */
    public static FSColor gainsboro(int alpha) { return new FSColor(0xDC, 0xDC, 0xDC, alpha); }
    /** Definition of the transparent color, ghostwhite from the Netscape color table. */
    public static FSColor ghostwhite(int alpha) { return new FSColor(0xF8, 0xF8, 0xFB, alpha); }
    /** Definition of the transparent color, gold from the Netscape color table. */
    public static FSColor gold(int alpha) { return new FSColor(0xFF, 0xD7, 0x00, alpha); }
    /** Definition of the transparent color, goldenrod from the Netscape color table. */
    public static FSColor goldenrod(int alpha) { return new FSColor(0xDA, 0xA5, 0x20, alpha); }
    /** Definition of the transparent color, gray from the Netscape color table. */
    public static FSColor gray(int alpha) { return new FSColor(0x80, 0x80, 0x80, alpha); }
    /** Definition of the transparent color, green from the Netscape color table. */
    public static FSColor green(int alpha) { return new FSColor(0x00, 0x80, 0x00, alpha); }
    /** Definition of the transparent color, greenyellow from the Netscape color table. */
    public static FSColor greenyellow(int alpha) { return new FSColor(0xAD, 0xFF, 0x2F, alpha); }
    /** Definition of the transparent color, honeydew from the Netscape color table. */
    public static FSColor honeydew(int alpha) { return new FSColor(0xF0, 0xFF, 0xF0, alpha); }
    /** Definition of the transparent color, hotpink from the Netscape color table. */
    public static FSColor hotpink(int alpha) { return new FSColor(0xFF, 0x69, 0xB4, alpha); }
    /** Definition of the transparent color, indianred from the Netscape color table. */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?