Mass update - new L&F written. Public Betta
parent
e8928d9266
commit
857b0b5d50
@ -1,7 +1,7 @@
|
|||||||
Manifest-Version: 1.0
|
Manifest-Version: 1.0
|
||||||
AutoUpdate-Show-In-Client: true
|
AutoUpdate-Show-In-Client: true
|
||||||
OpenIDE-Module: org.idp.laf/1
|
OpenIDE-Module: org.idp.laf/1
|
||||||
OpenIDE-Module-Implementation-Version: 1
|
OpenIDE-Module-Implementation-Version: 0
|
||||||
OpenIDE-Module-Localizing-Bundle: org/idp/laf/Bundle.properties
|
OpenIDE-Module-Localizing-Bundle: org/idp/laf/Bundle.properties
|
||||||
OpenIDE-Module-Install: org/idp/laf/Installer.class
|
OpenIDE-Module-Install: org/idp/laf/Installer.class
|
||||||
OpenIDE-Module-Requires: org.openide.windows.WindowManager
|
OpenIDE-Module-Requires: org.openide.windows.WindowManager
|
||||||
|
|||||||
@ -0,0 +1,88 @@
|
|||||||
|
/*
|
||||||
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
|
||||||
|
*
|
||||||
|
* Copyright 2013 Oracle and/or its affiliates. All rights reserved.
|
||||||
|
*
|
||||||
|
* Oracle and Java are registered trademarks of Oracle and/or its affiliates.
|
||||||
|
* Other names may be trademarks of their respective owners.
|
||||||
|
*
|
||||||
|
* The contents of this file are subject to the terms of either the GNU
|
||||||
|
* General Public License Version 2 only ("GPL") or the Common
|
||||||
|
* Development and Distribution License("CDDL") (collectively, the
|
||||||
|
* "License"). You may not use this file except in compliance with the
|
||||||
|
* License. You can obtain a copy of the License at
|
||||||
|
* http://www.netbeans.org/cddl-gplv2.html
|
||||||
|
* or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
|
||||||
|
* specific language governing permissions and limitations under the
|
||||||
|
* License. When distributing the software, include this License Header
|
||||||
|
* Notice in each file and include the License file at
|
||||||
|
* nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this
|
||||||
|
* particular file as subject to the "Classpath" exception as provided
|
||||||
|
* by Oracle in the GPL Version 2 section of the License file that
|
||||||
|
* accompanied this code. If applicable, add the following below the
|
||||||
|
* License Header, with the fields enclosed by brackets [] replaced by
|
||||||
|
* your own identifying information:
|
||||||
|
* "Portions Copyrighted [year] [name of copyright owner]"
|
||||||
|
*
|
||||||
|
* If you wish your version of this file to be governed by only the CDDL
|
||||||
|
* or only the GPL Version 2, indicate your decision by adding
|
||||||
|
* "[Contributor] elects to include this software in this distribution
|
||||||
|
* under the [CDDL or GPL Version 2] license." If you do not indicate a
|
||||||
|
* single choice of license, a recipient has the option to distribute
|
||||||
|
* your version of this file under either the CDDL, the GPL Version 2 or
|
||||||
|
* to extend the choice of license to its licensees as provided above.
|
||||||
|
* However, if you add GPL Version 2 code and therefore, elected the GPL
|
||||||
|
* Version 2 license, then the option applies only if the new code is
|
||||||
|
* made subject to such option by the copyright holder.
|
||||||
|
*
|
||||||
|
* Contributor(s):
|
||||||
|
*
|
||||||
|
* Portions Copyrighted 2013 Sun Microsystems, Inc.
|
||||||
|
*/
|
||||||
|
package org.idp.laf;
|
||||||
|
|
||||||
|
import java.awt.Color;
|
||||||
|
import java.awt.image.RGBImageFilter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* For dark LaFs it inverts icon brightness (=inverts icon image to obtain dark icon,
|
||||||
|
* then inverts its hue to restore original colors).
|
||||||
|
*
|
||||||
|
* @author P. Somol
|
||||||
|
*/
|
||||||
|
public class DarkIconFilter extends RGBImageFilter {
|
||||||
|
|
||||||
|
/** in dark LaFs brighten all icons; 0.0f = no change, 1.0f = maximum brightening */
|
||||||
|
private static final float DARK_ICON_BRIGHTEN = 0.1f;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int filterRGB(int x, int y, int color) {
|
||||||
|
int a = color & 0xff000000;
|
||||||
|
int rgb[] = decode(color);
|
||||||
|
int inverted[] = invert(rgb);
|
||||||
|
int result[] = invertHueBrighten(inverted, DARK_ICON_BRIGHTEN);
|
||||||
|
return a | encode(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
private int[] invert(int[] rgb) {
|
||||||
|
return new int[]{255-rgb[0], 255-rgb[1], 255-rgb[2]};
|
||||||
|
}
|
||||||
|
|
||||||
|
private int[] invertHueBrighten(int[] rgb, float brighten) {
|
||||||
|
float hsb[] = new float[3];
|
||||||
|
Color.RGBtoHSB(rgb[0], rgb[1], rgb[2], hsb);
|
||||||
|
return decode(Color.HSBtoRGB(hsb[0] > 0.5f ? hsb[0]-0.5f : hsb[0]+0.5f, hsb[1], hsb[2]+(1.0f-hsb[2])*brighten));
|
||||||
|
}
|
||||||
|
|
||||||
|
private int[] decode(int rgb) {
|
||||||
|
return new int[]{(rgb & 0x00ff0000) >> 16, (rgb & 0x0000ff00) >> 8, rgb & 0x000000ff};
|
||||||
|
}
|
||||||
|
private int encode(int[] rgb) {
|
||||||
|
return (toBoundaries(rgb[0]) << 16) | (toBoundaries(rgb[1]) << 8) | toBoundaries(rgb[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
private int toBoundaries(int color) {
|
||||||
|
return Math.max(0,Math.min(255,color));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,48 @@
|
|||||||
|
/* Copyright (C) Edward M. Kagan - All Rights Reserved
|
||||||
|
* Unauthorized copying of this file, via any medium is strictly prohibited
|
||||||
|
* Proprietary and confidential
|
||||||
|
* Written by Edward M. Kagan <pagan@idp-crew.com>, 2015
|
||||||
|
*/
|
||||||
|
package org.idp.laf;
|
||||||
|
|
||||||
|
import javax.swing.UIDefaults;
|
||||||
|
import javax.swing.UIManager;
|
||||||
|
import javax.swing.plaf.metal.MetalLookAndFeel;
|
||||||
|
import static javax.swing.plaf.metal.MetalLookAndFeel.getCurrentTheme;
|
||||||
|
import static javax.swing.plaf.metal.MetalLookAndFeel.setCurrentTheme;
|
||||||
|
import org.openide.util.NbBundle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Edward M. Kagan <pagan@idp-crew.com>
|
||||||
|
*/
|
||||||
|
public class TitanLookAndFeel extends MetalLookAndFeel {
|
||||||
|
|
||||||
|
public static void self_install ()
|
||||||
|
{
|
||||||
|
UIManager.installLookAndFeel(new UIManager.LookAndFeelInfo( NbBundle.getMessage(TitanLookAndFeel.class, "LBL_TITAN"), TitanLookAndFeel.class.getName()) );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getName() {
|
||||||
|
return NbBundle.getMessage(TitanLookAndFeel.class, "LBL_TITAN");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void createDefaultTheme() {
|
||||||
|
super.createDefaultTheme();
|
||||||
|
if( !(getCurrentTheme() instanceof TitanTheme) )
|
||||||
|
setCurrentTheme( new TitanTheme() );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public UIDefaults getDefaults() {
|
||||||
|
UIDefaults defaults = super.getDefaults();
|
||||||
|
return defaults;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void initialize() {
|
||||||
|
super.initialize();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,141 @@
|
|||||||
|
/* Copyright (C) Edward M. Kagan - All Rights Reserved
|
||||||
|
* Unauthorized copying of this file, via any medium is strictly prohibited
|
||||||
|
* Proprietary and confidential
|
||||||
|
* Written by Edward M. Kagan <pagan@idp-crew.com>, 2015
|
||||||
|
*/
|
||||||
|
package org.idp.laf;
|
||||||
|
|
||||||
|
import java.awt.Font;
|
||||||
|
import javax.swing.UIDefaults;
|
||||||
|
import javax.swing.plaf.ColorUIResource;
|
||||||
|
import javax.swing.plaf.FontUIResource;
|
||||||
|
import javax.swing.plaf.metal.MetalTheme;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Edward M. Kagan <pagan@idp-crew.com>
|
||||||
|
*/
|
||||||
|
public class TitanTheme extends MetalTheme {
|
||||||
|
|
||||||
|
private static ColorUIResource primary1 = new ColorUIResource( 255, 0 , 0 );
|
||||||
|
private static ColorUIResource primary2 = new ColorUIResource( 255, 255, 0 );
|
||||||
|
private static ColorUIResource primary3 = new ColorUIResource( 255, 0 , 255 );
|
||||||
|
private static ColorUIResource secondary1 = new ColorUIResource( 0 , 255, 0 );
|
||||||
|
private static ColorUIResource secondary2 = new ColorUIResource( 0 , 255, 255 );
|
||||||
|
private static ColorUIResource secondary3 = new ColorUIResource( 0 , 0 , 255 );
|
||||||
|
private static ColorUIResource black = new ColorUIResource( 255 , 255 , 255 );
|
||||||
|
private static ColorUIResource white = new ColorUIResource( 0 , 0 , 0 );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void addCustomEntriesToTable(UIDefaults table) {
|
||||||
|
super.addCustomEntriesToTable(table); //To change body of generated methods, choose Tools | Templates.
|
||||||
|
table.put( "nb.imageicon.filter", new DarkIconFilter() ); //NOI18N
|
||||||
|
}
|
||||||
|
|
||||||
|
private final static FontUIResource DEFAULT_FONT = new FontUIResource("Dialog", Font.PLAIN, 11); //NOI18N
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public static void self_tuneup (Color[] color_scheme_loaded)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < color_scheme_loaded.length; i ++)
|
||||||
|
{
|
||||||
|
grep_needed (color_scheme_loaded[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void grep_needed (Color c)
|
||||||
|
{
|
||||||
|
if (c.getName().equals("primary1")) primary1 = (ColorUIResource) c.getObject();
|
||||||
|
else if (c.getName().equals("primary2")) primary2 = (ColorUIResource) c.getObject();
|
||||||
|
else if (c.getName().equals("primary3")) primary3 = (ColorUIResource) c.getObject();
|
||||||
|
else if (c.getName().equals("secondary1")) secondary1 = (ColorUIResource) c.getObject();
|
||||||
|
else if (c.getName().equals("secondary2")) secondary2 = (ColorUIResource) c.getObject();
|
||||||
|
else if (c.getName().equals("secondary3")) secondary3 = (ColorUIResource) c.getObject();
|
||||||
|
else if (c.getName().equals("black")) black = (ColorUIResource) c.getObject();
|
||||||
|
else if (c.getName().equals("white")) white = (ColorUIResource) c.getObject();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getName() {
|
||||||
|
return "[idP!] Crew Titan Theme";
|
||||||
|
}
|
||||||
|
|
||||||
|
// FUCKERS - it's not obligatory to override this - IDIOTS!!!
|
||||||
|
@Override
|
||||||
|
protected ColorUIResource getWhite() {
|
||||||
|
return white;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected ColorUIResource getBlack() {
|
||||||
|
return black;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected ColorUIResource getPrimary1() {
|
||||||
|
return primary1;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected ColorUIResource getPrimary2() {
|
||||||
|
return primary2;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected ColorUIResource getPrimary3() {
|
||||||
|
return primary3;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected ColorUIResource getSecondary1() {
|
||||||
|
return secondary1;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected ColorUIResource getSecondary2() {
|
||||||
|
return secondary2;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected ColorUIResource getSecondary3() {
|
||||||
|
return secondary3;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public FontUIResource getControlTextFont() {
|
||||||
|
return DEFAULT_FONT;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public FontUIResource getSystemTextFont() {
|
||||||
|
return DEFAULT_FONT;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public FontUIResource getUserTextFont() {
|
||||||
|
return DEFAULT_FONT;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public FontUIResource getMenuTextFont() {
|
||||||
|
return DEFAULT_FONT;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public FontUIResource getWindowTitleFont() {
|
||||||
|
return DEFAULT_FONT;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public FontUIResource getSubTextFont() {
|
||||||
|
return DEFAULT_FONT;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -1,271 +0,0 @@
|
|||||||
C[activeCaption:SF:16,16,16,255]
|
|
||||||
C[activeCaptionBorder:SF:16,16,16,255]
|
|
||||||
C[activeCaptionText:SF:208,208,208,255]
|
|
||||||
C[Button.background:SF:64,64,64,255]
|
|
||||||
C[Button.darkShadow:SF:102,102,102,255]
|
|
||||||
C[Button.disabledText:SF:176,176,176,255]
|
|
||||||
C[Button.focus:SF:64,64,64,255]
|
|
||||||
C[Button.foreground:SF:208,208,208,255]
|
|
||||||
C[Button.highlight:SF:48,48,48,255]
|
|
||||||
C[Button.light:SF:48,48,48,255]
|
|
||||||
C[Button.select:SF:176,176,176,255]
|
|
||||||
C[Button.shadow:SF:48,48,48,255]
|
|
||||||
C[CheckBox.background:SF:32,32,32,255]
|
|
||||||
C[CheckBox.disabledText:SF:176,176,176,255]
|
|
||||||
C[CheckBox.focus:SF:32,32,32,255]
|
|
||||||
C[CheckBox.foreground:SF:208,208,208,255]
|
|
||||||
C[Checkbox.select:SF:176,176,176,255]
|
|
||||||
C[CheckBoxMenuItem.acceleratorForeground:SF:208,208,208,255]
|
|
||||||
C[CheckBoxMenuItem.acceleratorSelectionForeground:SF:176,176,176,255]
|
|
||||||
C[CheckBoxMenuItem.background:SF:64,64,64,255]
|
|
||||||
C[CheckBoxMenuItem.disabledForeground:SF:176,176,176,255]
|
|
||||||
C[CheckBoxMenuItem.foreground:SF:208,208,208,255]
|
|
||||||
C[CheckBoxMenuItem.selectionBackground:SF:96,96,96,255]
|
|
||||||
C[CheckBoxMenuItem.selectionForeground:SF:176,176,176,255]
|
|
||||||
C[ColorChooser.background:SF:32,32,32,255]
|
|
||||||
C[ColorChooser.foreground:SF:208,208,208,255]
|
|
||||||
C[ColorChooser.swatchesDefaultRecentColor:SF:208,208,208,255]
|
|
||||||
C[ComboBox.background:SF:64,64,64,255]
|
|
||||||
C[ComboBox.buttonBackground:SF:64,64,64,255]
|
|
||||||
C[ComboBox.buttonDarkShadow:SF:102,102,102,255]
|
|
||||||
C[ComboBox.buttonHighlight:SF:255,255,255,255]
|
|
||||||
C[ComboBox.buttonShadow:SF:153,153,153,255]
|
|
||||||
C[ComboBox.disabledBackground:SF:48,48,48,255]
|
|
||||||
C[ComboBox.disabledForeground:SF:176,176,176,255]
|
|
||||||
C[ComboBox.foreground:SF:208,208,208,255]
|
|
||||||
C[ComboBox.selectionBackground:SF:96,96,96,255]
|
|
||||||
C[ComboBox.selectionForeground:SF:176,176,176,255]
|
|
||||||
C[control:SF:32,32,32,255]
|
|
||||||
C[controlDkShadow:SF:32,32,32,255]
|
|
||||||
C[controlHighlight:SF:80,80,80,255]
|
|
||||||
C[controlLtHighlight:SF:32,32,32,255]
|
|
||||||
C[controlShadow:SF:32,32,32,255]
|
|
||||||
C[controlText:SF:208,208,208,255]
|
|
||||||
C[Desktop.background:SF:16,16,16,255]
|
|
||||||
C[desktop:SF:0,255,0,255]
|
|
||||||
C[DesktopIcon.background:SF:0,255,0,255]
|
|
||||||
C[DesktopIcon.foreground:SF:0,255,0,255]
|
|
||||||
C[EditorPane.background:SF:32,32,32,255]
|
|
||||||
C[EditorPane.caretForeground:SF:0,0,0,255]
|
|
||||||
C[EditorPane.foreground:SF:208,208,208,255]
|
|
||||||
C[EditorPane.inactiveForeground:SF:153,153,153,255]
|
|
||||||
C[EditorPane.selectionBackground:SF:64,64,64,255]
|
|
||||||
C[EditorPane.selectionForeground:SF:208,208,208,255]
|
|
||||||
C[FormattedTextField.background:SF:64,64,64,255]
|
|
||||||
C[FormattedTextField.caretForeground:SF:240,240,240,255]
|
|
||||||
C[FormattedTextField.foreground:SF:208,208,208,255]
|
|
||||||
C[FormattedTextField.inactiveBackground:SF:32,32,32,255]
|
|
||||||
C[FormattedTextField.inactiveForeground:SF:160,160,160,255]
|
|
||||||
C[FormattedTextField.selectionBackground:SF:224,224,224,255]
|
|
||||||
C[FormattedTextField.selectionForeground:SF:32,32,32,255]
|
|
||||||
C[inactiveCaption:SF:32,32,32,255]
|
|
||||||
C[inactiveCaptionBorder:SF:32,32,32,255]
|
|
||||||
C[inactiveCaptionText:SF:176,176,176,255]
|
|
||||||
C[info:SF:0,255,0,255]
|
|
||||||
C[infoText:SF:255,0,0,255]
|
|
||||||
C[InternalFrame.activeTitleBackground:SF:204,204,255,255]
|
|
||||||
C[InternalFrame.activeTitleForeground:SF:208,208,208,255]
|
|
||||||
C[InternalFrame.borderColor:SF:32,32,32,255]
|
|
||||||
C[InternalFrame.borderDarkShadow:SF:102,102,102,255]
|
|
||||||
C[InternalFrame.borderHighlight:SF:255,255,255,255]
|
|
||||||
C[InternalFrame.borderLight:SF:255,255,255,255]
|
|
||||||
C[InternalFrame.borderShadow:SF:32,32,32,255]
|
|
||||||
C[InternalFrame.inactiveTitleBackground:SF:255,0,0,255]
|
|
||||||
C[InternalFrame.inactiveTitleForeground:SF:176,176,176,255]
|
|
||||||
C[Label.background:SF:32,32,32,255]
|
|
||||||
C[Label.disabledForeground:SF:176,176,176,255]
|
|
||||||
C[Label.disabledShadow:SF:176,176,176,255]
|
|
||||||
C[Label.foreground:SF:208,208,208,255]
|
|
||||||
C[List.background:SF:16,16,16,255]
|
|
||||||
C[List.dropLineColor:SF:64,64,64,255]
|
|
||||||
C[List.foreground:SF:208,208,208,255]
|
|
||||||
C[List.selectionBackground:SF:64,64,64,255]
|
|
||||||
C[List.selectionForeground:SF:176,176,176,255]
|
|
||||||
C[Menu.acceleratorForeground:SF:208,208,208,255]
|
|
||||||
C[Menu.acceleratorSelectionForeground:SF:176,176,176,255]
|
|
||||||
C[Menu.background:SF:32,32,32,255]
|
|
||||||
C[Menu.disabledForeground:SF:176,176,176,255]
|
|
||||||
C[Menu.foreground:SF:208,208,208,255]
|
|
||||||
C[Menu.selectionBackground:SF:64,64,64,255]
|
|
||||||
C[Menu.selectionForeground:SF:192,192,192,255]
|
|
||||||
C[menu:SF:255,0,255,255]
|
|
||||||
C[MenuBar.background:SF:32,32,32,255]
|
|
||||||
C[MenuBar.foreground:SF:208,208,208,255]
|
|
||||||
C[MenuBar.highlight:SF:64,64,64,255]
|
|
||||||
C[MenuBar.shadow:SF:153,153,153,255]
|
|
||||||
C[MenuItem.acceleratorForeground:SF:208,208,208,255]
|
|
||||||
C[MenuItem.acceleratorSelectionForeground:SF:176,176,176,255]
|
|
||||||
C[MenuItem.background:SF:64,64,64,255]
|
|
||||||
C[MenuItem.disabledForeground:SF:128,128,128,255]
|
|
||||||
C[MenuItem.foreground:SF:208,208,208,255]
|
|
||||||
C[MenuItem.selectionBackground:SF:96,96,96,255]
|
|
||||||
C[MenuItem.selectionForeground:SF:176,176,176,255]
|
|
||||||
C[menuText:SF:0,0,255,255]
|
|
||||||
C[OptionPane.background:SF:32,32,32,255]
|
|
||||||
C[OptionPane.errorDialog.border.background:SF:32,32,32,255]
|
|
||||||
C[OptionPane.errorDialog.titlePane.background:SF:255,153,153,255]
|
|
||||||
C[OptionPane.errorDialog.titlePane.foreground:SF:208,208,208,255]
|
|
||||||
C[OptionPane.errorDialog.titlePane.shadow:SF:204,102,102,255]
|
|
||||||
C[OptionPane.foreground:SF:208,208,208,255]
|
|
||||||
C[OptionPane.messageForeground:SF:208,208,208,255]
|
|
||||||
C[OptionPane.questionDialog.border.background:SF:32,32,32,255]
|
|
||||||
C[OptionPane.questionDialog.titlePane.background:SF:153,204,153,255]
|
|
||||||
C[OptionPane.questionDialog.titlePane.foreground:SF:208,208,208,255]
|
|
||||||
C[OptionPane.questionDialog.titlePane.shadow:SF:102,153,102,255]
|
|
||||||
C[OptionPane.warningDialog.border.background:SF:32,32,32,255]
|
|
||||||
C[OptionPane.warningDialog.titlePane.background:SF:255,204,153,255]
|
|
||||||
C[OptionPane.warningDialog.titlePane.foreground:SF:208,208,208,255]
|
|
||||||
C[OptionPane.warningDialog.titlePane.shadow:SF:204,153,102,255]
|
|
||||||
C[Panel.background:SF:32,32,32,255]
|
|
||||||
C[Panel.foreground:SF:208,208,208,255]
|
|
||||||
C[PasswordField.background:SF:64,64,64,255]
|
|
||||||
C[PasswordField.caretForeground:SF:240,240,240,255]
|
|
||||||
C[PasswordField.foreground:SF:208,208,208,255]
|
|
||||||
C[PasswordField.inactiveBackground:SF:32,32,32,255]
|
|
||||||
C[PasswordField.inactiveForeground:SF:160,160,160,255]
|
|
||||||
C[PasswordField.selectionBackground:SF:224,224,224,255]
|
|
||||||
C[PasswordField.selectionForeground:SF:32,32,32,255]
|
|
||||||
C[PopupMenu.background:SF:64,64,64,255]
|
|
||||||
C[PopupMenu.foreground:SF:208,208,208,255]
|
|
||||||
C[ProgressBar.background:SF:16,16,16,255]
|
|
||||||
C[ProgressBar.foreground:SF:176,176,176,255]
|
|
||||||
C[ProgressBar.selectionBackground:SF:176,176,176,255]
|
|
||||||
C[ProgressBar.selectionForeground:SF:16,16,16,255]
|
|
||||||
C[RadioButton.background:SF:32,32,32,255]
|
|
||||||
C[RadioButton.darkShadow:SF:102,102,102,255]
|
|
||||||
C[RadioButton.disabledText:SF:176,176,176,255]
|
|
||||||
C[RadioButton.focus:SF:32,32,32,255]
|
|
||||||
C[RadioButton.foreground:SF:208,208,208,255]
|
|
||||||
C[RadioButton.highlight:SF:255,255,255,255]
|
|
||||||
C[RadioButton.light:SF:255,255,255,255]
|
|
||||||
C[RadioButton.select:SF:176,176,176,255]
|
|
||||||
C[RadioButton.shadow:SF:153,153,153,255]
|
|
||||||
C[RadioButtonMenuItem.acceleratorForeground:SF:208,208,208,255]
|
|
||||||
C[RadioButtonMenuItem.acceleratorSelectionForeground:SF:176,176,176,255]
|
|
||||||
C[RadioButtonMenuItem.background:SF:64,64,64,255]
|
|
||||||
C[RadioButtonMenuItem.disabledForeground:SF:128,128,128,255]
|
|
||||||
C[RadioButtonMenuItem.foreground:SF:208,208,208,255]
|
|
||||||
C[RadioButtonMenuItem.selectionBackground:SF:96,96,96,255]
|
|
||||||
C[RadioButtonMenuItem.selectionForeground:SF:176,176,176,255]
|
|
||||||
C[ScrollBar.background:SF:32,32,32,255]
|
|
||||||
C[ScrollBar.darkShadow:SF:102,102,102,255]
|
|
||||||
C[ScrollBar.foreground:SF:32,32,32,255]
|
|
||||||
C[ScrollBar.highlight:SF:255,255,255,255]
|
|
||||||
C[ScrollBar.shadow:SF:153,153,153,255]
|
|
||||||
C[ScrollBar.thumb:SF:64,64,64,255]
|
|
||||||
C[ScrollBar.thumbDarkShadow:SF:102,102,102,255]
|
|
||||||
C[ScrollBar.thumbHighlight:SF:64,64,64,255]
|
|
||||||
C[ScrollBar.thumbShadow:SF:96,96,96,255]
|
|
||||||
C[ScrollBar.track:SF:32,32,32,255]
|
|
||||||
C[ScrollBar.trackHighlight:SF:102,102,102,255]
|
|
||||||
C[scrollbar:SF:0,0,255,255]
|
|
||||||
C[ScrollPane.background:SF:32,32,32,255]
|
|
||||||
C[ScrollPane.foreground:SF:208,208,208,255]
|
|
||||||
C[Separator.background:SF:48,48,48,255]
|
|
||||||
C[Separator.foreground:SF:48,48,48,255]
|
|
||||||
C[Separator.highlight:SF:48,48,48,255]
|
|
||||||
C[Separator.shadow:SF:48,48,48,255]
|
|
||||||
C[Slider.background:SF:64,64,64,255]
|
|
||||||
C[Slider.focus:SF:96,96,96,255]
|
|
||||||
C[Slider.foreground:SF:80,80,80,255]
|
|
||||||
C[Slider.highlight:SF:255,255,255,255]
|
|
||||||
C[Slider.shadow:SF:153,153,153,255]
|
|
||||||
C[Slider.tickColor:AT:0,0,0,255]
|
|
||||||
C[Spinner.background:SF:64,64,64,255]
|
|
||||||
C[Spinner.foreground:SF:64,64,64,255]
|
|
||||||
C[SplitPane.background:SF:32,32,32,255]
|
|
||||||
C[SplitPane.darkShadow:SF:64,64,64,255]
|
|
||||||
C[SplitPane.dividerFocusColor:SF:64,64,64,255]
|
|
||||||
C[SplitPane.highlight:SF:64,64,64,255]
|
|
||||||
C[SplitPane.shadow:SF:64,64,64,255]
|
|
||||||
C[SplitPaneDivider.draggingColor:SF:32,32,32,255]
|
|
||||||
C[TabbedPane.background:SF:64,64,64,255]
|
|
||||||
C[TabbedPane.darkShadow:SF:102,102,102,255]
|
|
||||||
C[TabbedPane.focus:SF:32,32,32,255]
|
|
||||||
C[TabbedPane.foreground:SF:208,208,208,255]
|
|
||||||
C[TabbedPane.highlight:SF:255,255,255,255]
|
|
||||||
C[TabbedPane.light:SF:32,32,32,255]
|
|
||||||
C[TabbedPane.selected:SF:32,32,32,255]
|
|
||||||
C[TabbedPane.selectHighlight:SF:255,255,255,255]
|
|
||||||
C[TabbedPane.shadow:SF:153,153,153,255]
|
|
||||||
C[TabbedPane.tabAreaBackground:SF:32,32,32,255]
|
|
||||||
C[Table.background:SF:16,16,16,255]
|
|
||||||
C[Table.dropLineColor:SF:102,102,255,255]
|
|
||||||
C[Table.dropLineShortColor:SF:192,192,192,255]
|
|
||||||
C[Table.focusCellBackground:SF:64,64,64,255]
|
|
||||||
C[Table.focusCellForeground:SF:176,176,176,255]
|
|
||||||
C[Table.foreground:SF:208,208,208,255]
|
|
||||||
C[Table.gridColor:SF:80,80,80,255]
|
|
||||||
C[Table.selectionBackground:SF:64,64,64,255]
|
|
||||||
C[Table.selectionForeground:SF:208,208,208,255]
|
|
||||||
C[Table.sortIconColor:SF:153,153,153,255]
|
|
||||||
C[TableHeader.background:SF:64,64,64,255]
|
|
||||||
C[TableHeader.focusCellBackground:SF:128,128,128,255]
|
|
||||||
C[TableHeader.foreground:SF:208,208,208,255]
|
|
||||||
C[text:SF:255,255,0,255]
|
|
||||||
C[TextArea.background:SF:16,16,16,255]
|
|
||||||
C[TextArea.caretForeground:SF:208,208,208,255]
|
|
||||||
C[TextArea.foreground:SF:208,208,208,255]
|
|
||||||
C[TextArea.inactiveForeground:SF:160,160,160,255]
|
|
||||||
C[TextArea.selectionBackground:SF:224,224,224,255]
|
|
||||||
C[TextArea.selectionForeground:SF:32,32,32,255]
|
|
||||||
C[TextField.background:SF:64,64,64,255]
|
|
||||||
C[TextField.caretForeground:SF:240,240,240,255]
|
|
||||||
C[TextField.darkShadow:SF:102,102,102,255]
|
|
||||||
C[TextField.foreground:SF:208,208,208,255]
|
|
||||||
C[TextField.highlight:SF:255,255,255,255]
|
|
||||||
C[TextField.inactiveBackground:SF:48,48,48,255]
|
|
||||||
C[TextField.inactiveForeground:SF:176,176,176,255]
|
|
||||||
C[TextField.light:SF:255,255,255,255]
|
|
||||||
C[TextField.selectionBackground:SF:176,176,176,255]
|
|
||||||
C[TextField.selectionForeground:SF:16,16,16,255]
|
|
||||||
C[TextField.shadow:SF:153,153,153,255]
|
|
||||||
C[textHighlight:SF:153,0,153,255]
|
|
||||||
C[textHighlightText:SF:255,0,0,255]
|
|
||||||
C[textInactiveText:AT:128,128,128,255]
|
|
||||||
C[TextPane.background:SF:16,16,16,255]
|
|
||||||
C[TextPane.caretForeground:SF:0,0,0,255]
|
|
||||||
C[TextPane.foreground:SF:208,208,208,255]
|
|
||||||
C[TextPane.inactiveForeground:SF:153,153,153,255]
|
|
||||||
C[TextPane.selectionBackground:SF:224,224,224,255]
|
|
||||||
C[TextPane.selectionForeground:SF:32,32,32,255]
|
|
||||||
C[textText:SF:208,208,208,255]
|
|
||||||
C[TitledBorder.titleColor:SF:208,208,208,255]
|
|
||||||
C[ToggleButton.background:SF:64,64,64,255]
|
|
||||||
C[ToggleButton.darkShadow:SF:102,102,102,255]
|
|
||||||
C[ToggleButton.disabledText:SF:153,153,153,255]
|
|
||||||
C[ToggleButton.focus:SF:153,153,153,255]
|
|
||||||
C[ToggleButton.foreground:SF:208,208,208,255]
|
|
||||||
C[ToggleButton.highlight:SF:255,255,255,255]
|
|
||||||
C[ToggleButton.light:SF:255,255,255,255]
|
|
||||||
C[ToggleButton.select:SF:128,128,128,255]
|
|
||||||
C[ToggleButton.shadow:SF:153,153,153,255]
|
|
||||||
C[ToolBar.background:SF:32,32,32,255]
|
|
||||||
C[ToolBar.darkShadow:SF:64,64,64,255]
|
|
||||||
C[ToolBar.dockingBackground:SF:32,32,32,255]
|
|
||||||
C[ToolBar.dockingForeground:SF:64,64,64,255]
|
|
||||||
C[ToolBar.floatingBackground:SF:32,32,32,255]
|
|
||||||
C[ToolBar.floatingForeground:SF:64,64,64,255]
|
|
||||||
C[ToolBar.foreground:SF:208,208,208,255]
|
|
||||||
C[ToolBar.highlight:SF:255,255,255,255]
|
|
||||||
C[ToolBar.light:SF:255,255,255,255]
|
|
||||||
C[ToolBar.shadow:SF:153,153,153,255]
|
|
||||||
C[ToolTip.background:SF:208,208,208,255]
|
|
||||||
C[ToolTip.backgroundInactive:SF:32,32,32,255]
|
|
||||||
C[ToolTip.foreground:SF:32,32,32,255]
|
|
||||||
C[ToolTip.foregroundInactive:SF:102,102,102,255]
|
|
||||||
C[Tree.background:SF:16,16,16,255]
|
|
||||||
C[Tree.dropLineColor:SF:153,153,153,255]
|
|
||||||
C[Tree.foreground:SF:176,176,176,255]
|
|
||||||
C[Tree.hash:SF:176,176,176,255]
|
|
||||||
C[Tree.line:SF:204,204,204,255]
|
|
||||||
C[Tree.selectionBackground:SF:64,64,64,255]
|
|
||||||
C[Tree.selectionBorderColor:SF:96,96,96,255]
|
|
||||||
C[Tree.selectionForeground:SF:0,0,0,255]
|
|
||||||
C[Tree.textBackground:SF:255,255,255,255]
|
|
||||||
C[Tree.textForeground:SF:208,208,208,255]
|
|
||||||
C[Viewport.background:SF:16,16,16,255]
|
|
||||||
C[Viewport.foreground:SF:208,208,208,255]
|
|
||||||
C[window:SF:16,16,16,255]
|
|
||||||
C[windowBorder:SF:16,16,16,255]
|
|
||||||
C[windowText:SF:208,208,208,255]
|
|
||||||
@ -1,40 +0,0 @@
|
|||||||
F[List.font:FA:Dialog,Dialog,11,0]
|
|
||||||
F[TableHeader.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[Panel.font:FA:Dialog,Dialog,11,0]
|
|
||||||
F[TextArea.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[ToggleButton.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[ComboBox.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[ScrollPane.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[Spinner.font:FA:Dialog,Dialog,11,0]
|
|
||||||
F[RadioButtonMenuItem.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[Slider.font:FS:Dialog,Dialog,12,1]
|
|
||||||
F[EditorPane.font:FS:Serif,Serif,11,0]
|
|
||||||
F[OptionPane.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[ToolBar.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[Tree.font:FA:Dialog,Dialog,11,0]
|
|
||||||
F[CheckBoxMenuItem.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[TitledBorder.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[Table.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[MenuBar.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[PopupMenu.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[DesktopIcon.font:FS:Dialog,Dialog,12,1]
|
|
||||||
F[Label.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[MenuItem.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[MenuItem.acceleratorFont:FS:Dialog,Dialog,11,0]
|
|
||||||
F[TextField.font:FS:SansSerif,SansSerif,11,0]
|
|
||||||
F[TextPane.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[CheckBox.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[ProgressBar.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[FormattedTextField.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[CheckBoxMenuItem.acceleratorFont:FS:Dialog,Dialog,10,0]
|
|
||||||
F[Menu.acceleratorFont:FS:Dialog,Dialog,10,0]
|
|
||||||
F[ColorChooser.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[Menu.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[PasswordField.font:FS:Monospaced,Monospaced,11,0]
|
|
||||||
F[InternalFrame.titleFont:FS:Dialog,Dialog,11,1]
|
|
||||||
F[RadioButtonMenuItem.acceleratorFont:FS:Dialog,Dialog,10,0]
|
|
||||||
F[Viewport.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[TabbedPane.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[RadioButton.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[ToolTip.font:FS:SansSerif,SansSerif,11,0]
|
|
||||||
F[Button.font:FS:Dialog,Dialog,11,0]
|
|
||||||
@ -1,293 +0,0 @@
|
|||||||
C[DesktopIcon.foreground:SF:222,222,222,255]
|
|
||||||
C[OptionPane.errorDialog.titlePane.foreground:SF:51,0,0,255]
|
|
||||||
C[TextArea.background:SF:18,30,49,255]
|
|
||||||
C[activeCaption:SF:99,99,99,255]
|
|
||||||
C[PasswordField.inactiveForeground:SF:91,91,95,255]
|
|
||||||
C[TabbedPane.focus:SF:121,121,125,255]
|
|
||||||
C[RadioButton.disabledText:SF:91,91,95,255]
|
|
||||||
C[MenuItem.acceleratorForeground:AT:198,198,198,255]
|
|
||||||
C[EditorPane.caretForeground:SF:222,222,222,255]
|
|
||||||
C[Table.background:SF:18,30,49,255]
|
|
||||||
C[Menu.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[OptionPane.errorDialog.border.background:SF:153,51,51,255]
|
|
||||||
C[ToolBar.floatingBackground:SF:51,51,55,255]
|
|
||||||
C[RadioButtonMenuItem.selectionBackground:SF:71,71,75,255]
|
|
||||||
C[DesktopIcon.background:SF:51,51,55,255]
|
|
||||||
C[CheckBoxMenuItem.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[List.dropLineColor:SF:91,91,95,255]
|
|
||||||
C[PropSheet.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[InternalFrame.borderColor:SF:51,51,55,255]
|
|
||||||
C[CheckBox.foreground:SF:222,222,222,255]
|
|
||||||
C[ProgressBar.foreground:SF:71,71,75,255]
|
|
||||||
C[ComboBox.disabledForeground:SF:91,91,95,255]
|
|
||||||
C[textInactiveText:AT:128,128,128,255]
|
|
||||||
C[OptionPane.warningDialog.titlePane.foreground:SF:102,51,0,255]
|
|
||||||
C[Slider.highlight:SF:18,30,49,255]
|
|
||||||
C[FormattedTextField.caretForeground:SF:222,222,222,255]
|
|
||||||
C[PropSheet.selectedSetForeground:SF:222,222,222,255]
|
|
||||||
C[Menu.selectionBackground:SF:71,71,75,255]
|
|
||||||
C[TextField.caretForeground:SF:222,222,222,255]
|
|
||||||
C[OptionPane.messageForeground:SF:222,222,222,255]
|
|
||||||
C[RadioButton.highlight:SF:18,30,49,255]
|
|
||||||
C[ToolBar.shadow:SF:91,91,95,255]
|
|
||||||
C[CheckBoxMenuItem.selectionBackground:SF:71,71,75,255]
|
|
||||||
C[Menu.acceleratorForeground:SF:121,121,125,255]
|
|
||||||
C[Label.foreground:SF:222,222,222,255]
|
|
||||||
C[text:SF:18,30,49,255]
|
|
||||||
C[PropSheet.selectionBackground:SF:99,99,99,255]
|
|
||||||
C[nb.heapview.grid3.end:AT:105,103,95,255]
|
|
||||||
C[ComboBox.disabledBackground:SF:51,51,55,255]
|
|
||||||
C[Button.focus:SF:71,71,75,255]
|
|
||||||
C[inactiveCaptionText:SF:222,222,222,255]
|
|
||||||
C[MenuBar.background:SF:51,51,55,255]
|
|
||||||
C[PasswordField.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[CheckBoxMenuItem.acceleratorSelectionForeground:SF:222,222,222,255]
|
|
||||||
C[controlShadow:SF:91,91,95,255]
|
|
||||||
C[menu:SF:51,51,55,255]
|
|
||||||
C[inactiveCaptionBorder:SF:91,91,95,255]
|
|
||||||
C[PasswordField.foreground:SF:222,222,222,255]
|
|
||||||
C[TextPane.foreground:SF:222,222,222,255]
|
|
||||||
C[TabbedPane.tabAreaBackground:SF:51,51,55,255]
|
|
||||||
C[Viewport.foreground:SF:222,222,222,255]
|
|
||||||
C[TabbedPane.foreground:SF:222,222,222,255]
|
|
||||||
C[ToggleButton.focus:SF:71,71,75,255]
|
|
||||||
C[RadioButton.foreground:SF:222,222,222,255]
|
|
||||||
C[infoText:SF:222,222,222,255]
|
|
||||||
C[TabbedPane.selected:SF:51,51,55,255]
|
|
||||||
C[MenuBar.highlight:SF:18,30,49,255]
|
|
||||||
C[ScrollBar.highlight:SF:18,30,49,255]
|
|
||||||
C[InternalFrame.inactiveTitleBackground:SF:51,51,55,255]
|
|
||||||
C[ScrollBar.thumbDarkShadow:SF:113,113,113,255]
|
|
||||||
C[ToolBar.light:SF:18,30,49,255]
|
|
||||||
C[EditorPane.inactiveForeground:SF:91,91,95,255]
|
|
||||||
C[OptionPane.errorDialog.titlePane.background:SF:255,153,153,255]
|
|
||||||
C[PasswordField.background:SF:18,30,49,255]
|
|
||||||
C[TextPane.background:SF:18,30,49,255]
|
|
||||||
C[RadioButton.select:SF:91,91,95,255]
|
|
||||||
C[PasswordField.inactiveBackground:SF:51,51,55,255]
|
|
||||||
C[MenuItem.foreground:SF:222,222,222,255]
|
|
||||||
C[TableHeader.focusCellBackground:SF:18,30,49,255]
|
|
||||||
C[RadioButton.background:SF:51,51,55,255]
|
|
||||||
C[inactiveCaption:SF:51,51,55,255]
|
|
||||||
C[ScrollBar.trackHighlight:SF:113,113,113,255]
|
|
||||||
C[OptionPane.questionDialog.titlePane.foreground:SF:0,51,0,255]
|
|
||||||
C[Tree.textForeground:SF:222,222,222,255]
|
|
||||||
C[TableHeader.foreground:SF:222,222,222,255]
|
|
||||||
C[CheckBox.background:SF:51,51,55,255]
|
|
||||||
C[ProgressBar.background:SF:51,51,55,255]
|
|
||||||
C[Label.disabledForeground:SF:91,91,95,255]
|
|
||||||
C[OptionPane.warningDialog.titlePane.background:SF:255,204,153,255]
|
|
||||||
C[ToggleButton.highlight:SF:18,30,49,255]
|
|
||||||
C[nb.errorForeground:AT:255,71,71,255]
|
|
||||||
C[PropSheet.selectedSetBackground:AT:121,121,125,255]
|
|
||||||
C[ScrollPane.foreground:SF:222,222,222,255]
|
|
||||||
C[TextArea.caretForeground:SF:222,222,222,255]
|
|
||||||
C[Label.background:SF:51,51,55,255]
|
|
||||||
C[Spinner.foreground:SF:51,51,55,255]
|
|
||||||
C[Slider.tickColor:AT:0,0,0,255]
|
|
||||||
C[Tree.textBackground:SF:18,30,49,255]
|
|
||||||
C[nb.heapview.grid1.start:AT:97,95,87,255]
|
|
||||||
C[InternalFrame.borderLight:SF:18,30,49,255]
|
|
||||||
C[textHighlightText:SF:222,222,222,255]
|
|
||||||
C[nb.heapview.grid4.start:AT:107,105,97,255]
|
|
||||||
C[Separator.shadow:SF:91,91,95,255]
|
|
||||||
C[CheckBoxMenuItem.disabledForeground:SF:91,91,95,255]
|
|
||||||
C[controlText:SF:222,222,222,255]
|
|
||||||
C[InternalFrame.borderDarkShadow:SF:113,113,113,255]
|
|
||||||
C[TextField.shadow:SF:91,91,95,255]
|
|
||||||
C[PasswordField.selectionBackground:SF:99,99,99,255]
|
|
||||||
C[Spinner.background:SF:51,51,55,255]
|
|
||||||
C[TabbedPane.shadow:SF:91,91,95,255]
|
|
||||||
C[desktop:SF:71,71,75,255]
|
|
||||||
C[Tree.dropLineColor:SF:91,91,95,255]
|
|
||||||
C[OptionPane.questionDialog.titlePane.shadow:SF:102,153,102,255]
|
|
||||||
C[TabbedPane.darkShadow:SF:113,113,113,255]
|
|
||||||
C[Viewport.background:SF:51,51,55,255]
|
|
||||||
C[CheckBox.disabledText:SF:91,91,95,255]
|
|
||||||
C[ComboBox.foreground:SF:222,222,222,255]
|
|
||||||
C[RadioButton.darkShadow:SF:113,113,113,255]
|
|
||||||
C[TabbedPane.background:SF:91,91,95,255]
|
|
||||||
C[OptionPane.warningDialog.titlePane.shadow:SF:204,153,102,255]
|
|
||||||
C[activeCaptionBorder:SF:71,71,75,255]
|
|
||||||
C[InternalFrame.borderShadow:SF:91,91,95,255]
|
|
||||||
C[MenuItem.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[TextArea.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[MenuItem.background:SF:51,51,55,255]
|
|
||||||
C[ComboBox.buttonShadow:SF:91,91,95,255]
|
|
||||||
C[ScrollBar.track:SF:51,51,55,255]
|
|
||||||
C[ScrollBar.thumb:SF:71,71,75,255]
|
|
||||||
C[MenuItem.acceleratorSelectionForeground:SF:222,222,222,255]
|
|
||||||
C[Table.dropLineColor:SF:71,71,75,255]
|
|
||||||
C[control:SF:51,51,55,255]
|
|
||||||
C[OptionPane.questionDialog.titlePane.background:SF:153,204,153,255]
|
|
||||||
C[Panel.foreground:SF:222,222,222,255]
|
|
||||||
C[TabbedPane.light:SF:51,51,55,255]
|
|
||||||
C[MenuItem.selectionBackground:SF:71,71,75,255]
|
|
||||||
C[Label.disabledShadow:SF:91,91,95,255]
|
|
||||||
C[ToolTip.foreground:SF:222,222,222,255]
|
|
||||||
C[TableHeader.background:SF:51,51,55,255]
|
|
||||||
C[EditorPane.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[List.foreground:SF:222,222,222,255]
|
|
||||||
C[OptionPane.warningDialog.border.background:SF:153,102,51,255]
|
|
||||||
C[Desktop.background:SF:71,71,75,255]
|
|
||||||
C[ScrollPane.background:SF:51,51,55,255]
|
|
||||||
C[activeCaptionText:SF:222,222,222,255]
|
|
||||||
C[SplitPane.dividerFocusColor:SF:99,99,99,255]
|
|
||||||
C[Tree.foreground:SF:222,222,222,255]
|
|
||||||
C[SplitPane.highlight:SF:18,30,49,255]
|
|
||||||
C[TextField.foreground:SF:222,222,222,255]
|
|
||||||
C[nb.heapview.grid2.end:AT:101,99,92,255]
|
|
||||||
C[ScrollBar.thumbShadow:SF:121,121,125,255]
|
|
||||||
C[TextArea.inactiveForeground:SF:91,91,95,255]
|
|
||||||
C[ToolTip.foregroundInactive:SF:113,113,113,255]
|
|
||||||
C[Tree.hash:SF:99,99,99,255]
|
|
||||||
C[FormattedTextField.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[textText:SF:222,222,222,255]
|
|
||||||
C[RadioButton.focus:SF:71,71,75,255]
|
|
||||||
C[ToggleButton.disabledText:SF:91,91,95,255]
|
|
||||||
C[Tree.background:SF:18,30,49,255]
|
|
||||||
C[RadioButtonMenuItem.disabledForeground:SF:91,91,95,255]
|
|
||||||
C[TextField.background:SF:18,30,49,255]
|
|
||||||
C[ColorChooser.foreground:SF:222,222,222,255]
|
|
||||||
C[Button.light:SF:18,30,49,255]
|
|
||||||
C[ColorChooser.swatchesDefaultRecentColor:SF:51,51,55,255]
|
|
||||||
C[ComboBox.background:SF:51,51,55,255]
|
|
||||||
C[Button.shadow:SF:91,91,95,255]
|
|
||||||
C[Button.foreground:SF:222,222,222,255]
|
|
||||||
C[Table.focusCellForeground:SF:222,222,222,255]
|
|
||||||
C[Table.gridColor:SF:91,91,95,255]
|
|
||||||
C[PasswordField.caretForeground:SF:222,222,222,255]
|
|
||||||
C[TextPane.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[menuText:SF:222,222,222,255]
|
|
||||||
C[SplitPaneDivider.draggingColor:SF:64,64,64,255]
|
|
||||||
C[InternalFrame.borderHighlight:SF:18,30,49,255]
|
|
||||||
C[TextArea.selectionBackground:SF:99,99,99,255]
|
|
||||||
C[ToggleButton.light:SF:18,30,49,255]
|
|
||||||
C[controlDkShadow:SF:113,113,113,255]
|
|
||||||
C[TextField.light:SF:18,30,49,255]
|
|
||||||
C[Button.background:SF:123,51,55,255]
|
|
||||||
C[TextField.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[Separator.foreground:SF:121,121,125,255]
|
|
||||||
C[ToolBar.dockingForeground:SF:121,121,125,255]
|
|
||||||
C[TextPane.selectionBackground:SF:99,99,99,255]
|
|
||||||
C[Panel.background:SF:51,51,55,255]
|
|
||||||
C[ToolTip.background:SF:99,99,99,255]
|
|
||||||
C[EditorPane.selectionBackground:SF:99,99,99,255]
|
|
||||||
C[List.background:SF:18,30,49,255]
|
|
||||||
C[TextPane.inactiveForeground:SF:91,91,95,255]
|
|
||||||
C[SplitPane.shadow:SF:91,91,95,255]
|
|
||||||
C[TextField.selectionBackground:SF:99,99,99,255]
|
|
||||||
C[Menu.disabledForeground:SF:91,91,95,255]
|
|
||||||
C[ToolBar.dockingBackground:SF:51,51,55,255]
|
|
||||||
C[List.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[TextField.inactiveForeground:SF:91,91,95,255]
|
|
||||||
C[window:SF:18,30,49,255]
|
|
||||||
C[TextField.darkShadow:SF:113,113,113,255]
|
|
||||||
C[OptionPane.errorDialog.titlePane.shadow:SF:204,102,102,255]
|
|
||||||
C[RadioButtonMenuItem.acceleratorSelectionForeground:SF:222,222,222,255]
|
|
||||||
C[ComboBox.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[FormattedTextField.selectionBackground:SF:99,99,99,255]
|
|
||||||
C[Tree.selectionBorderColor:SF:71,71,75,255]
|
|
||||||
C[Tree.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[Slider.foreground:SF:71,71,75,255]
|
|
||||||
C[TabbedPane.selectHighlight:SF:18,30,49,255]
|
|
||||||
C[ScrollBar.thumbHighlight:SF:99,99,99,255]
|
|
||||||
C[nb.heapview.grid3.start:AT:102,101,93,255]
|
|
||||||
C[nb.heapview.background2:SF:71,71,75,255]
|
|
||||||
C[nb.heapview.background1:SF:121,121,125,255]
|
|
||||||
C[TextField.highlight:SF:18,30,49,255]
|
|
||||||
C[TextField.inactiveBackground:SF:51,51,55,255]
|
|
||||||
C[MenuBar.shadow:SF:91,91,95,255]
|
|
||||||
C[TextPane.caretForeground:SF:222,222,222,255]
|
|
||||||
C[Table.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[ColorChooser.background:SF:51,51,55,255]
|
|
||||||
C[ToggleButton.shadow:SF:91,91,95,255]
|
|
||||||
C[Button.darkShadow:SF:113,113,113,255]
|
|
||||||
C[ComboBox.buttonDarkShadow:SF:113,113,113,255]
|
|
||||||
C[Table.focusCellBackground:SF:18,30,49,255]
|
|
||||||
C[ComboBox.buttonBackground:SF:51,51,55,255]
|
|
||||||
C[ToggleButton.foreground:SF:222,222,222,255]
|
|
||||||
C[Tree.line:SF:99,99,99,255]
|
|
||||||
C[windowText:SF:222,222,222,255]
|
|
||||||
C[FormattedTextField.inactiveForeground:SF:91,91,95,255]
|
|
||||||
C[scrollbar:SF:51,51,55,255]
|
|
||||||
C[controlLtHighlight:SF:18,30,49,255]
|
|
||||||
C[SplitPane.darkShadow:SF:113,113,113,255]
|
|
||||||
C[Button.select:SF:91,91,95,255]
|
|
||||||
C[nb.heapview.grid4.end:AT:109,107,99,255]
|
|
||||||
C[ScrollBar.shadow:SF:91,91,95,255]
|
|
||||||
C[SplitPane.background:SF:51,51,55,255]
|
|
||||||
C[controlHighlight:SF:18,30,49,255]
|
|
||||||
C[Separator.background:SF:18,30,49,255]
|
|
||||||
C[CheckBoxMenuItem.foreground:SF:222,222,222,255]
|
|
||||||
C[nb.heapview.border3:SF:18,30,49,255]
|
|
||||||
C[nb.heapview.border2:SF:91,91,95,255]
|
|
||||||
C[nb.heapview.border1:SF:113,113,113,255]
|
|
||||||
C[FormattedTextField.inactiveBackground:SF:51,51,55,255]
|
|
||||||
C[FormattedTextField.foreground:SF:222,222,222,255]
|
|
||||||
C[textHighlight:SF:99,99,99,255]
|
|
||||||
C[Button.highlight:SF:18,30,49,255]
|
|
||||||
C[PropSheet.setForeground:SF:222,222,222,255]
|
|
||||||
C[Table.sortIconColor:SF:91,91,95,255]
|
|
||||||
C[CheckBoxMenuItem.background:SF:51,51,55,255]
|
|
||||||
C[List.selectionBackground:SF:99,99,99,255]
|
|
||||||
C[TitledBorder.titleColor:SF:222,222,222,255]
|
|
||||||
C[ProgressBar.selectionForeground:SF:51,51,55,255]
|
|
||||||
C[Table.dropLineShortColor:SF:121,121,125,255]
|
|
||||||
C[EditorPane.foreground:SF:222,222,222,255]
|
|
||||||
C[MenuItem.disabledForeground:SF:91,91,95,255]
|
|
||||||
C[CheckBox.focus:SF:71,71,75,255]
|
|
||||||
C[Slider.focus:SF:71,71,75,255]
|
|
||||||
C[nb.heapview.foreground:SF:222,222,222,255]
|
|
||||||
C[ComboBox.selectionBackground:SF:71,71,75,255]
|
|
||||||
C[InternalFrame.activeTitleForeground:SF:222,222,222,255]
|
|
||||||
C[Tree.selectionBackground:SF:99,99,99,255]
|
|
||||||
C[Slider.background:SF:51,51,55,255]
|
|
||||||
C[TextArea.foreground:SF:222,222,222,255]
|
|
||||||
C[nb.heapview.grid1.end:AT:98,96,88,255]
|
|
||||||
C[nb.warningForeground:AT:255,216,0,255]
|
|
||||||
C[ComboBox.buttonHighlight:SF:18,30,49,255]
|
|
||||||
C[Separator.highlight:SF:18,30,49,255]
|
|
||||||
C[PopupMenu.foreground:SF:222,222,222,255]
|
|
||||||
C[ProgressBar.selectionBackground:SF:121,121,125,255]
|
|
||||||
C[ScrollBar.foreground:SF:51,51,55,255]
|
|
||||||
C[OptionPane.foreground:SF:222,222,222,255]
|
|
||||||
C[Table.selectionBackground:SF:99,99,99,255]
|
|
||||||
C[info:SF:99,99,99,255]
|
|
||||||
C[InternalFrame.activeTitleBackground:SF:99,99,99,255]
|
|
||||||
C[RadioButton.light:SF:18,30,49,255]
|
|
||||||
C[ToolBar.floatingForeground:SF:99,99,99,255]
|
|
||||||
C[RadioButtonMenuItem.selectionForeground:SF:222,222,222,255]
|
|
||||||
C[ToggleButton.darkShadow:SF:113,113,113,255]
|
|
||||||
C[windowBorder:SF:51,51,55,255]
|
|
||||||
C[ToggleButton.background:SF:51,51,55,255]
|
|
||||||
C[TabbedPane.highlight:SF:18,30,49,255]
|
|
||||||
C[ScrollBar.darkShadow:SF:113,113,113,255]
|
|
||||||
C[PopupMenu.background:SF:51,51,55,255]
|
|
||||||
C[ScrollBar.background:SF:51,51,55,255]
|
|
||||||
C[Menu.acceleratorSelectionForeground:SF:222,222,222,255]
|
|
||||||
C[OptionPane.background:SF:51,51,55,255]
|
|
||||||
C[Checkbox.select:SF:91,91,95,255]
|
|
||||||
C[Menu.foreground:SF:222,222,222,255]
|
|
||||||
C[nb.heapview.grid2.start:AT:99,97,90,255]
|
|
||||||
C[RadioButtonMenuItem.acceleratorForeground:AT:198,198,198,255]
|
|
||||||
C[ToolBar.foreground:SF:222,222,222,255]
|
|
||||||
C[ToolTip.backgroundInactive:SF:51,51,55,255]
|
|
||||||
C[RadioButtonMenuItem.foreground:SF:222,222,222,255]
|
|
||||||
C[ToggleButton.select:SF:91,91,95,255]
|
|
||||||
C[Slider.shadow:SF:91,91,95,255]
|
|
||||||
C[Button.disabledText:SF:91,91,95,255]
|
|
||||||
C[OptionPane.questionDialog.border.background:SF:51,102,51,255]
|
|
||||||
C[FormattedTextField.background:SF:18,30,49,255]
|
|
||||||
C[Menu.background:SF:51,51,55,255]
|
|
||||||
C[ToolBar.darkShadow:SF:113,113,113,255]
|
|
||||||
C[ToolBar.background:SF:51,51,55,255]
|
|
||||||
C[RadioButtonMenuItem.background:SF:51,51,55,255]
|
|
||||||
C[CheckBoxMenuItem.acceleratorForeground:AT:198,198,198,255]
|
|
||||||
C[MenuBar.foreground:SF:222,222,222,255]
|
|
||||||
C[ToolBar.highlight:SF:18,30,49,255]
|
|
||||||
C[PropSheet.setBackground:AT:71,71,75,255]
|
|
||||||
C[RadioButton.shadow:SF:91,91,95,255]
|
|
||||||
C[EditorPane.background:SF:18,30,49,255]
|
|
||||||
C[Table.foreground:SF:222,222,222,255]
|
|
||||||
C[InternalFrame.inactiveTitleForeground:SF:222,222,222,255]
|
|
||||||
@ -1,40 +0,0 @@
|
|||||||
F[List.font:FA:Dialog,Dialog,11,0]
|
|
||||||
F[TableHeader.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[Panel.font:FA:Dialog,Dialog,11,0]
|
|
||||||
F[TextArea.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[ToggleButton.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[ComboBox.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[ScrollPane.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[Spinner.font:FA:Dialog,Dialog,11,0]
|
|
||||||
F[RadioButtonMenuItem.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[Slider.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[EditorPane.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[OptionPane.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[ToolBar.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[Tree.font:FA:Dialog,Dialog,11,0]
|
|
||||||
F[CheckBoxMenuItem.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[TitledBorder.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[Table.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[MenuBar.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[PopupMenu.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[DesktopIcon.font:FS:Dialog,Dialog,11,0]
|
|
||||||
F[Label.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[MenuItem.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[MenuItem.acceleratorFont:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[TextField.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[TextPane.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[CheckBox.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[ProgressBar.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[FormattedTextField.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[CheckBoxMenuItem.acceleratorFont:FS:Dialog,Dialog,11,0]
|
|
||||||
F[Menu.acceleratorFont:FS:Dialog,Dialog,11,0]
|
|
||||||
F[ColorChooser.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[Menu.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[PasswordField.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[InternalFrame.titleFont:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[RadioButtonMenuItem.acceleratorFont:FS:Dialog,Dialog,11,0]
|
|
||||||
F[Viewport.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[TabbedPane.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[RadioButton.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[ToolTip.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
F[Button.font:FS:Dialog,Dialog.plain,11,0]
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue