Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

1


scrollbar
<p><br /></p>



What

ColorSchemes.xml and CustomColors.xml

Config group

SystemConfigFiles

Required

no

Description

Defines one or more custom color schemes

schema location

http

https://

fews

fewsdocs.

wldelft

deltares.nl/schemas/version1.0/colorSchemes.xsd

http

https://

fews

fewsdocs.

wldelft

deltares.nl/schemas/version1.0/customColors.xsd

Table of Contents

General

ColorSchemes

Default CustomColors

Examples

FEWS defaults

The below list describes (from JAVA code) the defaults in FEWS and also which color key is used per control.

Since Delft-FEWS 2014.01 it is possible to have fully configurable color schemes, completely independent of the Windows themes and the operating system. This feature has been developed for low light environment purpose. If not defined, all default colors will be used in the normal (Windows) layout. If used, the color schemes will be used in combination with the Windows classic layout as the modern layout cannot be changed. The schemes can also be used on Linux, as it has been developed independent of the operation system.

If you have configured color schemes in the file "..\config\SystemConfigFiles\ColorSchemes.xml", the user can switch from the one to the other scheme in the Explorer options dialog. The user selected scheme is stored in the user settings and also used next time you start FEWS.

ColorSchemes

scheme

You can configure 1 to n schemes, which will be listed in the Explorer Options dialog for selection.
Each scheme contains a set of predefinedColorKeys and customColorKeys.

predefinedColorKeys

The predefinedColorKeys define the standard elements in the software, like backgrounds, foregrounds and text colors.

customColorKeys

It is possible to use anywhere in the configuration (where a color is defined) to use a custom color key. For example in a maplayer or a graph. The custom key should be used between brackets to be recognised. So you can use for example <lineColor>myLineColor</lineColor>. Per color scheme this custom color should be defined, so in this case:

Code Block
xml
xml
<customColorKeys>
  <key key="myLineColor" color="black"/>
</customColorKeys>

Icons

To have general icons that can be used over all schemes, FEWS replaces one color in the icons. This is color 000001 (so not exactly black). The replace color is defined through the element iconLine. In the below black-green example, the icon color lines are configured through <iconLine color="green"/>

CustomColors and defaults

When using color schemes, the user still can select the default "no color scheme", which is the FEWS default.

In addition to configuring a ColorSchemes.xml, it is also possible (but not mandatory) to configure <defaultColorSchemes> in the Explorer.xml:

Code Block
languagexml
	<defaultColorSchemes>
		<defaultColorSchemeId>black-green</defaultColorSchemeId>
		<defaultColorSchemeForGroup>
			<userGroup id="SnowflakeColorSchemeId">SpecialSnowflakesUserGroup</userGroup>
			<userGroup id="PrincessColorSchemeId">PrincessesUserGroup</userGroup>
		</defaultColorSchemeForGroup>
	</defaultColorSchemes>

On start-up, the order of preference to determine which color scheme should be used is:

  1. A color scheme previously selected by the user through the explorer options (as stored in the user settings).
  2. A default color scheme defined for the user group this user belongs to.
  3. The global default color scheme (<defaultColorSchemeId>).
  4. The first custom color scheme defined in ColorSchemes.xml.
  5. (If the configuration contains no custom color schemes (no ColorSchemes.xml) the default FEWS layout and colors are used.)

For example, if a user has not previously selected a different color scheme, and does not belong to a user group for which a default is defined, but there is a global default configured, this global default will be used when the user starts FEWS.

Since 2018.02 it is possible to configure "no color scheme" as the color scheme id for one of the defaults. This will result in FEWS applying no color scheme by default. For example:

Code Block
languagexml
titleno color scheme default
<defaultColorSchemes>
	<defaultColorSchemeId>no color scheme</defaultColorSchemeId> <!-- FEWS will start with no color scheme applied -->
</defaultColorSchemes>


Examples and configuration

See attached a configuration. An example of the black-green scheme is shown below:

Image Added

Changes since 2024.02

The dashed line and date label marking where the user clicked on a chart can be colored with:

  • <highlightedDateTick>

  • <highlightedDateTickMarker>

Image Added

Changes since 2019.02

In 2019.02 the look of the GUI was updated and four new color scheme config elements were added:

  • <buttonPressed>: background color of a button when it is pressed / "on".
  • <buttonRollover>: background color of a button when the mouse rolls over.
  • <sliderThumb>: color of the thumb on sliders such as the time sliders and aggregation slider in the spatial display.
  • <tableCellFilteredBackground>: color of table cells which have been double clicked to filter on the value in the cell. (Note: for the time series table in the database viewer the filtered background is set through <timeSeriesFilteredBackground> instead.)

To avoid issues with backwards-compatibility, all these new elements are optional. The elements in the color scheme configuration are ordered alphabetically, so they should be added in the correct alphabetical order position.

In addition to these changes, some of the GUI elements will now follow different PredefinedColor elements to determine their color:

  • Many of the 3d effects have been removed by making the "shadow", "darkShadow", "highlight" and "light" colors of GUI elements follow the same PredefinedColor as the background. See the FEWS Defaults section below.
  • The separators in the toolbars now also use the <separatorForeground> instead of <generalShadow>
  • Many "icon-like" GUI elements now use the <iconLine> color to determine their color. This includes:
    • The track on the sliders
    • The arrow icons in the arrow buttons in scrollbars and drop-down selection boxes
    • The checkmarks and border lines on checkboxes
    • The round marks and border lines on radio buttons 

FEWS defaults

The below list describes (from JAVA code) the defaults in FEWS and also which color key is used per control.

Code Block
java
java
1PredefinedColor.java
public enum PredefinedColor {
    ALERT_YELLOW(new Color(0xFFDC23), "nimbusAlertYellow"),
    ALTERNATE_ROW
Code Block
javajava
1PredefinedColor.java

public enum PredefinedColor {
ALERT_YELLOW(new Color(0xFFDC23), "nimbusAlertYellow"),
ALTERNATE_ROW(new Color(0xF2F2F2), "Table.alternateRowColor"),
BACKGROUND(new Color(0xF0F0F0), "Label.background", "List.background", "ScrollPane.background", "List.background", "ArrowButton.background", "Button.background", "CheckBox.background", "CheckBox.interiorBackground", "CheckBoxMenuItem.background", "ColorChooser.background", "ComboBox.background", "ComboBox.buttonBackground", "ComboBox:\"ComboBox.listRenderer\".background", "DesktopIcon.background", "DesktopPane.background", "EditorPane.background", "FileChooser.background", "FileChooser.listViewBackground", "InternalFrame.background", "InternalFrame.minimizeIconBackground", "InternalFrameTitlePane.background", "Menu.background", "MenuBar.background", "MenuItem.background", "OptionPane.background", "Panel.background", "PopupMenu.background", "PopupMenuSeparator.background", "ProgressBar.background", "RadioButton.background", "RadioButton.interiorBackground", "RadioButtonMenuItem.background", "RootPane.background", "ScrollBar.background", "ScrollBarThumb.background", "ScrollBarTrack.background", "Separator.background", "Slider.background", "SliderThumb.background", "SliderTrack.background", "Spinner.background", "SplitPane.background", "TabbedPane.background", "TabbedPane.background", "Table.background", "Table.focusCellBackground", "Table:\"Table.cellRenderer\".background", "TableHeader.background", "TableHeader.focusCellBackground", "ToggleButton.background", "ToolBar.background", "ToolBar.dockingBackground", "ToolBar.floatingBackground", "ToolTip.background", "Viewport.background", "\"Table.editor\".background", "\"Tree.cellEditor\".background", "background", "nimbusLightBackground"),
BACKGROUND_ACTIVE(new Color(0x99B4D1), "InternalFrame.activeTitleBackground", "activeCaption"),
BACKGROUND_DISABLED(new Color(0xF0F0F0), "EditorPane.disabledBackground", "ComboBox.disabledBackground", "PasswordField.disabledBackground", "FormattedTextField.disabledBackground", "TextField.disabledBackground", "TextArea.disabledBackground", "TextPane.disabledBackground"),
BACKGROUND_INACTIVE(new Color(0xFFFFFF), "inactiveCaption", "TextArea.inactiveBackground", "EditorPane.inactiveBackground", "TextPane.inactiveBackground", "PasswordField.inactiveBackground", "FormattedTextField.inactiveBackground", "TextField.inactiveBackground", "InternalFrame.inactiveTitleBackground"),
BACKGROUND_SELECTEDTable.alternateRowColor"),
    BASE(new Color(0x33628C), "nimbusBase"),
    BLANK_ICON(new Color(0x39698A0x00000000, true)), "ComboBox:\"ComboBox.renderer\"[Selected].background", "ComboBox:\"ComboBox.listRenderer\"[Selected].background", "Table[Enabled+Selected].textBackground", "List[Selected].textBackground", "nimbusSelection", "nimbusSelectionBackground", "Table[Disabled+Selected].textBackground", "List[Disabled+Selected].textBackground", "List:\"List.cellRenderer\"[Disabled].background"),
BASE(new Color(0x33628C), "nimbusBase"),
BLUE_GREY(new Color(0xA9B0BE), "nimbusBlueGrey"),
BORDER
    BLUE_GRAY(new Color(0xA9B0BE), "nimbusBlueGrey"),
    BORDER(new Color(0xC0C0C0), "windowBorder", "nimbusBorder", "labelBorder", "panelBorder", "TabbedPane.darkShadow", "TabbedPane.highlight", "ToolBar.shadow"),
    BORDER_ACTIVE(new Color(0xB4B4B4), "InternalFrame.activeBorderColor", "activeCaptionBorder", "InternalFrame.borderColor"),
    BORDER_BUTTON(new Color(0x083F6B), "buttonBorderColor"),
    BORDER_DRAGGING(new Color(0x646464), "windowBorderdragBorderColor"),
 "nimbusBorder", "labelBorder", "panelBorder"),
BORDER_ACTIVE   BORDER_HIGHLIGHT(new Color(0xB4B4B40xFFFFFF), "InternalFrame.activeBorderColorborderHighlight", "activeCaptionBorder", "InternalFrame.borderColor"highlightBorderColor"),
    BORDER_INACTIVE(new Color(0xF4F7FC), "inactiveCaptionBorder", "InternalFrame.inactiveBorderColor"),
BORDER_HIGHLIGHT    BUTTON_PRESSED(new Color(0xFFFFFF0xC0DCF3), "InternalFrameButton.borderHighlightpressedBackground", "highligthBorderColor"),
DRAG_BORDER(new Color(0x646464), "dragBorderColor"),
SELECTION_BORDER    BUTTON_ROLLOVER(new Color(0x0000000xD8E6F2), "Tree.selectionBorderColor", "selectionBorderColor"Button.rolloverBackground"),
BUTTON_BODER    CARET(new Color(0x083F6B0x000000), "buttonBorderColor"),
COLOR_CHOOSER    CELL_CHECKBOX_BACKGROUND(new Color(0xFFFFFF), "ColorChooser.swatchesDefaultRecentColor"),
CONTROL    CHART_BACKGROUND(new Color(0xD6D9DF0xFFFFFF), "control"),
DESKTOP    CHART_PANEL_VALUE_MARKER(new Color(0x3D60790x000000), "desktop"),
DESKTOP_BACKGROUND    CLASS_BREAK_DEFAULT_GRAD1(new Color(0x0000000x0000FF)), "Desktop.background"),
DISABLED
    CLASS_BREAK_DEFAULT_GRAD2(new Color(0xFF0000)),
    COLOR_CHOOSER(new Color(0xD6D9DF0xFFFFFF), "TextPaneColorChooser.disabledswatchesDefaultRecentColor"),
 "TextArea.disabled", "FormattedTextField.disabled", "TextField.disabled", "MenuBar.disabled", "SplitPane.disabled", "Spinner.disabled", "EditorPane.disabled", "DesktopPane.disabled", "ScrollBarThumb.disabled", "PopupMenu.disabled", "ColorChooser.disabled", "OptionPane.disabled", "Menu.disabled", "ScrollBar.disabled", "DesktopIcon.disabled", "RadioButtonMenuItem.disabled", "SliderTrack.disabled", "TableHeader.disabled", "TabbedPane.disabled", "RootPane.disabled", "ArrowButton.disabled", "PasswordField.disabled", "ComboBox.disabled", "Table.disabled", "ToolBar.disabled", "Separator.disabled", "RadioButton.disabled", "CheckBoxMenuItem.disabled", "Slider.disabled", "Viewport.disabled", "List.disabled", "ToolTip.disabled", "InternalFrameTitlePane.disabled", "ScrollBarTrack.disabled", "InternalFrame.disabled", "Label.disabled", "MenuItem.disabled", "PopupMenuSeparator.disabled", "ScrollPane.disabled", "FileChooser.disabled", "ToggleButton.disabled", "SliderThumb.disabled", "Panel.disabled", "ProgressBar.disabled", "Button.disabled", "Tree.disabled", "CheckBox.disabled"),
DRAGGING(new Color(0x404040), "SplitPaneDivider.draggingColor"),
DROP_LINE(new Color(0x73A4D1), "Table.dropLineColor", "Tree.dropLineColor", "List.dropLineColor", "List.dropLineColor", "Table.dropLineColor", "Tree.dropLineColor"),
FLOATING_FOREGROUND(new Color(0x404040), "ToolBar.floatingForeground"),
FOCUS(new Color(0x000000), "ToggleButton.focus", "RadioButton.focus", "CheckBox.focus", "Button.focus", "menuPressedItemF", "menuPressedItemB", "TabbedPane.focus", "nimbusFocus", "Slider.focus"),
FOREGROUND(new Color(0x000000), "Slider.foreground", "SliderTrack.foreground", "ScrollBarTrack.foreground", "ScrollBar.foreground", "ScrollBarThumb.foreground", "SliderThumb.foreground", "Spinner.foreground", "ScrollBar.foreground", "Slider.foreground", "Spinner.foreground", "InternalFrameTitlePane.foreground", "InternalFrame.activeTitleForeground", "InternalFrame.foreground", "OptionPane.foreground", "DesktopIcon.foreground", "Viewport.foreground", "ColorChooser.foreground", "SplitPane.foreground", "ToolBar.foreground", "TextArea.foreground", "FileChooser.foreground", "Tree.foreground", "TextPane.foreground", "TableHeader.foreground", "ScrollPane.foreground", "MenuBar.foreground", "TabbedPane.foreground", "RadioButton.foreground", "Button.foreground", "PopupMenu.foreground", "Table.foreground", "List.foreground", "DesktopPane.foreground", "EditorPane.foreground", "Label.foreground", "ArrowButton.foreground", "ToolTip.foreground", "Panel.foreground", "CheckBox.foreground", "ComboBox.foreground", "FormattedTextField.foreground", "RootPane.foreground", "PasswordField.foreground", "TextField.foreground", "ToggleButton.foreground", "ComboBox.foreground", "PasswordField.caretForeground", "ToggleButton.foreground", "FormattedTextField.foreground", "Table.foreground", "ScrollPane.foreground", "TableHeader.foreground", "ToolBar.foreground", "MenuItem.foreground", "EditorPane.caretForeground", "TextField.caretForeground", "RadioButtonMenuItem.acceleratorForeground", "CheckBoxMenuItem.acceleratorForeground", "RadioButtonMenuItem.foreground", "Menu.foreground", "CheckBox.foreground", "TextArea.foreground", "OptionPane.messageForeground", "Table.focusCellForeground", "Menu.acceleratorForeground", "ColorChooser.foreground", "FormattedTextField.caretForeground", "TextPane.caretForeground", "CheckBoxMenuItem.foreground", "List.foreground", "Label.foreground", "RadioButton.foreground", "TextPane.foreground", "EditorPane.foreground", "OptionPane.foreground", "Tree.foreground", "TabbedPane.foreground", "Viewport.foreground", "TextField.foreground", "PopupMenu.foreground", "ToolTip.foreground", "MenuBar.foreground", "TextArea.caretForeground", "PasswordField.foreground", "Panel.foreground", "MenuItem.acceleratorForeground", "Button.foreground", "CheckBoxMenuItem.foreground", "Menu.foreground", "RadioButtonMenuItem.foreground", "MenuItem.foreground", "CheckBoxMenuItem.acceleratorSelectionForeground", "Menu.acceleratorSelectionForeground", "MenuItem.acceleratorSelectionForeground", "RadioButtonMenuItem.acceleratorSelectionForeground", "PopupMenuSeparator.foreground", "Separator.foreground", "ProgressBar.foreground"),
FOREGROUND_DISABLED(new Color(0x6D6D6D), "MenuItem.disabledForeground", "RadioButtonMenuItem.disabledForeground", "ComboBox.disabledForeground", "Label.disabledForeground"),
FOREGROUND_DOCKING(new Color(0xFF0000), "ToolBar.dockingForeground"),
FOREGROUND_INACTIVE(new Color(0x6D6D6D), "TextArea.inactiveForeground", "EditorPane.inactiveForeground", "TextPane.inactiveForeground", "PasswordField.inactiveForeground", "Button.disabledForeground", "FormattedTextField.inactiveForeground", "TextField.inactiveForeground", "InternalFrame.inactiveTitleForeground"),
GREEN(new Color(0xB0B332), "nimbusGreen"),
GRID_LINES(new Color(0x808080), "Table.gridColor"),
HASH(new Color(0x808080), "Tree.hash"),
HIGHLIGHT(new Color(0xFFFFFF), "controlLtHighlight", "controlLHighlight", "controlHighlight", "TabbedPane.highlight", "Table.highlight", "TextField.highlight", "ToolBar.highlight", "Button.highlight", "ToggleButton.highlight", "ScrollBar.thumbHighlight", "SplitPane.highlight", "Slider.highlight", "ProgressBar.highlight", "ComboBox.buttonHighlight", "MenuBar.highlight", "CheckBox.highlight", "Separator.highlight", "TabbedPane.highlight", "RadioButton.highlight", "textHighlightText", "InternalFrame.resizeIconHighlight"),
ICON_LINE(new Color(3, 3, 3)),  // The black lines in icons can be controlled by the color scheme when the line is nearly black 0x030303
INFO(new Color(0xF2F2BD), "info"),
INFO_BLUE(new Color(0x2F5CB4), "nimbusInfoBlue"),
LIGHT(new Color(0xE3E3E3), "Button.light","RadioButton.light","ToolBar.light","TabbedPane.light","ToggleButton.light","InternalFrame.borderLight","TextField.light","Table.light","CheckBox.light","Table.sortIconLight"),
MENU(new Color(0xE3E3E3), "menu"),
ORANGE(new Color(0xBF6204), "nimbusOrange"),
RED(new Color(0xA92E22), "nimbusRed"),
SCROLLBAR(new Color(0xCDD0D5), "scrollbar"),
SELECTION_BACKGROUND(new Color(0x3399FF), "PasswordField.selectionBackground","Tree.selectionBackground","TextArea.selectionBackground","Table.selectionBackground","TextField.selectionBackground","Menu.selectionBackground","CheckBoxMenuItem.selectionBackground","MenuItem.selectionBackground","EditorPane.selectionBackground","TextPane.selectionBackground","RadioButtonMenuItem.selectionBackground","ComboBox.selectionBackground","List.selectionBackground","FormattedTextField.selectionBackground","ProgressBar.selectionBackground"),
SELECTION_FOREGROUND(new Color(0xFFFFFF), "Tree.selectionForeground","CheckBoxMenuItem.selectionForeground","TextPane.selectionForeground","ComboBox.selectionForeground","EditorPane.selectionForeground","MenuItem.selectionForeground","TextArea.selectionForeground","RadioButtonMenuItem.selectionForeground","Menu.selectionForeground","Tree.selectionForeground","PasswordField.selectionForeground","FormattedTextField.selectionForeground","Table.selectionForeground","List.selectionForeground","TextField.selectionForeground","ProgressBar.selectionForeground"),
SEPARATOR_FOREGROUND(new Color(0xA0A0A0), "Separator.foreground"),
SHADOW(new Color(0xA0A0A0), "controlShadow","MenuBar.shadow","ComboBox.buttonShadow","ToolBar.shadow","InternalFrame.resizeIconShadow","Button.shadow","RadioButton.shadow","ToggleButton.shadow","ProgressBar.shadow","TabbedPane.shadow","SplitPane.shadow","TextField.shadow","CheckBox.shadow","InternalFrame.borderShadow","Separator.shadow","Slider.shadow","Table.shadow","ScrollBar.thumbShadow","TabbedPane.shadow"),
SHADOW_DARK(new Color(0x696969), "TabbedPane.darkShadow","controlDkShadow","Table.darkShadow","ToolBar.darkShadow","ToggleButton.darkShadow","Button.darkShadow","ScrollBar.thumbDarkShadow","RadioButton.darkShadow","TabbedPane.darkShadow","ComboBox.buttonDarkShadow","CheckBox.darkShadow","TextField.darkShadow","InternalFrame.borderDarkShadow","SplitPane.darkShadow","controlDkShadow"),
SHADOW_DISABLED(new Color(0xFFFFFF), "Label.disabledShadow","Button.disabledShadow"),
SORT_ICON(new Color(0xA0A0A0), "Table.sortIconColor"),
TEXT(new Color(0x000000), "text","controlText","infoText","menuText","textText","activeCaptionText","windowText"),
TEXT_BACKGROUND(new Color(0xFFFFFF), "FormattedTextField.background", "Tree.background", "Tree:TreeCell[Enabled+Focused].background", "Tree:TreeCell[Enabled].background", "textBackground","Tree.textBackground","Tree.textBackground", "TextField.background", "TextPane.background", "EditorPane.background", "TextArea.background", "PasswordField.background"),
TEXT_DISABLED(new Color(0x8E8F91), "textInactiveText","TextField.disabledText","TextPane.disabledText","TextArea.disabledText","FormattedTextField.disabledText","InternalFrameTitlePane.disabledText","inactiveCaptionText","ScrollBarTrack.disabledText","SliderTrack.disabledText","Slider.disabledText","DesktopPane.disabledText","InternalFrame.disabledText","SplitPane.disabledText","OptionPane.disabledText","ToolBar.disabledText","Table.disabledText","Tree.disabledText","ColorChooser.disabledText","ScrollBarThumb.disabledText","TabbedPane.disabledText","ComboBox.disabledText","PopupMenuSeparator.disabledText","DesktopIcon.disabledText","PopupMenu.disabledText","ArrowButton.disabledText","Separator.disabledText","Spinner.disabledText","ScrollPane.disabledText","ScrollBar.disabledText","Panel.disabledText","RootPane.disabledText","SliderThumb.disabledText","MenuBar.disabledText","TableHeader.disabledText","Viewport.disabledText","FileChooser.disabledText","ToolTip.disabledText","CheckBoxMenuItem.disabledText","RadioButton.disabledText","CheckBox.disabledText","RadioButtonMenuItem.disabledText","nimbusDisabledText","Menu.disabledText","ToggleButton.disabledText","MenuItem.disabledText","Button.disabledText","EditorPane.disabledText","List.disabledText","ProgressBar.disabledText","Label.disabledText","PasswordField.disabledText"),
TEXT_FOREGROUND(new Color(0x232324), "InternalFrame:InternalFrameTitlePane[Enabled].textForeground","MenuBar:Menu[Enabled].textForeground","MenuItem[Enabled].textForeground","Table.textForeground","Menu[Enabled].textForeground","CheckBoxMenuItem[Enabled].textForeground","RadioButtonMenuItem[Enabled].textForeground","Tree.textForeground","textForeground","Tree.textForeground","ToolBarSeparator.textForeground"),
TEXT_FOREGROUND_DISABLED(new Color(0x8E8F91), "ToggleButton[Disabled+Selected].textForeground","ToolBar:ToggleButton[Disabled+Selected].textForeground","List:\"List.cellRenderer\"[Disabled].textForeground","ComboBox:\"ComboBox.listRenderer\"[Disabled].textForeground","List[Disabled].textForeground","Menu[Disabled].textForeground","Tree:\"Tree.cellRenderer\"[Disabled].textForeground","ComboBox:\"ComboBox.textField\"[Disabled].textForeground","ToggleButton[Disabled].textForeground","MenuItem:MenuItemAccelerator[Disabled].textForeground","RadioButtonMenuItem[Disabled].textForeground","Label[Disabled].textForeground","TextArea[Disabled].textForeground","TextPane[Disabled].textForeground","TextArea[Disabled+NotInScrollPane].textForeground","RadioButton[Disabled].textForeground","CheckBox[Disabled].textForeground","TabbedPane:TabbedPaneTab[Disabled].textForeground","TextField[Disabled].textForeground","ComboBox:\"ComboBox.renderer\"[Disabled].textForeground","Button[Disabled].textForeground","CheckBoxMenuItem[Disabled].textForeground","Spinner:Panel:\"Spinner.formattedTextField\"[Disabled].textForeground","MenuItem[Disabled].textForeground","MenuBar:Menu[Disabled].textForeground","FormattedTextField[Disabled].textForeground","\"Tree.cellEditor\"[Disabled].textForeground","EditorPane[Disabled].textForeground","ProgressBar[Disabled].textForeground","PasswordField[Disabled].textForeground","\"Table.editor\"[Disabled].textForeground"),
TEXT_HIGHLIGHT(new Color(0x39698A), "textHighlight"),
TEXT_SELECTED(new Color(0xFFFFFF), "MenuBar:Menu[Selected].textForeground","ComboBox:\"ComboBox.listRenderer\"[Selected].textForeground","TextField[Selected].textForeground","EditorPane[Selected].textForeground","TabbedPane:TabbedPaneTab[Focused+Pressed+Selected].textForeground","Spinner:Panel:\"Spinner.formattedTextField\"[Focused+Selected].textForeground","List[Selected].textForeground","Menu[Enabled+Selected].textForeground","Tree:TreeCell[Enabled+Selected].textForeground","ComboBox:\"ComboBox.textField\"[Selected].textForeground","\"Table.editor\"[Selected].textForeground","ComboBox:\"ComboBox.renderer\"[Selected].textForeground","TabbedPane:TabbedPaneTab[Pressed+Selected].textForeground","RadioButtonMenuItem[MouseOver+Selected].textForeground","PasswordField[Selected].textForeground","CheckBoxMenuItem[MouseOver+Selected].textForeground","Table[Enabled+Selected].textForeground","TextPane[Selected].textForeground","TextArea[Selected].textForeground","Spinner:Panel:\"Spinner.formattedTextField\"[Selected].textForeground","FormattedTextField[Selected].textForeground","Tree:TreeCell[Focused+Selected].textForeground","\"Tree.cellEditor\"[Selected].textForeground","CheckBoxMenuItem:MenuItemAccelerator[MouseOver].textForeground","MenuItem:MenuItemAccelerator[MouseOver].textForeground","RadioButtonMenuItem[MouseOver].textForeground","RadioButtonMenuItem:MenuItemAccelerator[MouseOver].textForeground","MenuItem[MouseOver].textForeground","Menu:MenuItemAccelerator[MouseOver].textForeground","CheckBoxMenuItem[MouseOver].textForeground","Button[Default+Pressed].textForeground","nimbusSelectedText"),
THUMB(new Color(0xF0F0F0), "ScrollBar.thumb"),
TICK(new Color(0x232830), "Slider.tickColor"),
TITLE(new Color(0x3B3B3B), "TitledBorder.titleColor"),
TRACK(new Color(0xFFFFFF), "ScrollBar.track"),
TRACK_FOREGROUND(new Color(0xC8C8C8), "ScrollBar.trackForeground"),
TRACK_HIGHLIGHT(new Color(0x000000), "ScrollBar.trackHighlight"),
TRACK_HIGHLIGHT_FOREGROUND(new Color(0x404040), "ScrollBar.trackHighlightForeground"),
WINDOW(new Color(0xFFFFFF), "window"),

BLANK_ICON(new Color(0x00000000, true)),
CARET(new Color(0x000000)),
CELL_CHECKBOX_BACKGROUND(new Color(0xFFFFFF)),
CHART_BACKGROUND(new Color(0xFFFFFF)),
CHART_PANEL_VALUE_MARKER(new Color(0x000000)),
CLASS_BREAK_DEFAULT_GRAD1(new Color(0x0000FF)),
CLASS_BREAK_DEFAULT_GRAD2(new Color(0xFF0000)),
CORRELATION_ITEM(new Color(0xA0A0A0)),
CORRELATION_ITEM_LABEL(new Color(0xFEFFDB)),
DEFAULT_ARROW(new Color(0x000000)),
DEFAULT_LINE(new Color(0x000000)),
DEFAULT_MAP_BACKGROUND(new Color(0xFFFFFF)),
DOUBLE_MASS_CURVE_VALUE_MARKER(new Color(0x404040)),
DUMMY(new Color(0x000000), "Color.RAB_BACKGROUND_ACTIVE_END", "Color.RAB_BACKGROUND_ACTIVE_START", "Color.RAB_BACKGROUND_INACTIVE", "Color.RAB_FOREGROUND", "Color.RAB_FOREGROUND_UNAVAILABLE", "Color.RAB_MOUSE_IN_BORDER", "Color.RAB_MOUSE_OUT_BORDER", "Color.TOOL_SCROLL_BAR_UI_BCK_END", "Color.TOOL_SCROLL_BAR_UI_BCK_START", "Color.TWTB_BACKGROUND_ACTIVE_END", "Color.TWTB_BACKGROUND_ACTIVE_START", "Color.TWTB_BACKGROUND_INACTIVE_END", "Color.TWTB_BACKGROUND_INACTIVE_START", "Color.TWTB_ID_BACKGROUND_ACTIVE", "Color.TWTB_ID_BACKGROUND_ANIMATING", "Color.TWTB_ID_BACKGROUND_FLASHING_0", "Color.TWTB_ID_BACKGROUND_FLASHING_1", "Color.TWTB_ID_BACKGROUND_INACTIVE", "Color.TWTB_ID_FOREGROUND_ACTIVE", "Color.TWTB_ID_FOREGROUND_INACTIVE", "Color.TWTB_TAB_FOREGROUND_SELECTED", "Color.TWTB_TAB_FOREGROUND_UNSELECTED"),
ERROR_MESSAGE_FOREGROUND(new Color(0xFF0000)),
ETCHED_BORDER_HIGHLIGHT(new Color(0xFFFFFF), "EtchedBorder.highlight"),
ETCHED_BORDER_SHADOW(new Color(0x868686), "EtchedBorder.shadow"),
ETCHED_SELECTION_BORDER_HIGHLIGHT(new Color(0x000000)),
ETCHED_SELECTION_BORDER_SHADOW(new Color(0x868686)),
FLAG_BAR_BACKGROUND(new Color(0xC0C0C0)),
FLOW_DOMAIN_MARKER(new Color(0xFFFFAF)),
FORECAST_LISTBOX_TITLE(new Color(0x0000FF)),
GRID_CONTOUR(new Color(0x000000)),
GRID_DISPLAY_COMPASS_ROSE CONTROL(new Color(0xF0F0F0), "control"),
    CORRELATION_ITEM(new Color(0xA0A0A0)),
    CORRELATION_ITEM_LABEL(new Color(0xFEFFDB)),
    DEFAULT_ARROW(new Color(0x000000)),
    DEFAULT_LINE(new Color(0x000000)),
    DEFAULT_MAP_BACKGROUND(new Color(0xFFFFFF)),
    DESKTOP(new Color(0x3D6079), "desktop"),
    DESKTOP_BACKGROUND(new Color(0xABABAB), "Desktop.background"),
    DOUBLE_MASS_CURVE_VALUE_MARKER(new Color(0x404040)),
    DROP_LINE(new Color(0x73A4D1), "Table.dropLineColor", "Tree.dropLineColor", "List.dropLineColor", "List.dropLineColor", "Table.dropLineColor", "Tree.dropLineColor"),
    //TODO: Possible candidate to get rid of
    DUMMY(new Color(0x000000), "Color.RAB_BACKGROUND_ACTIVE_END", "Color.RAB_BACKGROUND_ACTIVE_START", "Color.RAB_BACKGROUND_INACTIVE", "Color.RAB_FOREGROUND", "Color.RAB_FOREGROUND_UNAVAILABLE", "Color.RAB_MOUSE_IN_BORDER", "Color.RAB_MOUSE_OUT_BORDER", "Color.TOOL_SCROLL_BAR_UI_BCK_END", "Color.TOOL_SCROLL_BAR_UI_BCK_START", "Color.TWTB_BACKGROUND_ACTIVE_END", "Color.TWTB_BACKGROUND_ACTIVE_START", "Color.TWTB_BACKGROUND_INACTIVE_END", "Color.TWTB_BACKGROUND_INACTIVE_START", "Color.TWTB_ID_BACKGROUND_ACTIVE", "Color.TWTB_ID_BACKGROUND_ANIMATING", "Color.TWTB_ID_BACKGROUND_FLASHING_0", "Color.TWTB_ID_BACKGROUND_FLASHING_1", "Color.TWTB_ID_BACKGROUND_INACTIVE", "Color.TWTB_ID_FOREGROUND_ACTIVE", "Color.TWTB_ID_FOREGROUND_INACTIVE", "Color.TWTB_TAB_FOREGROUND_SELECTED", "Color.TWTB_TAB_FOREGROUND_UNSELECTED"),
    ERROR_MESSAGE_FOREGROUND(new Color(0xFF0000)),
    ETCHED_BORDER_HIGHLIGHT(new Color(0xFFFFFF), "EtchedBorder.highlight"),
    ETCHED_BORDER_SHADOW(new Color(0x868686), "EtchedBorder.shadow"),
    ETCHED_SELECTION_BORDER_HIGHLIGHT(new Color(0x000000)),
    ETCHED_SELECTION_BORDER_SHADOW(new Color(0x868686)),
    FLAG_BAR_BACKGROUND(new Color(0xC0C0C0)),
    FLOATING_FOREGROUND(new Color(0x404040), "ToolBar.floatingForeground"),
    FLOW_DOMAIN_MARKER(new Color(0xFFFFAF)),
    FORECAST_LIST_BOX_TITLE(new Color(0x000000)),
    GENERAL_BACKGROUND(new Color(0xF0F0F0), "Label.background", "ScrollPane.background", "ArrowButton.background", "Button.background", "CheckBox.background", "CheckBox.interiorBackground", "CheckBoxMenuItem.background", "ColorChooser.background", "ComboBox.buttonBackground", "ComboBox:\"ComboBox.listRenderer\".background", "DesktopIcon.background", "DesktopPane.background", "EditorPane.background", "FileChooser.background", "FileChooser.listViewBackground", "InternalFrame.background", "InternalFrame.minimizeIconBackground", "InternalFrameTitlePane.background", "Menu.background", "MenuBar.background", "MenuItem.background", "OptionPane.background", "Panel.background", "PopupMenu.background", "PopupMenuSeparator.background", "ProgressBar.background", "RadioButton.background", "RadioButton.interiorBackground", "RadioButtonMenuItem.background", "RootPane.background", "ScrollBar.background", "ScrollBarThumb.background", "ScrollBarTrack.background", "Separator.background", "Slider.background", "SliderThumb.background", "SliderTrack.background", "Spinner.background", "SplitPane.background", "TabbedPane.background", "TabbedPane.tabAreaBackground", "TabbedPane.contentAreaColor", "Table.focusCellBackground", "Table:\"Table.cellRenderer\".background", "TableHeader.focusCellBackground", "ToggleButton.background", "ToolBar.background", "ToolBar.dockingBackground", "ToolBar.floatingBackground", "Viewport.background", "\"Table.editor\".background", "\"Tree.cellEditor\".background", "background", "nimbusLightBackground", "TabbedPane.shadow", "controlShadow", "controlDkShadow", "controlLtHighlight", "controlLHighlight", "controlHighlight", "Button.light", "Button.shadow", "Button.highlight", "Button.darkShadow", "ToggleButton.light", "ToggleButton.highlight", "ToggleButton.shadow", "ToggleButton.darkShadow"),
    GENERAL_BACKGROUND_ACTIVE(new Color(0x99B4D1), "InternalFrame.activeTitleBackground", "activeCaption"),
    GENERAL_BACKGROUND_DISABLED(new Color(0xF0F0F0), "EditorPane.disabledBackground", "ComboBox.disabledBackground", "PasswordField.disabledBackground", "FormattedTextField.disabledBackground", "TextField.disabledBackground", "TextArea.disabledBackground", "TextPane.disabledBackground"),
    GENERAL_BACKGROUND_INACTIVE(new Color(0xFFFFFF), "inactiveCaption", "TextArea.inactiveBackground", "EditorPane.inactiveBackground", "TextPane.inactiveBackground", "PasswordField.inactiveBackground", "FormattedTextField.inactiveBackground", "TextField.inactiveBackground", "InternalFrame.inactiveTitleBackground"),
    GENERAL_BACKGROUND_SELECTED(new Color(0xF0F0F0), "ComboBox:\"ComboBox.renderer\"[Selected].background", "ComboBox:\"ComboBox.listRenderer\"[Selected].background", "Table[Enabled+Selected].textBackground", "List[Selected].textBackground", "nimbusSelection", "nimbusSelectionBackground", "Table[Disabled+Selected].textBackground", "List[Disabled+Selected].textBackground", "List:\"List.cellRenderer\"[Disabled].background", "TabbedPane.selected"),
    GENERAL_DISABLED(new Color(0xD6D9DF), "TextPane.disabled", "TextArea.disabled", "FormattedTextField.disabled", "TextField.disabled", "MenuBar.disabled", "SplitPane.disabled", "Spinner.disabled", "EditorPane.disabled", "DesktopPane.disabled", "ScrollBarThumb.disabled", "PopupMenu.disabled", "ColorChooser.disabled", "OptionPane.disabled", "Menu.disabled", "ScrollBar.disabled", "DesktopIcon.disabled", "RadioButtonMenuItem.disabled", "SliderTrack.disabled", "TableHeader.disabled", "TabbedPane.disabled", "RootPane.disabled", "ArrowButton.disabled", "PasswordField.disabled", "ComboBox.disabled", "Table.disabled", "ToolBar.disabled", "Separator.disabled", "RadioButton.disabled", "CheckBoxMenuItem.disabled", "Slider.disabled", "Viewport.disabled", "List.disabled", "ToolTip.disabled", "InternalFrameTitlePane.disabled", "ScrollBarTrack.disabled", "InternalFrame.disabled", "Label.disabled", "MenuItem.disabled", "PopupMenuSeparator.disabled", "ScrollPane.disabled", "FileChooser.disabled", "ToggleButton.disabled", "SliderThumb.disabled", "Panel.disabled", "ProgressBar.disabled", "Button.disabled", "Tree.disabled", "CheckBox.disabled", "ArrowButton.arrowDisabledColor", "Slider.thumbDisabledColor"),
    GENERAL_DRAGGING(new Color(0x404040), "SplitPaneDivider.draggingColor"),
    GENERAL_FOCUS(new Color(0x000000), "ToggleButton.focus", "RadioButton.focus", "CheckBox.focus", "Button.focus", "menuPressedItemF", "menuPressedItemB", "TabbedPane.focus", "nimbusFocus", "Slider.focus"),
    GENERAL_FOREGROUND(new Color(0x000000), "Slider.foreground", "SliderTrack.foreground", "ScrollBarTrack.foreground", "ScrollBar.foreground", "ScrollBarThumb.foreground", "SliderThumb.foreground", "Spinner.foreground", "ScrollBar.foreground", "Slider.foreground", "Spinner.foreground", "InternalFrameTitlePane.foreground", "InternalFrame.activeTitleForeground", "InternalFrame.foreground", "OptionPane.foreground", "DesktopIcon.foreground", "Viewport.foreground", "ColorChooser.foreground", "SplitPane.foreground", "ToolBar.foreground", "TextArea.foreground", "FileChooser.foreground", "Tree.foreground", "TextPane.foreground", "TableHeader.foreground", "ScrollPane.foreground", "MenuBar.foreground", "TabbedPane.foreground", "RadioButton.foreground", "Button.foreground", "PopupMenu.foreground", "Table.foreground", "List.foreground", "DesktopPane.foreground", "EditorPane.foreground", "Label.foreground", "ArrowButton.foreground", "ToolTip.foreground", "Panel.foreground", "CheckBox.foreground", "ComboBox.foreground", "FormattedTextField.foreground", "RootPane.foreground", "PasswordField.foreground", "TextField.foreground", "ToggleButton.foreground", "ComboBox.foreground", "PasswordField.caretForeground", "ToggleButton.foreground", "FormattedTextField.foreground", "Table.foreground", "ScrollPane.foreground", "TableHeader.foreground", "ToolBar.foreground", "MenuItem.foreground", "EditorPane.caretForeground", "TextField.caretForeground", "RadioButtonMenuItem.acceleratorForeground", "CheckBoxMenuItem.acceleratorForeground", "RadioButtonMenuItem.foreground", "Menu.foreground", "CheckBox.foreground", "TextArea.foreground", "OptionPane.messageForeground", "Table.focusCellForeground", "Menu.acceleratorForeground", "ColorChooser.foreground", "FormattedTextField.caretForeground", "TextPane.caretForeground", "CheckBoxMenuItem.foreground", "List.foreground", "Label.foreground", "RadioButton.foreground", "TextPane.foreground", "EditorPane.foreground", "OptionPane.foreground", "Tree.foreground", "TabbedPane.foreground", "Viewport.foreground", "TextField.foreground", "PopupMenu.foreground", "ToolTip.foreground", "MenuBar.foreground", "TextArea.caretForeground", "PasswordField.foreground", "Panel.foreground", "MenuItem.acceleratorForeground", "Button.foreground", "CheckBoxMenuItem.foreground", "Menu.foreground", "RadioButtonMenuItem.foreground", "MenuItem.foreground", "CheckBoxMenuItem.acceleratorSelectionForeground", "Menu.acceleratorSelectionForeground", "MenuItem.acceleratorSelectionForeground", "RadioButtonMenuItem.acceleratorSelectionForeground", "PopupMenuSeparator.foreground", "ProgressBar.foreground"),
    GENERAL_FOREGROUND_DISABLED(new Color(0x6D6D6D), "MenuItem.disabledForeground", "RadioButtonMenuItem.disabledForeground", "ComboBox.disabledForeground", "Label.disabledForeground"),
    GENERAL_FOREGROUND_DOCKING(new Color(0xFF0000), "ToolBar.dockingForeground"),
    GENERAL_FOREGROUND_INACTIVE(new Color(0x6D6D6D), "TextArea.inactiveForeground", "EditorPane.inactiveForeground", "TextPane.inactiveForeground", "PasswordField.inactiveForeground", "Button.disabledForeground", "FormattedTextField.inactiveForeground", "TextField.inactiveForeground", "InternalFrame.inactiveTitleForeground"),
    GENERAL_HIGHLIGHT(new Color(0xFFFFFF), "ScrollBar.highlight", "Table.highlight", "TextField.highlight", "ToolBar.highlight", "SplitPane.highlight", "Slider.highlight", "ProgressBar.highlight", "ComboBox.buttonHighlight", "MenuBar.highlight", "CheckBox.highlight", "Separator.highlight", "RadioButton.highlight", "textHighlightText", "InternalFrame.resizeIconHighlight"),
    GENERAL_LIGHT(new Color(0xE3E3E3), "RadioButton.light", "ToolBar.light", "TabbedPane.light", "InternalFrame.borderLight", "TextField.light", "Table.light", "CheckBox.light", "Table.sortIconLight"),
    GENERAL_SHADOW(new Color(0xA0A0A0), "ScrollBar.shadow", "MenuBar.shadow", "ComboBox.buttonShadow", "InternalFrame.resizeIconShadow", "RadioButton.shadow", "ProgressBar.shadow", "SplitPane.shadow", "TextField.shadow", "CheckBox.shadow", "InternalFrame.borderShadow", "Separator.shadow", "Slider.shadow", "Table.shadow"),
    GENERAL_SHADOW_DARK(new Color(0x696969), "ScrollBar.darkShadow", "Table.darkShadow", "ToolBar.darkShadow", "RadioButton.darkShadow", "ComboBox.buttonDarkShadow", "CheckBox.darkShadow", "TextField.darkShadow", "InternalFrame.borderDarkShadow", "SplitPane.darkShadow"),
    GENERAL_SHADOW_DISABLED(new Color(0xFFFFFF), "Label.disabledShadow", "Button.disabledShadow"),
    GREEN(new Color(0xB0B332), "nimbusGreen"),
    GRID_CONTOUR(new Color(0x000000)),
    GRID_DISPLAY_COMPASS_ROSE_BORDER(new Color(0x000000)),
    GRID_DISPLAY_COMPASS_ROSE_LEFT_HALF(new Color(0x000000)),
    GRID_DISPLAY_COMPASS_ROSE_RIGHT_HALF(new Color(0xFFFFFF)),
    GRID_DISPLAY_COMPONENT_BORDER(new Color(0x000000)),
    GRID_DISPLAY_DEFAULT_CIRCLE_BORDER(new Color(0x000000)),
    GRID_DISPLAY_EMPTY_IMAGE(new Color(0xFFFFFF)),
    GRID_DISPLAY_SCALE_BAR_SEGMENT_EVEN(new Color(0x000000)),
    GRID_DISPLAY_SCALE_BAR_SEGMENT_ODD(new Color(0xFFFFFF)),
    GRID_DISPLAY_SELECTION_FOREGROUND(new Color(0x00FF00)),
    GRID_DISPLAY_SELECTION_RECTANGLE(new Color(0x404040)),
    GRID_DISPLAY_SKETCH_POINT(new Color(0x000000)),
    GRID_DISPLAY_XOR_ALTERNATION(new Color(0xC0C0C0)),
    GRID_EXCLUDED1(new Color(0x0000ff)),
    GRID_EXCLUDED2(new Color(0xff0000)),
    GRID_EXCLUDED3(new Color(0x43b7ba)),
    GRID_LINES(new Color(0xC0C0C0), "Table.gridColor"),
    HASH(new Color(0x808080), "Tree.hash"),
    ICON_LINE(new Color(3, 3, 3), "ArrowButton.arrowColor", "Slider.lineColor"),  // The black lines in icons can be controlled by the color scheme when the line is nearly black 0x030303
    INFO(new Color(0xF2F2BD), "info"),
    INFO_BLUE(new Color(0x2F5CB4), "nimbusInfoBlue"),
    LABEL_BACKGROUND(new Color(0xFFFFFF)),
    LABEL_FOREGROUND(new Color(0x0000FF)),
    LOCATION_RESULTS_BORDER(new Color(0x404040)),
    LONGITUDINAL_VALUE_MARKER(new Color(0xf87a17)),
    LOOKUP_RULE_DEFAULT(new Color(0x00ffff)),
    MAP_LABEL_BACKGROUND(new Color(0x78FFFFFF, true)),
    MAP_LABEL_CURRENT_TIME(new Color(0xFF0000)),
    MAP_SELECTION_HIGHLIGHT(new Color(0x404040)),
    MAP_SELECTION_HIGHLIGHT_ALTERNATE(new Color(0xC0C0C0)),
    MAP_TRACK_CURRENT_TIME(new Color(0xFFFF00)),
    MAP_TRACK_LINE(new Color(0xFF0000)),
    MENU(new Color(0xE3E3E3), "menu"),
    MODEL_STATUS_FAILED_BACKGROUND(new Color(0xFF0000)),
    MODEL_STATUS_RUNNING_BACKGROUND(new Color(0xFF00FF)),
    MODEL_STATUS_SUCCESSFUL_BACKGROUND(new Color(0x00FF00)),
    MODEL_USER_PROFILE_BACKGROUND(new Color(0x00FF00)),
    MODEL_VALUE_SET_BACKGROUND(new Color(0x00FF00)),
    MODEL_VALUE_TUNED_BACKGROUND(new Color(0x87CEFA)),
    MODIFIER_LOCKED(new Color(0x808080)),
    MODIFIER_PARTLY_ACTIVE(new Color(0xFFFF00)),
    ORANGE(new Color(0xBF6204), "nimbusOrange"),
    ORIGINAL_VALUE_MARKER(new Color(0x0000FF)),
    PANEL_BACKGROUND(new Color(0xFFFFFF)),
    PCA_VALUE_MARKER(new Color(0xFF0000)),
    PERCENTAGE_DOMAIN_MARKER(new Color(0x0000FF)),
    PLOT_ANNOTATION_FOREGROUND(new Color(0x000000)),
    PLOT_AXIS_LABEL(new Color(0x000000)),
    PLOT_BACKGROUND(new Color(0xFFFFFF)),
    PLOT_LABEL(new Color(0x000000)),
    PLOT_LEGEND_LABEL(new Color(0x000000)),
    PLOT_LEGEND_LABEL_SELECTED(new Color(0x0000FF)),
    PLOT_LONGITUDINAL_MAXIMUM(new Color(0xFF0000)),
    PLOT_LONGITUDINAL_MINIMUM(new Color(0x00FF00)),
    PLOT_LONGITUDINAL_RIVER_BED(new Color(0x980517)),
    PLOT_LONGITUDINAL_VALUE(new Color(0x0000FF)),
    PLOT_LONGITUDINAL_VALUE_MARKER(new Color(0xf87a17)),
    PLOT_SLIDE_BACKGROUND(new Color(0x404040)),
    PLOT_TICK_LABEL(new Color(0x000000)),
    PLOT_TICK_MARK(new Color(0x000000)),
    PLOT_UNIT_INSIDE(new Color(0xFFFFFF)),
    PLOT_UNIT_OUTSIDE(new Color(0x000000)),
    PLOT_WHAT_IF_AXIS_LABEL(new Color(0xFFFFFF)),
    PLOT_WHAT_IF_TICK_LABEL(new Color(0xFFFFFF)),
    PLOT_WHAT_IF_TICK_MARK(new Color(0xFFFFFF)),
    POLYGON(new Color(0x00FFFF)),
    POLYGON_SELECTED(new Color(0x500000ff, true)),
    RAIN_DOMAIN_MARKER(new Color(0xFFFF00)),
    RED(new Color(0xA92E22), "nimbusRed"),
    SCALAR_PLOT_MARKER(new Color(0x000000)),
    SCATTER_PLOT_SELECTION_BACKGROUND(new Color(0x0000FF)),
    SCENARIO_EDITOR_DIALOG_BACKGROUND(new Color(0xFF0000)),
    SCENARIO_EDITOR_TITLE_BACKGROUND(new Color(0xC0C0C0)),
    SCROLLBAR(new Color(0xCDD0D5), "scrollbar"),
    SELECTION_BACKGROUND(new Color(0x3399FF), "PasswordField.selectionBackground", "Tree.selectionBackground", "TextArea.selectionBackground", "TextField.selectionBackground", "Menu.selectionBackground", "CheckBoxMenuItem.selectionBackground", "MenuItem.selectionBackground", "EditorPane.selectionBackground", "TextPane.selectionBackground", "RadioButtonMenuItem.selectionBackground", "ComboBox.selectionBackground", "List.selectionBackground", "FormattedTextField.selectionBackground", "ProgressBar.selectionBackground"),
    SELECTION_BORDER(new Color(0x000000), "Tree.selectionBorderColor", "selectionBorderColor"),
    SELECTION_BORDER_BACKGROUND(new Color(0x808080)),
    SELECTION_FOREGROUND(new Color(0xFFFFFF), "Tree.selectionForeground", "CheckBoxMenuItem.selectionForeground", "TextPane.selectionForeground", "ComboBox.selectionForeground", "EditorPane.selectionForeground", "MenuItem.selectionForeground", "TextArea.selectionForeground", "RadioButtonMenuItem.selectionForeground", "Menu.selectionForeground", "Tree.selectionForeground", "PasswordField.selectionForeground", "FormattedTextField.selectionForeground", "List.selectionForeground", "TextField.selectionForeground", "ProgressBar.selectionForeground"),
    SEPARATOR_FOREGROUND(new Color(0xC0C0C0), "Separator.foreground"),
    SHAPE_DEFAULT_BACKGROUND(new Color(0, true)),
    SHAPE_FILL_COLOR(new Color(0xFF0000)),
    SHAPE_ICON_FILL(new Color(0xFFFFFF)),
    SHAPE_ICON_LINE(new Color(0xFFFFFF)),
    SLIDER_PANEL_BACKGROUND_CHANGED(new Color(0xFFFF00)),
    SLIDER_THUMB(new Color(0x3672D0), "Slider.thumbColor"),
    SORT_ICON(new Color(0xA0A0A0), "Table.sortIconColor"),
    STATISTICS_XY_EDITABLE(new Color(0x00FFFF)),
    STATISTICS_XY_NON_EDITABLE(new Color(0xE6E6E6)),
    STATUS_BAR_CAPACITY(new Color(0xaddfff)),
    STATUS_BAR_CAPACITY_WARNING(new Color(0xFF0000)),
    STATUS_BAR_CONNECTING(new Color(0xF79F81)),
    STATUS_BAR_FAILOVER(new Color(0xFFC800)),
    STATUS_BAR_DOWN(new Color(0xFFC800)),
    STATUS_BAR_FOREGROUND(new Color(0x000000)),
    STATUS_BAR_INDEXING_BACKGROUND(new Color(0xFF00FF)),
    STATUS_BAR_LABEL_HOVER_COLOR(new Color(0x0000FF)),
    STATUS_BAR_LOGGED_OFF(new Color(0xFF0000)),
    STATUS_BAR_LOGGED_ON(new Color(0xD0F5A9)),
    STATUS_BAR_SNAPSHOT_UPDATE(new Color(0xFF0000)),
    STATUS_BAR_SNAPSHOT(new Color(0xD0F5A9)),
    STATUS_BAR_OK_FOREGROUND(new Color(0x0000FF)),
    STATUS_BAR_PROGRESS(new Color(0xaddfff)),
    STATUS_BAR_PROGRESS_OC(new Color(0xFF0000)),
	STATUS_BAR_FINISHED(new Color(0x5060b0)),
    STATUS_BAR_ROLLING_BARREL(new Color(0xf75431)),
    STATUS_BAR_SYNCHRONISING(new Color(0xF5A9F2)),
    STATUS_BAR_TIME_PAUSED_BACKGROUND(new Color(0xF79F81)),
    TABLE_BACKGROUND(new Color(0xFFFFFF)),
    TABLE_CELL_BACKGROUND(UIManager.getColor("Table.background"), "Table.background"),
    TABLE_CELL_FILTERED_BACKGROUND(new Color(0xaddfff)),
    TABLE_CELL_BOX_WHISKER_CATEGORY_BACKGROUND(new Color(0x00FFFF)),
    TABLE_CELL_BOX_WHISKER_VALUES_BACKGROUND(new Color(0x0000FF)),
    TABLE_CELL_CALIBRATION_BACKGROUND(new Color(0xFFFFFF)),
    TABLE_CELL_CALIBRATION_BACKGROUND_CHANGED(new Color(0xFFFFA4)),
    TABLE_CELL_CALIBRATION_FOREGROUND(new Color(0x000000)),
    TABLE_CELL_CALIBRATION_FOREGROUND_SELECTED(new Color(0x0000FF)),
    TABLE_CELL_CHANGED_AND_COMMITTED(new Color(0xdeebdc)),
    TABLE_CELL_CHANGED_AND_UNCOMMITTED(new Color(0xe77471)),
    TABLE_CELL_CHANGED_BACKGROUND(new Color(0xFFFFD8)),
    TABLE_CELL_CHANGED_FOREGROUND(new Color(0x0000FF)),
    TABLE_CELL_COLOR_PENDING_BACKGROUND(new Color(0xC0C0C0)),
    TABLE_CELL_COLOR_UNKNOWN_BACKGROUND(new Color(0xff00ff)),
    TABLE_CELL_COLUMN_HEADER_BACKGROUND(new Color(0xC0C0C0)),
    TABLE_CELL_COLUMN_HEADER_FOREGROUND(new Color(0x000000)),
    TABLE_CELL_COLUMN_HEADER_ID_FOREGROUND(new Color(0xFFFFFF)),
    TABLE_CELL_CONFIG_ACTIVE_BACKGROUND(new Color(0xFFFF00)),
    TABLE_CELL_CONFIG_ACTIVE_FOREGROUND(new Color(0x000000)),
    TABLE_CELL_CONFIG_INACTIVE_BACKGROUND(new Color(0xFFFFFF)),
    TABLE_CELL_CONFIG_INACTIVE_FOREGROUND(new Color(0x000000)),
    TABLE_CELL_DASHED_BORDER(new Color(0x0000FF)),
    TABLE_CELL_DATE_BACKGROUND(new Color(193, 221, 243)),
    TABLE_CELL_DATE_BEFORE_TZERO_BACKGROUND(HtmlColor.WHEAT),
    TABLE_CELL_DATE_MIDNIGHT_BACKGROUND(HtmlColor.DARK_SEA_GREEN1),
    TABLE_CELL_DATE_TEXT(new Color(0x000000)),
    TABLE_CELL_DATE_TEXT_INVALID_DATE(new Color(0xFF0000)),
    TABLE_CELL_DISABLED_BACKGROUND(new Color(0x808080)),
    TABLE_CELL_EDITABLE_BACKGROUND(new Color(0xFFFFFF)),
    TABLE_CELL_EDITABLE_MISSING_BACKGROUND(new Color(0xfee8c6)),
    TABLE_CELL_FILES_FAILED_BACKGROUND(new Color(0xFF0000)),
    TABLE_CELL_FORECAST_EXPIRED_FOREGROUND(new Color(0xFF0000)),
    TABLE_CELL_FOREGROUND(UIManager.getColor("Table.foreground"), "Table.foreground"),
    TABLE_CELL_HEADER_BACKGROUND(new Color(0xece5c6)),
    TABLE_CELL_LINE_BORDER(new Color(0xFFFFFF)),
    TABLE_CELL_NEVER_IMPORTED_BACKGROUND(new Color(0xFF0000)),
    TABLE_CELL_NOT_EDITABLE_BACKGROUND(new Color(0xE6E6E6)),
    TABLE_CELL_RUNNING_BACKGROUND(new Color(0xD0F5A9)),
    TABLE_CELL_RUN_INFO_ROW_SELECTED_BACKGROUND(new Color(0xFFFFD8)),
    TABLE_CELL_SAVED_FOREGROUND(new Color(0xFF00FF)),
    TABLE_CELL_SELECTED_BACKGROUND(UIManager.getColor("Table.selectionBackground"), "Table.selectionBackground"),
    TABLE_CELL_SELECTED_FOREGROUND(UIManager.getColor("Table.selectionForeground"), "Table.selectionForeground"),
    TABLE_CELL_SELECTION_BORDER(new Color(0x0000FF)),
    TABLE_CELL_TIME_SERIES_BORDER(new Color(0x000000)),
GRID_DISPLAY_COMPASS_ROSE_LEFT_HALF    TABLE_ROW_TAB_BACKGROUND(new Color(0x0000000xFFFFFF)),
GRID_DISPLAY_COMPASS_ROSE_RIGHT_HALF(new Color(0xFFFFFF)),
GRID_DISPLAY_COMPONENT_BORDER    TEXT(new Color(0x000000), "text", "controlText", "infoText", "menuText", "textText", "activeCaptionText", "windowText"),
    TEXT_BACKGROUND(new Color(0x000000)),
GRID_DISPLAY_DEFAULT_CIRCLE_BORDER(new Color(0x000000)),
GRID_DISPLAY_EMPTY_IMAGE(new Color(0xFFFFFF)),
GRID_DISPLAY_SCALE_BAR_SEGMENT_EVEN(new Color(0x000000)),
GRID_DISPLAY_SCALE_BAR_SEGMENT_ODD(new Color(0xFFFFFF)),
GRID_DISPLAY_SELECTION_FOREGROUND(new Color(0x00FF00)),
GRID_DISPLAY_SELECTION_RECTANGLE(new Color(0x404040)),
GRID_DISPLAY_SKETCH_POINT(new Color(0x000000)),
GRID_DISPLAY_XOR_ALTERNATION(new Color(0xC0C0C0)),
GRID_EXCLUDED1(new Color(0x0000ff)),
GRID_EXCLUDED2(new Color(0xff0000)),
GRID_EXCLUDED3(new Color(0x43b7ba)),
LABEL_BACKGROUND(new Color(0xFFFFFF)),
LABEL_FOREGROUND(new Color(0x0000FF)),
LOCATION_RESULTS_BORDER(new Color(0x404040)),
LONGITUDINAL_VALUE_MARKER(new Color(0xf87a17)),
LOOKUP_RULE_DEFAULT(new Color(0x00ffff)),
MAP_LABEL_BACKGROUND(new Color(0x78FFFFFF, true)),
MAP_LABEL_CURRENT_TIME(new Color(0xFF0000)),
MAP_SELECTION_HIGHLIGHT(new Color(0x404040)),
MAP_SELECTION_HIGHLIGHT_ALTERNATE(new Color(0xC0C0C0)),
MAP_TRACK_CURRENT_TIME(new Color(0xFFFF00)),
MAP_TRACK_LINE(new Color(0xFF0000)),
MODEL_STATUS_FAILED_BACKGROUND(new Color(0xFF0000)),
MODEL_STATUS_RUNNING_BACKGROUND(new Color(0xFF00FF)),
MODEL_STATUS_SUCCESS_FULL_BACKGROUND(new Color(0x00FF00)),
MODEL_USER_PROFILE_BACKGROUND(new Color(0x00FF00)),
MODEL_VALUE_SET_BACKGROUND(new Color(0x00FF00)),
MODEL_VALUE_TUNED_BACKGROUND(new Color(0x87CEFA)),
MODIFIER_LOCKED(new Color(0x808080)),
ORIGINAL_VALUE_MARKER(new Color(0x0000FF)),
PANEL_BACKGROUND(new Color(0xFFFFFF)),
PCA_VALUE_MARKER(new Color(0xFF0000)),
PERCENTAGE_DOMAIN_MARKER(new Color(0x0000FF)),
PLOT_ANNOTATION_FOREGROUND(new Color(0x000000)),
PLOT_BACKGROUND(new Color(0xFFFFFF)),
PLOT_LABEL(new Color(0xFFFFFF)),
PLOT_LONGITUDINAL_MAXIMUM(new Color(0xFF0000)),
PLOT_LONGITUDINAL_MINIMUM(new Color(0x00FF00)),
PLOT_LONGITUDINAL_RIVER_BED(new Color(0x980517)),
PLOT_LONGITUDINAL_VALUE(new Color(0x0000FF)),
PLOT_LONGITUDINAL_VALUE_MARKER(new Color(0xf87a17)),
PLOT_SLIDE_BACKGROUND(new Color(0x404040)),
PLOT_TICK_LABEL(new Color(0xFFFFFF)),
PLOT_TICK_MARK(new Color(0xFFFFFF)),
PLOT_UNIT_INSIDE(new Color(0xFFFFFF)),
PLOT_UNIT_OUTSIDE(new Color(0x000000)),
PLOT_VISLAMO_AVERAGE_PRECIPITATION(new Color(0x0000FF)),
PLOT_VISLAMO_AVERAGE_TEMPERATURE(new Color(0x00FF00)),
PLOT_VISLAMO_CUMULATIVE_PRECIPITATION(new Color(0xFF0000)),
PLOT_VISLAMO_ZERO_DEGREES_TEMPERATURE(new Color(0xFF0000)),
POLYGON(new Color(0x00FFFF)),
POLYGON_SELECTED(new Color(0x500000ff, true)),
RAIN_DOMAIN_MARKER(new Color(0xFFFF00)),
SCALAR_PLOT_MARKER(new Color(0x000000)),
SCATTER_PLOT_SELECTION_BACKGROUND(new Color(0x0000FF)),
SCENARIO_EDITOR_DIALOG_BACKGROUND(new Color(0xFF0000)),
SCENARIO_EDITOR_TITLE_BACKGROUND(new Color(0xC0C0C0)),
SELECTION_BORDER_BACKGROUND(new Color(0x808080)),
SHAPE_DEFAULT_BACKGROUND(new Color(0, true)),
SHAPE_FILL_COLOR(new Color(0xFF0000)),
SHAPE_ICON_FILL(new Color(0xFFFFFF)),
SHAPE_ICON_LINE(new Color(0xFFFFFF)),
SLIDER_PANEL_BACKGROUND_CHANGED(new Color(0xFFFF00)),
STATISTICS_XY_EDITABLE(new Color(0x00FFFF)),
STATISTICS_XY_NON_EDITABLE(new Color(0xE6E6E6)),
STATUS_BAR_CAPACITY(new Color(0xaddfff)),
STATUS_BAR_CAPACITY_WARNING(new Color(0xFF0000)),
STATUS_BAR_CONNECTING(new Color(0xFF0000)),
STATUS_BAR_FAILOVER(new Color(0xFFC800)),
STATUS_BAR_FOREGROUND(new Color(0x000000)),
STATUS_BAR_INDEXING_BACKGROUND(new Color(0xFF00FF)),
STATUS_BAR_LABEL_HOVER_COLOR(new Color(0x0000FF)),
STATUS_BAR_LOGGED_OFF(new Color(0xFF0000)),
STATUS_BAR_LOGGED_ON(new Color(0x00FF00)),
STATUS_BAR_OK_FOREGROUND(new Color(0x0000FF)),
STATUS_BAR_PROGRESS(new Color(0xaddfff)),
STATUS_BAR_PROGRESS_OC(new Color(0xFF0000)),
STATUS_BAR_ROLLING_BARREL(new Color(0xf75431)),
STATUS_BAR_SYNCHRONISING(new Color(0xFF00FF)),
STATUS_BAR_TIME_PAUZED_BACKGROUND(new Color(0xF79F81)),
TABLE_BACKGROUND(new Color(0xFFFFFF)),
TABLE_CELL_BACKGROUND(new Color(0xFFFFFF)),
TABLE_CELL_BOX_WHISKER_CATEGORY_BACKGROUND(new Color(0x00FFFF)),
TABLE_CELL_BOX_WHISKER_VALUES_BACKGROUND(new Color(0x0000FF)),
TABLE_CELL_CALIBRATION_BACKGROUND(new Color(0xFFFFFF)),
TABLE_CELL_CALIBRATION_BACKGROUND_CHANGED(new Color(0xFFFFA4)),
TABLE_CELL_CALIBRATION_FOREGROUND(new Color(0x000000)),
TABLE_CELL_CALIBRATION_FOREGROUND_SELECTED(new Color(0x0000FF)),
TABLE_CELL_CHANGED_AND_COMMITTED(new Color(0xdeebdc)),
TABLE_CELL_CHANGED_AND_UNCOMMITTED(new Color(0xe77471)),
TABLE_CELL_CHANGED_BACKGROUND(new Color(0xFFFFD8)),
TABLE_CELL_CHANGED_FOREGROUND(new Color(0x0000FF)),
TABLE_CELL_COLOR_PENDING_BACKGROUND(new Color(0xC0C0C0)),
TABLE_CELL_COLOR_UNKNOWN_BACKGROUND(new Color(0xff00ff)),
TABLE_CELL_COLUMN_HEADER_BACKGROUND(new Color(0xC0C0C0)),
TABLE_CELL_COLUMN_HEADER_FOREGROUND(new Color(0x000000)),
TABLE_CELL_COLUMN_HEADER_ID_FOREGROUND(new Color(0xFFFFFF)),
TABLE_CELL_CONFIG_ACTIVE_BACKGROUND(new Color(0xFFFF00)),
TABLE_CELL_CONFIG_ACTIVE_FOREGROUND(new Color(0x000000)),
TABLE_CELL_CONFIG_INACTIVE_BACKGROUND(new Color(0xFFFFFF)),
TABLE_CELL_CONFIG_INACTIVE_FOREGROUND(new Color(0x000000)),
TABLE_CELL_DASHED_BORDER(new Color(0x0000FF)),
TABLE_CELL_DATE_BACKGROUND(new Color(0x00FFFF)),
TABLE_CELL_DATE_BEFORE_TZERO_BACKGROUND(new Color(0x00C8FF)),
TABLE_CELL_DATE_MIDNIGHT_BACKGROUND(new Color(0x00FF00)),
TABLE_CELL_DATE_TEXT(new Color(0x000000)),
TABLE_CELL_DATE_TEXT_INVALID_DATE(new Color(0xFF0000)),
TABLE_CELL_DISABLED_BACKGROUND(new Color(0x808080)),
TABLE_CELL_EDITABLE_BACKGROUND(new Color(0xFFFFFF)),
TABLE_CELL_EDITABLE_MISSING_BACKGROUND(new Color(0xfee8c6)),
TABLE_CELL_FORECAST_EXPIRED_FOREGROUND(new Color(0xFF0000)),
TABLE_CELL_FOREGROUND(new Color(0x000000)),
TABLE_CELL_HEADER_BACKGROUND(new Color(0xece5c6)),
TABLE_CELL_LINE_BORDER(new Color(0xFFFFFF)),
TABLE_CELL_NEVER_IMPORTED_BACKGROUND(new Color(0xFF0000)),
TABLE_CELL_NOT_EDITABLE_BACKGROUND(new Color(0xE6E6E6)),
TABLE_CELL_RUNNING_BACKGROUND(new Color(0x00ff00)),
TABLE_CELL_RUN_INFO_ROW_SELECTED_BACKGROUND(new Color(0xFFFFD8)),
TABLE_CELL_SAVED_FOREGROUND(new Color(0xFF00FF)),
TABLE_CELL_SELECTED_BACKGROUND(new Color(0xC0C0C0)),
TABLE_CELL_SELECTED_FOREGROUND(new Color(0x000000)),
TABLE_CELL_SELECTION0xFFFFFF), "FormattedTextField.background", "TableHeader.background", "Tree.background", "List.background", "Tree:TreeCell[Enabled+Focused].background", "Tree:TreeCell[Enabled].background", "textBackground", "Tree.textBackground", "Tree.textBackground", "TextField.background", "TextPane.background", "EditorPane.background", "TextArea.background", "PasswordField.background", "ComboBox.background"),
    TEXT_BORDER(Color.LIGHT_GRAY),
    TEXT_DISABLED(new Color(0x8E8F91), "textInactiveText", "TextField.disabledText", "TextPane.disabledText", "TextArea.disabledText", "FormattedTextField.disabledText", "InternalFrameTitlePane.disabledText", "inactiveCaptionText", "ScrollBarTrack.disabledText", "SliderTrack.disabledText", "Slider.disabledText", "DesktopPane.disabledText", "InternalFrame.disabledText", "SplitPane.disabledText", "OptionPane.disabledText", "ToolBar.disabledText", "Table.disabledText", "Tree.disabledText", "ColorChooser.disabledText", "ScrollBarThumb.disabledText", "TabbedPane.disabledText", "ComboBox.disabledText", "PopupMenuSeparator.disabledText", "DesktopIcon.disabledText", "PopupMenu.disabledText", "ArrowButton.disabledText", "Separator.disabledText", "Spinner.disabledText", "ScrollPane.disabledText", "ScrollBar.disabledText", "Panel.disabledText", "RootPane.disabledText", "SliderThumb.disabledText", "MenuBar.disabledText", "TableHeader.disabledText", "Viewport.disabledText", "FileChooser.disabledText", "ToolTip.disabledText", "CheckBoxMenuItem.disabledText", "RadioButton.disabledText", "CheckBox.disabledText", "RadioButtonMenuItem.disabledText", "nimbusDisabledText", "Menu.disabledText", "ToggleButton.disabledText", "MenuItem.disabledText", "Button.disabledText", "EditorPane.disabledText", "List.disabledText", "ProgressBar.disabledText", "Label.disabledText", "PasswordField.disabledText"),
    TEXT_FOREGROUND(new Color(0x232324), "InternalFrame:InternalFrameTitlePane[Enabled].textForeground", "MenuBar:Menu[Enabled].textForeground", "MenuItem[Enabled].textForeground", "Table.textForeground", "Menu[Enabled].textForeground", "CheckBoxMenuItem[Enabled].textForeground", "RadioButtonMenuItem[Enabled].textForeground", "Tree.textForeground", "textForeground", "Tree.textForeground", "ToolBarSeparator.textForeground"),
    TEXT_FOREGROUND_DISABLED(new Color(0x8E8F91), "ToggleButton[Disabled+Selected].textForeground", "ToolBar:ToggleButton[Disabled+Selected].textForeground", "List:\"List.cellRenderer\"[Disabled].textForeground", "ComboBox:\"ComboBox.listRenderer\"[Disabled].textForeground", "List[Disabled].textForeground", "Menu[Disabled].textForeground", "Tree:\"Tree.cellRenderer\"[Disabled].textForeground", "ComboBox:\"ComboBox.textField\"[Disabled].textForeground", "ToggleButton[Disabled].textForeground", "MenuItem:MenuItemAccelerator[Disabled].textForeground", "RadioButtonMenuItem[Disabled].textForeground", "Label[Disabled].textForeground", "TextArea[Disabled].textForeground", "TextPane[Disabled].textForeground", "TextArea[Disabled+NotInScrollPane].textForeground", "RadioButton[Disabled].textForeground", "CheckBox[Disabled].textForeground", "TabbedPane:TabbedPaneTab[Disabled].textForeground", "TextField[Disabled].textForeground", "ComboBox:\"ComboBox.renderer\"[Disabled].textForeground", "Button[Disabled].textForeground", "CheckBoxMenuItem[Disabled].textForeground", "Spinner:Panel:\"Spinner.formattedTextField\"[Disabled].textForeground", "MenuItem[Disabled].textForeground", "MenuBar:Menu[Disabled].textForeground", "FormattedTextField[Disabled].textForeground", "\"Tree.cellEditor\"[Disabled].textForeground", "EditorPane[Disabled].textForeground", "ProgressBar[Disabled].textForeground", "PasswordField[Disabled].textForeground", "\"Table.editor\"[Disabled].textForeground"),
    TEXT_HIGHLIGHT(new Color(0x39698A), "textHighlight"),
    TEXT_HYPERLINK(new Color(0x0000EE)),
    TEXT_SELECTED(new Color(0xFFFFFF), "MenuBar:Menu[Selected].textForeground", "ComboBox:\"ComboBox.listRenderer\"[Selected].textForeground", "TextField[Selected].textForeground", "EditorPane[Selected].textForeground", "TabbedPane:TabbedPaneTab[Focused+Pressed+Selected].textForeground", "Spinner:Panel:\"Spinner.formattedTextField\"[Focused+Selected].textForeground", "List[Selected].textForeground", "Menu[Enabled+Selected].textForeground", "Tree:TreeCell[Enabled+Selected].textForeground", "ComboBox:\"ComboBox.textField\"[Selected].textForeground", "\"Table.editor\"[Selected].textForeground", "ComboBox:\"ComboBox.renderer\"[Selected].textForeground", "TabbedPane:TabbedPaneTab[Pressed+Selected].textForeground", "RadioButtonMenuItem[MouseOver+Selected].textForeground", "PasswordField[Selected].textForeground", "CheckBoxMenuItem[MouseOver+Selected].textForeground", "Table[Enabled+Selected].textForeground", "TextPane[Selected].textForeground", "TextArea[Selected].textForeground", "Spinner:Panel:\"Spinner.formattedTextField\"[Selected].textForeground", "FormattedTextField[Selected].textForeground", "Tree:TreeCell[Focused+Selected].textForeground", "\"Tree.cellEditor\"[Selected].textForeground", "CheckBoxMenuItem:MenuItemAccelerator[MouseOver].textForeground", "MenuItem:MenuItemAccelerator[MouseOver].textForeground", "RadioButtonMenuItem[MouseOver].textForeground", "RadioButtonMenuItem:MenuItemAccelerator[MouseOver].textForeground", "MenuItem[MouseOver].textForeground", "Menu:MenuItemAccelerator[MouseOver].textForeground", "CheckBoxMenuItem[MouseOver].textForeground", "Button[Default+Pressed].textForeground", "nimbusSelectedText"),
    THRESHOLD_ATTRIBUTE_MISSING_VALUE(new Color(0xFFFFC8)),
    THRESHOLD_ATTRIBUTE_NO_CROSSING(new Color(0x00FF00)),
    THRESHOLD_DEFAULT_CLASS_BREAK(new Color(0xFFFFFF)),
    THRESHOLD_SKILL_SCORE_MATCHING(new Color(0x00FF00)),
    THRESHOLD_SKILL_SCORE_MISSING_FORECAST(new Color(0xFFFF00)),
    THRESHOLD_SKILL_SCORE_MISSING_OBSERVED(new Color(0xFFC800)),
    THRESHOLD_SKILL_SCORE_MISSING_OBSERVED_NO_FALSE_ALARM(new Color(0xFFFFC8)),
    THUMB(new Color(0xE0E0E0), "ScrollBar.thumb", "ScrollBar.thumbHighlight", "ScrollBar.thumbDarkShadow", "ScrollBar.thumbShadow"),
    THUMBNAIL_DIALOG_LINE_BORDER(new Color(0x0000FF)),
TABLE_CELL_TIME_SERIES_BORDER    TICK(new Color(0x000000)0x232830), "Slider.tickColor"),
TABLE_ROW_TAB_BACKGROUND(new Color(0xFFFFFF)),
TEXT_BORDER    TIME_NAVIGATION_START_DAY(new Color(0x000000)),
THRESHOLD_ATTRIBUTE_MISSING_VALUE    TIME_SERIES_CALIBRATION_LABEL_FOREGROUND(new Color(0xFFFFC80xFF0000)),
THRESHOLD_ATTRIBUTE_NO_CROSSING    TIME_SERIES_COMPARE1(new Color(0x00FF00)),
THRESHOLD_DEFAULT_CLASS_BREAK    TIME_SERIES_COMPARE2(new Color(0xFFFFFF0xFF0000)),
THRESHOLD_SKILL_SCORE_MATCHING    TIME_SERIES_DEFAULT(new Color(0x00FF000x808080)),
THRESHOLD_SKILL_SCORE_MISSING_FORECAST    TIME_SERIES_DIALOG_COLUMN_HEADER_COLOR(new Color(0xFFFF000xFFFFFF)),
THRESHOLD_SKILL_SCORE_MISSING_OBSERVED    TIME_SERIES_FILTERED_BACKGROUND(new Color(0xFFC8000xaddfff)),
THRESHOLD_SKILL_SCORE_MISSING_OBSERVED_NO_FALSE_ALARM    TIME_SERIES_GROUP_BASIS_STATISTICS(new Color(0xFFFFC80x0000ff)),
THUMBNAIL_DIALOG_LINE_BORDER    TIME_SERIES_GROUP_COMPLETED_DOUBTFUL(new Color(0x0000FF0x8a4117)),
    TIME_SERIES_NAVIGATIONGROUP_STARTCOMPLETED_DAYRELIABLE(new Color(0x0000000x3ea99f)),
    TIME_SERIES_CALIBRATIONGROUP_LABELCOMPLETED_FOREGROUNDUNRELIABLE(new Color(0xFF00000x800517)),
    TIME_SERIES_GROUP_COMPARE1CORRECTED_DOUBTFUL(new Color(0x00FF000xfa9b3c)),
    TIME_SERIES_GROUP_CORRECTED_COMPARE2RELIABLE(new Color(0xFF00000x00ff00)),
    TIME_SERIES_GROUP_CORRECTED_DEFAULTUNRELIABLE(new Color(0x8080800xf75431)),
    TIME_SERIES_DIALOGGROUP_COLUMNFLAG_HEADER_COLORCOMPARISON(new Color(0xFFFFFF0x152dc6)),

    TIME_SERIES_FILTEREDGROUP_BACKGROUNDGENERAL(new Color(0xaddfff0x736f6e)),
    TIME_SERIES_GROUP_BASISHARD_STATISTICSMAX(new Color(0x0000ff0xe57ded)),
    TIME_SERIES_GROUP_COMPLETEDHARD_DOUBTFULMIN(new Color(0x8a41170x4e387e)),
    TIME_SERIES_GROUP_COMPLETED_RELIABLEMISSING(new Color(0x3ea99f0x8e35ef)),
    TIME_SERIES_GROUP_COMPLETEDORIGINAL_UNRELIABLEDOUBTFUL(new Color(0x8005170xf87a17)),
    TIME_SERIES_GROUP_CORRECTEDORIGINAL_DOUBTFULRELIABLE(new Color(0xfa9b3c0x41a317)),
    TIME_SERIES_GROUP_CORRECTEDORIGINAL_RELIABLEUNRELIABLE(new Color(0x00ff000xff0000)),
    TIME_SERIES_GROUP_CORRECTEDRATE_OF_UNRELIABLECHANGE(new Color(0xf754310x3ea99f)),
    TIME_SERIES_GROUP_FLAGSAME_COMPARISONREADING(new Color(0x152dc60xe57ded)),
    TIME_SERIES_GROUP_SERIES_GENERALCOMPARISON(new Color(0x736f6e0x736aff)),
,
    TIME_SERIES_GROUP_HARDSOFT_MAX(new Color(0xe57ded0x8467d7)),
    TIME_SERIES_GROUP_HARDSOFT_MIN(new Color(0x4e387e0x8e35ef)),
    TIME_SERIES_GROUP_MISSINGSPATIAL_HOMOGENEITY(new Color(0x8e35ef0x4863a0)),
    TIME_SERIES_GROUP_ORIGINALTEMPORARY_DOUBTFULSHIFT(new Color(0xf87a170x82cafa)),
    TIME_SERIES_GROUP_ORIGINAL_RELIABLEHYDROGRAPH(new Color(0x41a3170x0000FF)),
    TIME_SERIES_GROUPHYDROGRAPH_ORIGINAL_UNRELIABLEMODIFIED(new Color(0xff00000xFF0000)),
    TIME_SERIES_GROUPLISTER_RATECONSTANT_OF_CHANGEBACKGROUND(new Color(0x3ea99f0xecd872)),
    TIME_SERIES_GROUPLISTER_SAMEWARNING_READINGFOREGROUND(new Color(0xe57ded0xFF0000)),
    TIME_SERIES_GROUP_SERIES_COMPARISONSELECTED_BACKGROUND(new Color(0xedebcb)),
    TITLE(new Color(0x736aff)0x3B3B3B), "TitledBorder.titleColor"),
TIME_SERIES_GROUP_SOFT_MAX    TITLE_BORDER_DISABLED(new Color(0x8467d70x808080)),
TIME_SERIES_GROUP_SOFT_MIN    TOOL_SCROLL_BAR_UI_BACK_END(new Color(0x8e35ef)0xFFF4CC), "Color.TOOL_SCROLL_BAR_UI_BCK_END"),
TIME_SERIES_GROUP_SPATIAL_HOMOGENEITY    TOOL_SCROLL_BAR_UI_BACK_START(new Color(0x4863a00xFFD497)),
TIME_SERIES_GROUP_TEMPORARY_SHIFT(new Color(0x82cafa)),
TIME_SERIES_HYDROGRAPH, "Color.TOOL_SCROLL_BAR_UI_BCK_START"),
    TOOL_TIP_BACKGROUND(new Color(0x0000FF)0xFFFFCC), "ToolTip.background"),
TIME_SERIES_HYDROGRAPH_MODIFIED    TRACK(new Color(0xFF0000)0xFFFFFF),
TIME_SERIES_LISTER_CONSTANT_BACKGROUND(new Color(0xecd872)),
TIME_SERIES_LISTER_WARNING "ScrollBar.track"),
    TRACK_FOREGROUND(new Color(0xFF0000)0xC8C8C8), "ScrollBar.trackForeground"),
TIME_SERIES_SELECTED_BACKGROUND    TRACK_HIGHLIGHT(new Color(0xedebcb)),
TITLE_BORDER_DISABLED0x000000), "ScrollBar.trackHighlight"),
    TRACK_HIGHLIGHT_FOREGROUND(new Color(0x808080)0x404040), "ScrollBar.trackHighlightForeground"),
    VALUE_ABOVE_DETECTION_RANGE_BACKGROUND(new Color(0xFF2C710B)),
    VALUE_AUTOMATICALLY_COMPLETED_BACKGROUND(new Color(0xFF00FF)), //this background color is not used so far
    VALUE_AUTOMATICALLY_COMPLETED_FOREGROUND(new Color(0xFF8000800xFF00FF)),
    VALUE_AUTOMATICALLY_CORRECTED_BACKGROUND(new Color(0xFF3333FF)), //this background color is not used so far
    VALUE_AUTOMATICALLY_CORRECTED_FOREGROUND(new Color(0xFF0000A00xFF3333FF)),
    VALUE_BELOW_DETECTION_RANGE_BACKGROUND(new Color(0x00FF00)),
    VALUE_DOUBTFUL_BACKGROUND(new Color(0xFFC800)),
    VALUE_DRIED_BACKGROUND(new Color(0xFF00FF)),
    VALUE_HAS_COMMENT_MARKER_BACKGROUND(new Color(0xFF0000)),
    VALUE_ICE_BACKGROUND(new Color(0x0000FF)), //190
    VALUE_INUNDATED_BACKGROUND(new Color(0xFF0000)),
,
    VALUE_MANUAL_COMPLETED_BACKGROUND(new Color(0xFF800080)), //this background color is not used so far
    VALUE_MANUAL_COMPLETED_FOREGROUND(new Color(0xFF00FF0xFF800080)),
    VALUE_MANUAL_CORRECTED_BACKGROUND(new Color(0xFF0000A0)), //this background color is not used so far
    VALUE_MANUAL_CORRECTED_FOREGROUND(new Color(0xFF3333FF0xFF0000A0)),
    VALUE_MISSING_BACKGROUND(new Color(0xFFFFFF)),
    VALUE_MODIFIED_BACKGROUND(new Color(0xFF0000)),
    VALUE_NORMAL_BACKGROUND(new Color(0x3ea99f)),
    VALUE_PERSISTENT_UNRELIABLE_BACKGROUND(new Color(0xe18b6b)),
    VALUE_SOURCE_CYCLIC_FOREGROUND(new Color(0x808080)),
    VALUE_UNMODIFIED_BACKGROUND(new Color(0x3ea99f)),
    VALUE_UNRELIABLE_BACKGROUND(new Color(0xFFFF00)),
    WATER_COACH_BORDER(new Color(0xFFFF00)),
ZOOM_SELECTION_BACKGROUND    WINDOW(new Color(0x808080)0xFFFFFF), "window"),
    WINDOW_BUTTON_BACKGROUND_ACTIVE_END(new Color(0xFFF4CC), "Color.RAB_BACKGROUND_ACTIVE_END"),
    WINDOW_BUTTON_BACKGROUND_ACTIVE_START(new Color(0xFFD497), "Color.RAB_BACKGROUND_ACTIVE_START"),
    WINDOW_BUTTON_BACKGROUND_INACTIVE(new Color(0xF7F3EF), "Color.RAB_BACKGROUND_INACTIVE"),
    WINDOW_BUTTON_FOREGROUND(new Color(0x000000), "Color.RAB_FOREGROUND"),
    WINDOW_BUTTON_FOREGROUND_UNAVAILABLE(new Color(0x808080), "Color.RAB_FOREGROUND_UNAVAILABLE"),
    WINDOW_BUTTON_MOUSE_IN_BORDER(new Color(0x000000), "Color.RAB_MOUSE_IN_BORDER"),
    WINDOW_BUTTON_MOUSE_OUT_BORDER(new Color(0x808080), "Color.RAB_MOUSE_OUT_BORDER"),
TOOL_SCROLL_BAR_UI_BACK_END(new Color(0xFFF4CC), "Color.TOOL_SCROLL_BAR_UI_BCK_END"),
TOOL_SCROLL_BAR_UI_BACK_START(new Color(0xFFD497), "Color.TOOL_SCROLL_BAR_UI_BCK_START"),
WINDOW_TITLE_BAR_BACKGROUND_ACTIVE_END(new Color(0x607BB7), "Color.TWTB_BACKGROUND_ACTIVE_END"),

    WINDOW_TITLE_BAR_BACKGROUND_ACTIVE_START(new Color(0x91B5FF), "Color.TWTB_BACKGROUND_ACTIVE_START"),
    WINDOW_TITLE_BAR_BACKGROUND_INACTIVE_END(new Color(0xA7A49D), "Color.TWTB_BACKGROUND_INACTIVE_END"),
    WINDOW_TITLE_BAR_BACKGROUND_INACTIVE_START(new Color(0xC1BDB6), "Color.TWTB_BACKGROUND_INACTIVE_START"),
    WINDOW_TITLE_BAR_ID_BACKGROUND_GRADIENT_TOPACTIVE(new Color(0xFFFFFF0xB7C8E8), "Color.TWTB_ID_BACKGROUND_GRADIENT_TOPACTIVE"),
    WINDOW_TITLE_BAR_ID_BACKGROUND_ACTIVEANIMATING(new Color(0xB7C8E80xC0C0C0), "Color.TWTB_ID_BACKGROUND_ACTIVEANIMATING"),
    WINDOW_TITLE_BAR_ID_BACKGROUND_FLASHING_ANIMATINGONE(new Color(0xC0C0C0), "Color.TWTB_ID_BACKGROUND_FLASHING_ANIMATING1"),
    WINDOW_TITLE_BAR_ID_BACKGROUND_FLASHING_ZERO(new Color(0xB7C8E8), "Color.TWTB_ID_BACKGROUND_FLASHING_0"),
    WINDOW_TITLE_BAR_ID_BACKGROUND_FLASHINGGRADIENT_ONETOP(new Color(0xC0C0C00xFFFFFF), "Color.TWTB_ID_BACKGROUND_FLASHINGGRADIENT_1TOP"),
    WINDOW_TITLE_BAR_ID_BACKGROUND_INACTIVE(new Color(0xC0C0C0), "Color.TWTB_ID_BACKGROUND_INACTIVE"),
    WINDOW_TITLE_BAR_ID_FOREGROUND_ACTIVE(new Color(0x000000), "Color.TWTB_ID_FOREGROUND_ACTIVE"),
    WINDOW_TITLE_BAR_ID_FOREGROUND_INACTIVE(new Color(0x808080), "Color.TWTB_ID_FOREGROUND_INACTIVE"),
    WINDOW_TITLE_BAR_TAB_FOREGROUND_SELECTED(new Color(0xFFFFFF), "Color.TWTB_TAB_FOREGROUND_SELECTED"),
    WINDOW_TITLE_BAR_TAB_FOREGROUND_UNSELECTED(new Color(0xD4D4D4), "Color.TWTB_TAB_FOREGROUND_UNSELECTED"),
    ZOOM_SELECTION_BACKGROUND(new Color(0x808080));
}