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