01: package org.jvnet.substance.themepack.theme;
02:
03: import org.jvnet.substance.theme.SubstanceTheme;
04: import org.jvnet.substance.themepack.color.BrownVelvetColorScheme;
05:
06: /**
07: * <b>Aqua</b> theme for <code>Substance</code> look and feel.
08: *
09: * @author Kirill Grouchnikov
10: */
11: public class ExtraBrownVelvetTheme extends SubstanceTheme {
12: /**
13: * Simple constructor.
14: */
15: public ExtraBrownVelvetTheme() {
16: super (new BrownVelvetColorScheme(), "Brown Velvet",
17: ThemeKind.COLD);
18: }
19: }
|