1 30 31 package com.jgoodies.looks.plastic.theme; 32 33 import javax.swing.plaf.ColorUIResource ; 34 35 42 public class SkyRed extends AbstractSkyTheme { 43 44 public String getName() { 45 return "Sky Red"; 46 } 47 48 protected ColorUIResource getPrimary1() { 49 return Colors.RED_LOW_DARK; 50 } 51 52 protected ColorUIResource getPrimary2() { 53 return Colors.RED_LOW_MEDIUM; 54 } 55 56 protected ColorUIResource getPrimary3() { 57 return Colors.RED_LOW_LIGHTER; 58 } 59 60 } 61 | Popular Tags |