001: /*
002: * Copyright (c) 2004 Sun Microsystems, Inc. All Rights Reserved.
003: *
004: * Redistribution and use in source and binary forms, with or without
005: * modification, are permitted provided that the following conditions
006: * are met:
007: *
008: * -Redistributions of source code must retain the above copyright
009: * notice, this list of conditions and the following disclaimer.
010: *
011: * -Redistribution in binary form must reproduct the above copyright
012: * notice, this list of conditions and the following disclaimer in
013: * the documentation and/or other materials provided with the distribution.
014: *
015: * Neither the name of Sun Microsystems, Inc. or the names of contributors
016: * may be used to endorse or promote products derived from this software
017: * without specific prior written permission.
018: *
019: * This software is provided "AS IS," without a warranty of any kind. ALL
020: * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
021: * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
022: * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT
023: * BE LIABLE FOR ANY DAMAGES OR LIABILITIES SUFFERED BY LICENSEE AS A RESULT
024: * OF OR RELATING TO USE, MODIFICATION OR DISTRIBUTION OF THE SOFTWARE OR ITS
025: * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
026: * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
027: * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY
028: * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN
029: * IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
030: *
031: * You acknowledge that Software is not designed, licensed or intended for
032: * use in the design, construction, operation or maintenance of any nuclear
033: * facility.
034: */
035:
036: /*
037: * @(#)EmeraldTheme.java 1.8 03/12/19
038: */
039: package br.com.gfpshare.plaf.theme;
040:
041: import javax.swing.plaf.ColorUIResource;
042: import javax.swing.plaf.metal.DefaultMetalTheme;
043:
044: /**
045: * This class describes a theme using glowing green colors.
046: *
047: * @version 1.8 12/19/03
048: * @author Jeff Dinkins
049: */
050: public class EmeraldTheme extends DefaultMetalTheme {
051:
052: /**
053: * @see javax.swing.plaf.metal.DefaultMetalTheme#getName()
054: */
055: @Override
056: public String getName() {
057: return "Emerald";
058: }
059:
060: private final ColorUIResource primary1 = new ColorUIResource(51,
061: 142, 71);
062: private final ColorUIResource primary2 = new ColorUIResource(102,
063: 193, 122);
064: private final ColorUIResource primary3 = new ColorUIResource(153,
065: 244, 173);
066:
067: private final ColorUIResource secondary1 = new ColorUIResource(50,
068: 225, 50);
069: private final ColorUIResource secondary2 = new ColorUIResource(159,
070: 225, 159);
071: private final ColorUIResource secondary3 = new ColorUIResource(204,
072: 225, 204);
073:
074: @Override
075: protected ColorUIResource getPrimary1() {
076: return primary1;
077: }
078:
079: @Override
080: protected ColorUIResource getPrimary2() {
081: return primary2;
082: }
083:
084: @Override
085: protected ColorUIResource getPrimary3() {
086: return primary3;
087: }
088:
089: @Override
090: protected ColorUIResource getSecondary1() {
091: return secondary1;
092: }
093:
094: @Override
095: protected ColorUIResource getSecondary2() {
096: return secondary2;
097: }
098:
099: @Override
100: protected ColorUIResource getSecondary3() {
101: return secondary3;
102: }
103: }
|