KhakiMetalTheme.java revision 2362
0N/A/*
2362N/A * Copyright (c) 1998, Oracle and/or its affiliates. All rights reserved.
0N/A *
0N/A * Redistribution and use in source and binary forms, with or without
0N/A * modification, are permitted provided that the following conditions
0N/A * are met:
0N/A *
0N/A * - Redistributions of source code must retain the above copyright
0N/A * notice, this list of conditions and the following disclaimer.
0N/A *
0N/A * - Redistributions in binary form must reproduce the above copyright
0N/A * notice, this list of conditions and the following disclaimer in the
0N/A * documentation and/or other materials provided with the distribution.
0N/A *
2362N/A * - Neither the name of Oracle nor the names of its
0N/A * contributors may be used to endorse or promote products derived
0N/A * from this software without specific prior written permission.
0N/A *
0N/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
0N/A * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
0N/A * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
0N/A * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
0N/A * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
0N/A * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
0N/A * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
0N/A * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
0N/A * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
0N/A * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
0N/A * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
0N/A */
0N/A
0N/A/*
0N/A */
0N/A
0N/A
0N/Aimport javax.swing.plaf.*;
0N/Aimport javax.swing.plaf.metal.*;
0N/Aimport javax.swing.*;
0N/Aimport javax.swing.border.*;
0N/Aimport java.awt.*;
0N/A
0N/A/**
0N/A * This class describes a theme using "khaki" colors.
0N/A *
0N/A * @author Steve Wilson
0N/A */
0N/Apublic class KhakiMetalTheme extends DefaultMetalTheme {
0N/A
0N/A public String getName() { return "Sandstone"; }
0N/A
0N/A private final ColorUIResource primary1 = new ColorUIResource( 87, 87, 47);
0N/A private final ColorUIResource primary2 = new ColorUIResource(159, 151, 111);
0N/A private final ColorUIResource primary3 = new ColorUIResource(199, 183, 143);
0N/A
0N/A private final ColorUIResource secondary1 = new ColorUIResource( 111, 111, 111);
0N/A private final ColorUIResource secondary2 = new ColorUIResource(159, 159, 159);
0N/A private final ColorUIResource secondary3 = new ColorUIResource(231, 215, 183);
0N/A
0N/A protected ColorUIResource getPrimary1() { return primary1; }
0N/A protected ColorUIResource getPrimary2() { return primary2; }
0N/A protected ColorUIResource getPrimary3() { return primary3; }
0N/A
0N/A protected ColorUIResource getSecondary1() { return secondary1; }
0N/A protected ColorUIResource getSecondary2() { return secondary2; }
0N/A protected ColorUIResource getSecondary3() { return secondary3; }
0N/A
0N/A}