inspired.pdf.unbox.themes.UnboxTheme Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unbox-pdf Show documentation
Show all versions of unbox-pdf Show documentation
Unbox PDF is a toolkit for PDF creation based on Apache PDF Box.
package inspired.pdf.unbox.themes;
import java.awt.*;
/**
* https://www.canva.com/colors/color-palettes/under-the-ferns/
* https://www.canva.com/colors/color-palettes/forever-fields/
*/
public class UnboxTheme {
public static Color GREEN = new Color(0x11,0x65,0x30);
public static Color BLUE_GREEN = new Color(0x21,0xb6,0xa8);
public static Color NEON_GREEN = new Color(0xa3, 0xeb, 0xb1);
public static Color KELLY_GREEN = new Color(0x18, 0xa5, 0x58);
public static Color RED_ORANGE = new Color(0xff, 0x45, 0x00);
public static Color WHITE = new Color(255, 255, 255);
public static Color BLACK = new Color(0, 0, 0);
public static Color GRAY_100 = new Color(240, 240, 240);
public static Color GRAY_200 = new Color(210, 210, 210);
public static Color GRAY_300 = new Color(190, 190, 190);
public static Color GRAY_400 = new Color(160, 160, 160);
public static Color GRAY_500 = new Color(130, 130, 130);
public static Color GRAY_600 = new Color(100, 100, 100);
public static Color GRAY_700 = new Color(70, 70, 70);
public static Color GRAY_800 = new Color(45, 45, 45);
public static Color GRAY_900 = new Color(20, 20, 20);
}