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