mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-11 22:47:13 -06:00
Compare commits
30 Commits
fonts/robo
...
3.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
01c830ad92 | ||
|
|
dce4f4623c | ||
|
|
d530624362 | ||
|
|
2e878b62d1 | ||
|
|
d27a246dfe | ||
|
|
778def118a | ||
|
|
bc5587477b | ||
|
|
03a775cd31 | ||
|
|
875083a924 | ||
|
|
f6fc925c9e | ||
|
|
74e1972781 | ||
|
|
2f5c54bb49 | ||
|
|
465798ee3d | ||
|
|
425f3acced | ||
|
|
546382e471 | ||
|
|
7e91d78633 | ||
|
|
136e1e4e30 | ||
|
|
f5f6850172 | ||
|
|
28cdde3f17 | ||
|
|
29b801e13d | ||
|
|
1435469ee5 | ||
|
|
4a0bd2c09f | ||
|
|
f8d67f863f | ||
|
|
0291dd5416 | ||
|
|
9014435d4d | ||
|
|
07ad467c73 | ||
|
|
35e23574cf | ||
|
|
9b62b8395f | ||
|
|
45e7022deb | ||
|
|
32dce16363 |
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
@@ -24,10 +24,11 @@ jobs:
|
||||
- 8
|
||||
- 11 # LTS
|
||||
- 17 # LTS
|
||||
- 19
|
||||
toolchain: [""]
|
||||
include:
|
||||
- java: 17
|
||||
toolchain: 19 # latest
|
||||
# include:
|
||||
# - java: 17
|
||||
# toolchain: 19 # latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
35
CHANGELOG.md
35
CHANGELOG.md
@@ -1,12 +1,25 @@
|
||||
FlatLaf Change Log
|
||||
==================
|
||||
|
||||
## 3.1-SNAPSHOT
|
||||
## 3.1
|
||||
|
||||
#### New features and improvements
|
||||
|
||||
- Fonts: Added **Roboto
|
||||
Mono** (https://fonts.google.com/specimen/Roboto+Mono). (PR #639, issue #638)
|
||||
- Windows 11: Popups (`JPopupMenu`, `JComboBox`, `JToolTip`, etc.) now use
|
||||
native Windows 11 rounded borders and drop shadows.
|
||||
- Fonts:
|
||||
- Added **Roboto Mono** (https://fonts.google.com/specimen/Roboto+Mono). (PR
|
||||
#639, issue #638)
|
||||
- Updated **JetBrains Mono** to
|
||||
[v2.304](https://github.com/JetBrains/JetBrainsMono/releases/tag/v2.304).
|
||||
- Theme Editor: Support macOS light and dark themes.
|
||||
- TabbedPane: Support hover and focused tab foreground colors. (issue #627)
|
||||
- TabbedPane: `tabbedPane.getBackgroundAt(tabIndex)` now has higher priority
|
||||
than `TabbedPane.focusColor` and `TabbedPane.selectedBackground`. If
|
||||
`tabbedPane.setBackgroundAt(tabIndex)` is used to set a color for a single
|
||||
tab, then this color is now used even if the tab is focused or selected.
|
||||
- TableHeader: Support column hover and pressed background and foreground
|
||||
colors. (issue #636)
|
||||
|
||||
#### Fixed bugs
|
||||
|
||||
@@ -15,11 +28,27 @@ FlatLaf Change Log
|
||||
decorations are used (e.g. Windows 10/11) or not (e.g. macOS). Now the glass
|
||||
pane no longer overlaps the FlatLaf window title bar. (issue #630)
|
||||
- Linux: Fixed broken window resizing on multi-screen setups. (issue #632)
|
||||
- Linux: Fixed behavior of maximize/restore button when tiling window to left
|
||||
or right half of screen. (issue #647)
|
||||
- IntelliJ Themes:
|
||||
- Fixed default button hover background in "Solarized Light" theme. (issue
|
||||
#628)
|
||||
- Avoid that accent color affect some colors in some IntelliJ themes. (issue
|
||||
#625)
|
||||
- Updated "Hiberbee Dark" and "Material Theme UI Lite" themes.
|
||||
- Styling: Fixed resolving of UI variables in styles that use other variables.
|
||||
- MenuItem: Fixed horizontal alignment of icons. (issue #631)
|
||||
- Table: Fixed potential performance issue with paint cell focus indicator
|
||||
border. (issue #654)
|
||||
- Tree: Fixed missing custom closed/opened/leaf icons of a custom
|
||||
`DefaultTreeCellRenderer`. (issue #653; regression since implementing PR #609
|
||||
in FlatLaf 3.0)
|
||||
- Tree: Fixed truncated node text and too small painted non-wide node background
|
||||
if custom cell renderer sets icon, but not disabled icon, and tree is
|
||||
disabled. (issue #640)
|
||||
- Fixed `HiDPIUtils.paintAtScale1x()`, which painted at wrong location if
|
||||
graphics is rotated, is scaled and `x` or `y` parameters are not zero. (issue
|
||||
#646)
|
||||
|
||||
|
||||
## 3.0
|
||||
|
||||
@@ -14,8 +14,8 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
val releaseVersion = "3.0"
|
||||
val developmentVersion = "3.1-SNAPSHOT"
|
||||
val releaseVersion = "3.1"
|
||||
val developmentVersion = "3.2-SNAPSHOT"
|
||||
|
||||
version = if( rootProject.hasProperty( "release" ) ) releaseVersion else developmentVersion
|
||||
|
||||
|
||||
@@ -15,10 +15,13 @@
|
||||
*/
|
||||
|
||||
|
||||
open class NativeArtifact( val fileName: String, val classifier: String, val type: String ) {}
|
||||
|
||||
open class PublishExtension {
|
||||
var artifactId: String? = null
|
||||
var name: String? = null
|
||||
var description: String? = null
|
||||
var nativeArtifacts: List<NativeArtifact>? = null
|
||||
}
|
||||
|
||||
val extension = project.extensions.create<PublishExtension>( "flatlafPublish" )
|
||||
@@ -71,6 +74,15 @@ publishing {
|
||||
url.set( "https://github.com/JFormDesigner/FlatLaf/issues" )
|
||||
}
|
||||
}
|
||||
|
||||
afterEvaluate {
|
||||
extension.nativeArtifacts?.forEach {
|
||||
artifact( artifacts.add( "archives", file( it.fileName ) ) {
|
||||
classifier = it.classifier
|
||||
type = it.type
|
||||
} )
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import Flatlaf_publish_gradle.NativeArtifact
|
||||
|
||||
plugins {
|
||||
`java-library`
|
||||
`flatlaf-toolchain`
|
||||
@@ -123,4 +125,11 @@ flatlafPublish {
|
||||
artifactId = "flatlaf"
|
||||
name = "FlatLaf"
|
||||
description = "Flat Look and Feel"
|
||||
|
||||
val natives = "src/main/resources/com/formdev/flatlaf/natives"
|
||||
nativeArtifacts = listOf(
|
||||
NativeArtifact( "${natives}/flatlaf-windows-x86.dll", "windows-x86", "dll" ),
|
||||
NativeArtifact( "${natives}/flatlaf-windows-x86_64.dll", "windows-x86_64", "dll" ),
|
||||
NativeArtifact( "${natives}/libflatlaf-linux-x86_64.so", "linux-x86_64", "so" ),
|
||||
)
|
||||
}
|
||||
|
||||
@@ -268,6 +268,25 @@ public interface FlatClientProperties
|
||||
|
||||
//---- Popup --------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Specifies the popup border corner radius if the component is shown in a popup
|
||||
* or if the component is the owner of another component that is shown in a popup.
|
||||
* <p>
|
||||
* Note that this is not available on all platforms since it requires special support.
|
||||
* Supported platforms:
|
||||
* <p>
|
||||
* <strong>Windows 11</strong> (x86 or x86_64): Only two corner radiuses are supported
|
||||
* by the OS: {@code DWMWCP_ROUND} is 8px and {@code DWMWCP_ROUNDSMALL} is 4px.
|
||||
* If this value is {@code 1 - 4}, then {@code DWMWCP_ROUNDSMALL} is used.
|
||||
* If it is {@code >= 5}, then {@code DWMWCP_ROUND} is used.
|
||||
* <p>
|
||||
* <strong>Component</strong> {@link javax.swing.JComponent}<br>
|
||||
* <strong>Value type</strong> {@link java.lang.Integer}<br>
|
||||
*
|
||||
* @since 3.1
|
||||
*/
|
||||
String POPUP_BORDER_CORNER_RADIUS = "Popup.borderCornerRadius";
|
||||
|
||||
/**
|
||||
* Specifies whether a drop shadow is painted if the component is shown in a popup
|
||||
* or if the component is the owner of another component that is shown in a popup.
|
||||
|
||||
@@ -334,7 +334,7 @@ class UIDefaultsLoader
|
||||
if( newValue == null )
|
||||
throw new IllegalArgumentException( "variable '" + value + "' not found" );
|
||||
|
||||
return newValue;
|
||||
return resolveValueFromUIManager( newValue );
|
||||
}
|
||||
|
||||
if( !value.startsWith( PROPERTY_PREFIX ) )
|
||||
|
||||
@@ -301,7 +301,8 @@ public class FlatListUI
|
||||
// get renderer component
|
||||
@SuppressWarnings( "unchecked" )
|
||||
Component rendererComponent = cellRenderer.getListCellRendererComponent( list,
|
||||
dataModel.getElementAt( row ), row, isSelected, list.hasFocus() && (row == leadIndex) );
|
||||
dataModel.getElementAt( row ), row, isSelected,
|
||||
FlatUIUtils.isPermanentFocusOwner( list ) && (row == leadIndex) );
|
||||
|
||||
//
|
||||
boolean isFileList = Boolean.TRUE.equals( list.getClientProperty( "List.isFileList" ) );
|
||||
|
||||
@@ -456,10 +456,11 @@ debug*/
|
||||
return;
|
||||
|
||||
// center because the real icon may be smaller than dimension in iconRect
|
||||
int x = iconRect.x + centerOffset( iconRect.width, icon.getIconWidth() );
|
||||
int y = iconRect.y + centerOffset( iconRect.height, icon.getIconHeight() );
|
||||
|
||||
// paint
|
||||
icon.paintIcon( menuItem, g, iconRect.x, y );
|
||||
icon.paintIcon( menuItem, g, x, y );
|
||||
}
|
||||
|
||||
protected static void paintText( Graphics g, JMenuItem menuItem,
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
package com.formdev.flatlaf.ui;
|
||||
|
||||
import java.io.File;
|
||||
import java.net.URL;
|
||||
import com.formdev.flatlaf.FlatSystemProperties;
|
||||
import com.formdev.flatlaf.util.LoggingFacade;
|
||||
import com.formdev.flatlaf.util.NativeLibrary;
|
||||
@@ -46,13 +47,13 @@ class FlatNativeLibrary
|
||||
if( nativeLibrary != null )
|
||||
return;
|
||||
|
||||
String libraryName;
|
||||
String classifier;
|
||||
String ext;
|
||||
if( SystemInfo.isWindows_10_orLater && (SystemInfo.isX86 || SystemInfo.isX86_64) ) {
|
||||
// Windows: requires Windows 10/11 (x86 or x86_64)
|
||||
|
||||
libraryName = "flatlaf-windows-x86";
|
||||
if( SystemInfo.isX86_64 )
|
||||
libraryName += "_64";
|
||||
classifier = SystemInfo.isX86_64 ? "windows-x86_64" : "windows-x86";
|
||||
ext = "dll";
|
||||
|
||||
// In Java 8, load jawt.dll (part of JRE) explicitly because it
|
||||
// is not found when running application with <jdk>/bin/java.exe.
|
||||
@@ -64,7 +65,8 @@ class FlatNativeLibrary
|
||||
} else if( SystemInfo.isLinux && SystemInfo.isX86_64 ) {
|
||||
// Linux: requires x86_64
|
||||
|
||||
libraryName = "flatlaf-linux-x86_64";
|
||||
classifier = "linux-x86_64";
|
||||
ext = "so";
|
||||
|
||||
// Load libjawt.so (part of JRE) explicitly because it is not found
|
||||
// in all Java versions/distributions.
|
||||
@@ -76,10 +78,13 @@ class FlatNativeLibrary
|
||||
return; // no native library available for current OS or CPU architecture
|
||||
|
||||
// load native library
|
||||
nativeLibrary = createNativeLibrary( libraryName );
|
||||
nativeLibrary = createNativeLibrary( classifier, ext );
|
||||
}
|
||||
|
||||
private static NativeLibrary createNativeLibrary( String libraryName ) {
|
||||
private static NativeLibrary createNativeLibrary( String classifier, String ext ) {
|
||||
String libraryName = "flatlaf-" + classifier;
|
||||
|
||||
// load from "java.library.path" or from path specified in system property "flatlaf.nativeLibraryPath"
|
||||
String libraryPath = System.getProperty( FlatSystemProperties.NATIVE_LIBRARY_PATH );
|
||||
if( libraryPath != null ) {
|
||||
if( "system".equals( libraryPath ) ) {
|
||||
@@ -97,9 +102,69 @@ class FlatNativeLibrary
|
||||
}
|
||||
}
|
||||
|
||||
// load from beside the FlatLaf jar
|
||||
// e.g. for flatlaf-3.1.jar, load flatlaf-3.1-windows-x86_64.dll (from same directory)
|
||||
File libraryFile = findLibraryBesideJar( classifier, ext );
|
||||
if( libraryFile != null )
|
||||
return new NativeLibrary( libraryFile, true );
|
||||
|
||||
// load from FlatLaf jar (extract native library to temp folder)
|
||||
return new NativeLibrary( "com/formdev/flatlaf/natives/" + libraryName, null, true );
|
||||
}
|
||||
|
||||
/**
|
||||
* Search for a native library beside the jar that contains this class
|
||||
* (usually the FlatLaf jar).
|
||||
* The native library must be in the same directory (or in "../bin" if jar is in "lib")
|
||||
* as the jar and have the same basename as the jar.
|
||||
* If FlatLaf jar is repackaged into fat/uber application jar, "-flatlaf" is appended to jar basename.
|
||||
* The classifier and the extension are appended to the jar basename.
|
||||
*
|
||||
* E.g.
|
||||
* flatlaf-3.1.jar
|
||||
* flatlaf-3.1-windows-x86_64.dll
|
||||
* flatlaf-3.1-linux-x86_64.so
|
||||
*/
|
||||
private static File findLibraryBesideJar( String classifier, String ext ) {
|
||||
try {
|
||||
// get location of FlatLaf jar
|
||||
URL jarUrl = FlatNativeLibrary.class.getProtectionDomain().getCodeSource().getLocation();
|
||||
if( jarUrl == null )
|
||||
return null;
|
||||
|
||||
File jarFile = new File( jarUrl.toURI() );
|
||||
|
||||
// if jarFile is a directory, then we're in a development environment
|
||||
if( !jarFile.isFile() )
|
||||
return null;
|
||||
|
||||
// build library file
|
||||
String jarName = jarFile.getName();
|
||||
String jarBasename = jarName.substring( 0, jarName.lastIndexOf( '.' ) );
|
||||
File parent = jarFile.getParentFile();
|
||||
String libraryName = jarBasename
|
||||
+ (jarBasename.contains( "flatlaf" ) ? "" : "-flatlaf")
|
||||
+ '-' + classifier + '.' + ext;
|
||||
|
||||
// check whether native library exists in same directory as jar
|
||||
File libraryFile = new File( parent, libraryName );
|
||||
if( libraryFile.isFile() )
|
||||
return libraryFile;
|
||||
|
||||
// if jar is in "lib" directory, then also check whether library exists
|
||||
// in "../bin" directory
|
||||
if( parent.getName().equalsIgnoreCase( "lib" ) ) {
|
||||
libraryFile = new File( parent.getParentFile(), "bin/" + libraryName );
|
||||
if( libraryFile.isFile() )
|
||||
return libraryFile;
|
||||
}
|
||||
} catch( Exception ex ) {
|
||||
LoggingFacade.INSTANCE.logSevere( ex.getMessage(), ex );
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
private static void loadJAWT() {
|
||||
try {
|
||||
System.loadLibrary( "jawt" );
|
||||
|
||||
@@ -23,6 +23,7 @@ import java.awt.event.MouseEvent;
|
||||
import java.awt.geom.AffineTransform;
|
||||
import javax.swing.JDialog;
|
||||
import javax.swing.JFrame;
|
||||
import com.formdev.flatlaf.util.SystemInfo;
|
||||
|
||||
/**
|
||||
* Native methods for Linux.
|
||||
@@ -35,7 +36,7 @@ import javax.swing.JFrame;
|
||||
class FlatNativeLinuxLibrary
|
||||
{
|
||||
static boolean isLoaded() {
|
||||
return FlatNativeLibrary.isLoaded();
|
||||
return SystemInfo.isLinux && FlatNativeLibrary.isLoaded();
|
||||
}
|
||||
|
||||
// direction for _NET_WM_MOVERESIZE message
|
||||
|
||||
@@ -0,0 +1,107 @@
|
||||
/*
|
||||
* Copyright 2022 FormDev Software GmbH
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.formdev.flatlaf.ui;
|
||||
|
||||
import java.awt.Window;
|
||||
import com.formdev.flatlaf.util.SystemInfo;
|
||||
|
||||
/**
|
||||
* Native methods for Windows.
|
||||
* <p>
|
||||
* <b>Note</b>: This is private API. Do not use!
|
||||
*
|
||||
* @author Karl Tauber
|
||||
* @since 3.1
|
||||
*/
|
||||
public class FlatNativeWindowsLibrary
|
||||
{
|
||||
private static long osBuildNumber = Long.MIN_VALUE;
|
||||
|
||||
public static boolean isLoaded() {
|
||||
return SystemInfo.isWindows && FlatNativeLibrary.isLoaded();
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the Windows operating system build number.
|
||||
* <p>
|
||||
* Invokes Win32 API method {@code GetVersionEx()} and returns {@code OSVERSIONINFO.dwBuildNumber}.
|
||||
* See https://learn.microsoft.com/en-us/windows/win32/api/sysinfoapi/nf-sysinfoapi-getversionexa
|
||||
*/
|
||||
public static long getOSBuildNumber() {
|
||||
if( osBuildNumber == Long.MIN_VALUE )
|
||||
osBuildNumber = getOSBuildNumberImpl();
|
||||
return osBuildNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Invokes Win32 API method {@code GetVersionEx()} and returns {@code OSVERSIONINFO.dwBuildNumber}.
|
||||
* See https://learn.microsoft.com/en-us/windows/win32/api/sysinfoapi/nf-sysinfoapi-getversionexa
|
||||
*/
|
||||
private native static long getOSBuildNumberImpl();
|
||||
|
||||
/**
|
||||
* Gets the Windows window handle (HWND) for the given Swing window.
|
||||
* <p>
|
||||
* Note that the underlying Windows window must be already created,
|
||||
* otherwise this method returns zero. Use following to ensure this:
|
||||
* <pre>{@code
|
||||
* if( !window.isDisplayable() )
|
||||
* window.addNotify();
|
||||
* }</pre>
|
||||
* or invoke this method after packing the window. E.g.
|
||||
* <pre>{@code
|
||||
* window.pack();
|
||||
* long hwnd = getHWND( window );
|
||||
* }</pre>
|
||||
*/
|
||||
public native static long getHWND( Window window );
|
||||
|
||||
/**
|
||||
* DWM_WINDOW_CORNER_PREFERENCE
|
||||
* see https://learn.microsoft.com/en-us/windows/win32/api/dwmapi/ne-dwmapi-dwm_window_corner_preference
|
||||
*/
|
||||
public static final int
|
||||
DWMWCP_DEFAULT = 0,
|
||||
DWMWCP_DONOTROUND = 1,
|
||||
DWMWCP_ROUND = 2,
|
||||
DWMWCP_ROUNDSMALL = 3;
|
||||
|
||||
/**
|
||||
* Sets the rounded corner preference for the window.
|
||||
* Allowed values are {@link #DWMWCP_DEFAULT}, {@link #DWMWCP_DONOTROUND},
|
||||
* {@link #DWMWCP_ROUND} and {@link #DWMWCP_ROUNDSMALL}.
|
||||
* <p>
|
||||
* Invokes Win32 API method {@code DwmSetWindowAttribute(DWMWA_WINDOW_CORNER_PREFERENCE)}.
|
||||
* See https://learn.microsoft.com/en-us/windows/win32/api/dwmapi/nf-dwmapi-dwmsetwindowattribute
|
||||
* <p>
|
||||
* Supported since Windows 11 Build 22000.
|
||||
*/
|
||||
public native static boolean setWindowCornerPreference( long hwnd, int cornerPreference );
|
||||
|
||||
/**
|
||||
* Sets the color of the window border.
|
||||
* The red/green/blue values must be in range {@code 0 - 255}.
|
||||
* If red is {@code -1}, then the system default border color is used (useful to reset the border color).
|
||||
* If red is {@code -2}, then no border is painted.
|
||||
* <p>
|
||||
* Invokes Win32 API method {@code DwmSetWindowAttribute(DWMWA_BORDER_COLOR)}.
|
||||
* See https://learn.microsoft.com/en-us/windows/win32/api/dwmapi/nf-dwmapi-dwmsetwindowattribute
|
||||
* <p>
|
||||
* Supported since Windows 11 Build 22000.
|
||||
*/
|
||||
public native static boolean setWindowBorderColor( long hwnd, int red, int green, int blue );
|
||||
}
|
||||
@@ -43,6 +43,7 @@ import java.lang.reflect.Method;
|
||||
import javax.swing.JComponent;
|
||||
import javax.swing.JLayeredPane;
|
||||
import javax.swing.JPanel;
|
||||
import javax.swing.JPopupMenu;
|
||||
import javax.swing.JToolTip;
|
||||
import javax.swing.JWindow;
|
||||
import javax.swing.Popup;
|
||||
@@ -52,6 +53,9 @@ import javax.swing.SwingUtilities;
|
||||
import javax.swing.ToolTipManager;
|
||||
import javax.swing.UIManager;
|
||||
import javax.swing.border.Border;
|
||||
import javax.swing.border.EmptyBorder;
|
||||
import javax.swing.border.LineBorder;
|
||||
import javax.swing.plaf.basic.BasicComboPopup;
|
||||
import com.formdev.flatlaf.FlatClientProperties;
|
||||
import com.formdev.flatlaf.util.SystemInfo;
|
||||
import com.formdev.flatlaf.util.UIScale;
|
||||
@@ -88,6 +92,17 @@ public class FlatPopupFactory
|
||||
if( SystemInfo.isMacOS || SystemInfo.isLinux )
|
||||
return new NonFlashingPopup( getPopupForScreenOfOwner( owner, contents, x, y, true ), contents );
|
||||
|
||||
// Windows 11 with FlatLaf native library can use rounded corners and shows drop shadow for heavy weight popups
|
||||
int borderCornerRadius;
|
||||
if( isWindows11BorderSupported() &&
|
||||
(borderCornerRadius = getBorderCornerRadius( owner, contents )) > 0 )
|
||||
{
|
||||
NonFlashingPopup popup = new NonFlashingPopup( getPopupForScreenOfOwner( owner, contents, x, y, true ), contents );
|
||||
if( popup.popupWindow != null )
|
||||
setupWindows11Border( popup.popupWindow, contents, borderCornerRadius );
|
||||
return popup;
|
||||
}
|
||||
|
||||
// create drop shadow popup
|
||||
return new DropShadowPopup( getPopupForScreenOfOwner( owner, contents, x, y, forceHeavyWeight ), owner, contents );
|
||||
}
|
||||
@@ -166,19 +181,39 @@ public class FlatPopupFactory
|
||||
}
|
||||
|
||||
private boolean isOptionEnabled( Component owner, Component contents, String clientKey, String uiKey ) {
|
||||
if( owner instanceof JComponent ) {
|
||||
Boolean b = FlatClientProperties.clientPropertyBooleanStrict( (JComponent) owner, clientKey, null );
|
||||
if( b != null )
|
||||
return b;
|
||||
Object value = getOption( owner, contents, clientKey, uiKey );
|
||||
return (value instanceof Boolean) ? (Boolean) value : false;
|
||||
}
|
||||
|
||||
private int getBorderCornerRadius( Component owner, Component contents ) {
|
||||
String uiKey =
|
||||
(contents instanceof BasicComboPopup) ? "ComboBox.borderCornerRadius" :
|
||||
(contents instanceof JPopupMenu) ? "PopupMenu.borderCornerRadius" :
|
||||
(contents instanceof JToolTip) ? "ToolTip.borderCornerRadius" :
|
||||
"Popup.borderCornerRadius";
|
||||
|
||||
Object value = getOption( owner, contents, FlatClientProperties.POPUP_BORDER_CORNER_RADIUS, uiKey );
|
||||
return (value instanceof Integer) ? (Integer) value : 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get option from:
|
||||
* <ol>
|
||||
* <li>client property {@code clientKey} of {@code owner}
|
||||
* <li>client property {@code clientKey} of {@code contents}
|
||||
* <li>UI property {@code uiKey}
|
||||
* </ol>
|
||||
*/
|
||||
private Object getOption( Component owner, Component contents, String clientKey, String uiKey ) {
|
||||
for( Component c : new Component[] { owner, contents } ) {
|
||||
if( c instanceof JComponent ) {
|
||||
Object value = ((JComponent)c).getClientProperty( clientKey );
|
||||
if( value != null )
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
||||
if( contents instanceof JComponent ) {
|
||||
Boolean b = FlatClientProperties.clientPropertyBooleanStrict( (JComponent) contents, clientKey, null );
|
||||
if( b != null )
|
||||
return b;
|
||||
}
|
||||
|
||||
return UIManager.getBoolean( uiKey );
|
||||
return UIManager.get( uiKey );
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -300,6 +335,60 @@ public class FlatPopupFactory
|
||||
((JComponent)owner).getToolTipLocation( me ) != null;
|
||||
}
|
||||
|
||||
private static boolean isWindows11BorderSupported() {
|
||||
return SystemInfo.isWindows_11_orLater && FlatNativeWindowsLibrary.isLoaded();
|
||||
}
|
||||
|
||||
private static void setupWindows11Border( Window popupWindow, Component contents, int borderCornerRadius ) {
|
||||
// make sure that the Windows 11 window is created
|
||||
if( !popupWindow.isDisplayable() )
|
||||
popupWindow.addNotify();
|
||||
|
||||
// get window handle
|
||||
long hwnd = FlatNativeWindowsLibrary.getHWND( popupWindow );
|
||||
|
||||
// set corner preference
|
||||
int cornerPreference = (borderCornerRadius <= 4)
|
||||
? FlatNativeWindowsLibrary.DWMWCP_ROUNDSMALL // 4px
|
||||
: FlatNativeWindowsLibrary.DWMWCP_ROUND; // 8px
|
||||
FlatNativeWindowsLibrary.setWindowCornerPreference( hwnd, cornerPreference );
|
||||
|
||||
// set border color
|
||||
int red = -1; // use system default color
|
||||
int green = 0;
|
||||
int blue = 0;
|
||||
if( contents instanceof JComponent ) {
|
||||
Border border = ((JComponent)contents).getBorder();
|
||||
border = FlatUIUtils.unwrapNonUIResourceBorder( border );
|
||||
|
||||
// get color from border of contents (e.g. JPopupMenu or JToolTip)
|
||||
Color borderColor = null;
|
||||
if( border instanceof FlatLineBorder )
|
||||
borderColor = ((FlatLineBorder)border).getLineColor();
|
||||
else if( border instanceof LineBorder )
|
||||
borderColor = ((LineBorder)border).getLineColor();
|
||||
else if( border instanceof EmptyBorder )
|
||||
red = -2; // do not paint border
|
||||
|
||||
if( borderColor != null ) {
|
||||
red = borderColor.getRed();
|
||||
green = borderColor.getGreen();
|
||||
blue = borderColor.getBlue();
|
||||
}
|
||||
}
|
||||
FlatNativeWindowsLibrary.setWindowBorderColor( hwnd, red, green, blue );
|
||||
}
|
||||
|
||||
private static void resetWindows11Border( Window popupWindow ) {
|
||||
// get window handle
|
||||
long hwnd = FlatNativeWindowsLibrary.getHWND( popupWindow );
|
||||
if( hwnd == 0 )
|
||||
return;
|
||||
|
||||
// reset corner preference
|
||||
FlatNativeWindowsLibrary.setWindowCornerPreference( hwnd, FlatNativeWindowsLibrary.DWMWCP_DONOTROUND );
|
||||
}
|
||||
|
||||
//---- class NonFlashingPopup ---------------------------------------------
|
||||
|
||||
private class NonFlashingPopup
|
||||
@@ -431,6 +520,14 @@ public class FlatPopupFactory
|
||||
oldDropShadowWindowBackground = dropShadowWindow.getBackground();
|
||||
dropShadowWindow.setBackground( new Color( 0, true ) );
|
||||
}
|
||||
|
||||
// Windows 11: reset corner preference on reused heavy weight popups
|
||||
if( isWindows11BorderSupported() ) {
|
||||
resetWindows11Border( popupWindow );
|
||||
if( dropShadowWindow != null )
|
||||
resetWindows11Border( dropShadowWindow );
|
||||
}
|
||||
|
||||
} else {
|
||||
mediumWeightPanel = (Panel) SwingUtilities.getAncestorOfClass( Panel.class, contents );
|
||||
if( mediumWeightPanel != null ) {
|
||||
|
||||
@@ -67,6 +67,7 @@ import javax.swing.plaf.basic.BasicComboPopup;
|
||||
import javax.swing.plaf.basic.BasicMenuItemUI;
|
||||
import javax.swing.plaf.basic.BasicPopupMenuUI;
|
||||
import javax.swing.plaf.basic.DefaultMenuLayout;
|
||||
import com.formdev.flatlaf.FlatClientProperties;
|
||||
import com.formdev.flatlaf.ui.FlatStylingSupport.Styleable;
|
||||
import com.formdev.flatlaf.ui.FlatStylingSupport.StyleableUI;
|
||||
import com.formdev.flatlaf.util.LoggingFacade;
|
||||
@@ -297,6 +298,9 @@ public class FlatPopupMenuUI
|
||||
popup.addMenuKeyListener( this );
|
||||
|
||||
updateArrowButtons();
|
||||
|
||||
putClientProperty( FlatClientProperties.POPUP_BORDER_CORNER_RADIUS,
|
||||
UIManager.getInt( "PopupMenu.borderCornerRadius" ) );
|
||||
}
|
||||
|
||||
void scroll( int unitsToScroll ) {
|
||||
|
||||
@@ -551,7 +551,7 @@ public class FlatRootPaneUI
|
||||
|
||||
protected boolean isWindowMaximized( Component c ) {
|
||||
Container parent = c.getParent();
|
||||
return parent instanceof Frame && (((Frame)parent).getExtendedState() & Frame.MAXIMIZED_BOTH) != 0;
|
||||
return parent instanceof Frame && (((Frame)parent).getExtendedState() & Frame.MAXIMIZED_BOTH) == Frame.MAXIMIZED_BOTH;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -128,12 +128,14 @@ import com.formdev.flatlaf.util.UIScale;
|
||||
*
|
||||
* @uiDefault TabbedPane.disabledForeground Color
|
||||
* @uiDefault TabbedPane.selectedBackground Color optional
|
||||
* @uiDefault TabbedPane.selectedForeground Color
|
||||
* @uiDefault TabbedPane.selectedForeground Color optional
|
||||
* @uiDefault TabbedPane.underlineColor Color
|
||||
* @uiDefault TabbedPane.inactiveUnderlineColor Color
|
||||
* @uiDefault TabbedPane.disabledUnderlineColor Color
|
||||
* @uiDefault TabbedPane.hoverColor Color
|
||||
* @uiDefault TabbedPane.focusColor Color
|
||||
* @uiDefault TabbedPane.hoverColor Color optional
|
||||
* @uiDefault TabbedPane.hoverForeground Color optional
|
||||
* @uiDefault TabbedPane.focusColor Color optional
|
||||
* @uiDefault TabbedPane.focusForeground Color optional
|
||||
* @uiDefault TabbedPane.tabSeparatorColor Color optional; defaults to TabbedPane.contentAreaColor
|
||||
* @uiDefault TabbedPane.contentAreaColor Color
|
||||
* @uiDefault TabbedPane.minimumTabWidth int optional
|
||||
@@ -205,7 +207,9 @@ public class FlatTabbedPaneUI
|
||||
/** @since 2.2 */ @Styleable protected Color inactiveUnderlineColor;
|
||||
@Styleable protected Color disabledUnderlineColor;
|
||||
@Styleable protected Color hoverColor;
|
||||
/** @since 3.1 */ @Styleable protected Color hoverForeground;
|
||||
@Styleable protected Color focusColor;
|
||||
/** @since 3.1 */ @Styleable protected Color focusForeground;
|
||||
@Styleable protected Color tabSeparatorColor;
|
||||
@Styleable protected Color contentAreaColor;
|
||||
|
||||
@@ -328,7 +332,9 @@ public class FlatTabbedPaneUI
|
||||
inactiveUnderlineColor = FlatUIUtils.getUIColor( "TabbedPane.inactiveUnderlineColor", underlineColor );
|
||||
disabledUnderlineColor = UIManager.getColor( "TabbedPane.disabledUnderlineColor" );
|
||||
hoverColor = UIManager.getColor( "TabbedPane.hoverColor" );
|
||||
hoverForeground = UIManager.getColor( "TabbedPane.hoverForeground" );
|
||||
focusColor = UIManager.getColor( "TabbedPane.focusColor" );
|
||||
focusForeground = UIManager.getColor( "TabbedPane.focusForeground" );
|
||||
tabSeparatorColor = UIManager.getColor( "TabbedPane.tabSeparatorColor" );
|
||||
contentAreaColor = UIManager.getColor( "TabbedPane.contentAreaColor" );
|
||||
|
||||
@@ -397,7 +403,9 @@ public class FlatTabbedPaneUI
|
||||
inactiveUnderlineColor = null;
|
||||
disabledUnderlineColor = null;
|
||||
hoverColor = null;
|
||||
hoverForeground = null;
|
||||
focusColor = null;
|
||||
focusForeground = null;
|
||||
tabSeparatorColor = null;
|
||||
contentAreaColor = null;
|
||||
closeIcon = null;
|
||||
@@ -1141,22 +1149,37 @@ public class FlatTabbedPaneUI
|
||||
}
|
||||
|
||||
// plain text
|
||||
Color color;
|
||||
if( tabPane.isEnabled() && tabPane.isEnabledAt( tabIndex ) ) {
|
||||
color = tabPane.getForegroundAt( tabIndex );
|
||||
if( isSelected && selectedForeground != null && color == tabPane.getForeground() )
|
||||
color = selectedForeground;
|
||||
} else
|
||||
color = disabledForeground;
|
||||
|
||||
int mnemIndex = FlatLaf.isShowMnemonics() ? tabPane.getDisplayedMnemonicIndexAt( tabIndex ) : -1;
|
||||
|
||||
g.setColor( color );
|
||||
g.setColor( getTabForeground( tabPlacement, tabIndex, isSelected ) );
|
||||
FlatUIUtils.drawStringUnderlineCharAt( tabPane, g, title, mnemIndex,
|
||||
textRect.x, textRect.y + metrics.getAscent() );
|
||||
} );
|
||||
}
|
||||
|
||||
/** @since 3.1 */
|
||||
protected Color getTabForeground( int tabPlacement, int tabIndex, boolean isSelected ) {
|
||||
// tabbed pane or tab is disabled
|
||||
if( !tabPane.isEnabled() || !tabPane.isEnabledAt( tabIndex ) )
|
||||
return disabledForeground;
|
||||
|
||||
// hover
|
||||
if( hoverForeground != null && getRolloverTab() == tabIndex )
|
||||
return hoverForeground;
|
||||
|
||||
// tab foreground (if set)
|
||||
Color foreground = tabPane.getForegroundAt( tabIndex );
|
||||
if( foreground != tabPane.getForeground() )
|
||||
return foreground;
|
||||
|
||||
// focused and selected
|
||||
if( focusForeground != null && isSelected && FlatUIUtils.isPermanentFocusOwner( tabPane ) )
|
||||
return focusForeground;
|
||||
if( selectedForeground != null && isSelected )
|
||||
return selectedForeground;
|
||||
|
||||
return foreground;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void paintTabBackground( Graphics g, int tabPlacement, int tabIndex,
|
||||
int x, int y, int w, int h, boolean isSelected )
|
||||
@@ -1169,14 +1192,27 @@ public class FlatTabbedPaneUI
|
||||
|
||||
/** @since 2 */
|
||||
protected Color getTabBackground( int tabPlacement, int tabIndex, boolean isSelected ) {
|
||||
boolean enabled = tabPane.isEnabled();
|
||||
return enabled && tabPane.isEnabledAt( tabIndex ) && getRolloverTab() == tabIndex
|
||||
? hoverColor
|
||||
: (enabled && isSelected && FlatUIUtils.isPermanentFocusOwner( tabPane )
|
||||
? focusColor
|
||||
: (selectedBackground != null && enabled && isSelected
|
||||
? selectedBackground
|
||||
: tabPane.getBackgroundAt( tabIndex )));
|
||||
Color background = tabPane.getBackgroundAt( tabIndex );
|
||||
|
||||
// tabbed pane or tab is disabled
|
||||
if( !tabPane.isEnabled() || !tabPane.isEnabledAt( tabIndex ) )
|
||||
return background;
|
||||
|
||||
// hover
|
||||
if( hoverColor != null && getRolloverTab() == tabIndex )
|
||||
return hoverColor;
|
||||
|
||||
// tab background (if set)
|
||||
if( background != tabPane.getBackground() )
|
||||
return background;
|
||||
|
||||
// focused and selected
|
||||
if( focusColor != null && isSelected && FlatUIUtils.isPermanentFocusOwner( tabPane ) )
|
||||
return focusColor;
|
||||
if( selectedBackground != null && isSelected )
|
||||
return selectedBackground;
|
||||
|
||||
return background;
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -1431,7 +1467,8 @@ public class FlatTabbedPaneUI
|
||||
path.append( gap, false );
|
||||
|
||||
// fill gap in case that the tab is colored (e.g. focused or hover)
|
||||
g.setColor( getTabBackground( tabPlacement, selectedIndex, true ) );
|
||||
Color background = getTabBackground( tabPlacement, selectedIndex, true );
|
||||
g.setColor( FlatUIUtils.deriveColor( background, tabPane.getBackground() ) );
|
||||
((Graphics2D)g).fill( gap );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,6 +24,7 @@ import java.util.function.Function;
|
||||
import javax.swing.JTable;
|
||||
import javax.swing.SwingUtilities;
|
||||
import javax.swing.UIManager;
|
||||
import javax.swing.border.Border;
|
||||
import javax.swing.plaf.TableUI;
|
||||
|
||||
/**
|
||||
@@ -107,17 +108,55 @@ public class FlatTableCellBorder
|
||||
public static class Focused
|
||||
extends FlatTableCellBorder
|
||||
{
|
||||
@Override
|
||||
public void paintBorder( Component c, Graphics g, int x, int y, int width, int height ) {
|
||||
if( c != null && c.getClass().getName().equals( "javax.swing.JTable$BooleanRenderer" ) ) {
|
||||
// boolean renderer in JTable does not use Table.focusSelectedCellHighlightBorder
|
||||
// if cell is selected and focused (as DefaultTableCellRenderer does)
|
||||
// --> delegate to Table.focusSelectedCellHighlightBorder
|
||||
// to make FlatLaf "focus indicator border hiding" work
|
||||
JTable table = (JTable) SwingUtilities.getAncestorOfClass( JTable.class, c );
|
||||
if( table != null &&
|
||||
c.getForeground() == table.getSelectionForeground() &&
|
||||
c.getBackground() == table.getSelectionBackground() )
|
||||
{
|
||||
Border border = UIManager.getBorder( "Table.focusSelectedCellHighlightBorder" );
|
||||
if( border != null ) {
|
||||
border.paintBorder( c, g, x, y, width, height );
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
super.paintBorder( c, g, x, y, width, height );
|
||||
}
|
||||
}
|
||||
|
||||
//---- class Selected -----------------------------------------------------
|
||||
|
||||
/**
|
||||
* Border for selected cell that uses margins and paints focus indicator border
|
||||
* if enabled (Table.showCellFocusIndicator=true) or at least one selected cell is editable.
|
||||
* Border for selected cell that uses margins and paints focus indicator border.
|
||||
* The focus indicator is shown under following conditions:
|
||||
* <ul>
|
||||
* <li>always if enabled via UI property {@code Table.showCellFocusIndicator=true}
|
||||
* <li>for row selection mode if exactly one row is selected and at least one cell in that row is editable
|
||||
* <li>for column selection mode if exactly one column is selected and at least one cell in that column is editable
|
||||
* <li>never for cell selection mode
|
||||
* </ul>
|
||||
* The reason for this logic is to hide the focus indicator when it is not needed,
|
||||
* and only show it when there are editable cells and the user needs to know
|
||||
* which cell is focused to start editing.
|
||||
* <p>
|
||||
* To avoid possible performance issues, checking for editable cells is limited
|
||||
* to {@link #maxCheckCellsEditable}. If there are more cells to check,
|
||||
* the focus indicator is always shown.
|
||||
*/
|
||||
public static class Selected
|
||||
extends FlatTableCellBorder
|
||||
{
|
||||
/** @since 3.1 */
|
||||
public int maxCheckCellsEditable = 50;
|
||||
|
||||
@Override
|
||||
public void paintBorder( Component c, Graphics g, int x, int y, int width, int height ) {
|
||||
Boolean b = getStyleFromTableUI( c, ui -> ui.showCellFocusIndicator );
|
||||
@@ -125,7 +164,7 @@ public class FlatTableCellBorder
|
||||
|
||||
if( !showCellFocusIndicator ) {
|
||||
JTable table = (JTable) SwingUtilities.getAncestorOfClass( JTable.class, c );
|
||||
if( table != null && !isSelectionEditable( table ) )
|
||||
if( table != null && !shouldShowCellFocusIndicator( table ) )
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -133,28 +172,57 @@ public class FlatTableCellBorder
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks whether at least one selected cell is editable.
|
||||
* Returns whether focus indicator border should be shown.
|
||||
*
|
||||
* @since 3.1
|
||||
*/
|
||||
protected boolean isSelectionEditable( JTable table ) {
|
||||
if( table.getRowSelectionAllowed() ) {
|
||||
int columnCount = table.getColumnCount();
|
||||
int[] selectedRows = table.getSelectedRows();
|
||||
for( int selectedRow : selectedRows ) {
|
||||
for( int column = 0; column < columnCount; column++ ) {
|
||||
if( table.isCellEditable( selectedRow, column ) )
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
protected boolean shouldShowCellFocusIndicator( JTable table ) {
|
||||
boolean rowSelectionAllowed = table.getRowSelectionAllowed();
|
||||
boolean columnSelectionAllowed = table.getColumnSelectionAllowed();
|
||||
|
||||
if( table.getColumnSelectionAllowed() ) {
|
||||
// do not show for cell selection mode
|
||||
// (unlikely that user wants edit cell in case that multiple cells are selected;
|
||||
// if only a single cell is selected then it is clear where the focus is)
|
||||
if( rowSelectionAllowed && columnSelectionAllowed )
|
||||
return false;
|
||||
|
||||
if( rowSelectionAllowed ) {
|
||||
// row selection mode
|
||||
|
||||
// do not show if more than one row is selected
|
||||
// (unlikely that user wants edit cell in this case)
|
||||
if( table.getSelectedRowCount() != 1 )
|
||||
return false;
|
||||
|
||||
// show always if there are too many columns to check for editable
|
||||
int columnCount = table.getColumnCount();
|
||||
if( columnCount > maxCheckCellsEditable )
|
||||
return true;
|
||||
|
||||
// check whether at least one selected cell is editable
|
||||
int selectedRow = table.getSelectedRow();
|
||||
for( int column = 0; column < columnCount; column++ ) {
|
||||
if( table.isCellEditable( selectedRow, column ) )
|
||||
return true;
|
||||
}
|
||||
} else if( columnSelectionAllowed ) {
|
||||
// column selection mode
|
||||
|
||||
// do not show if more than one column is selected
|
||||
// (unlikely that user wants edit cell in this case)
|
||||
if( table.getSelectedColumnCount() != 1 )
|
||||
return false;
|
||||
|
||||
// show always if there are too many rows to check for editable
|
||||
int rowCount = table.getRowCount();
|
||||
int[] selectedColumns = table.getSelectedColumns();
|
||||
for( int selectedColumn : selectedColumns ) {
|
||||
for( int row = 0; row < rowCount; row++ ) {
|
||||
if( table.isCellEditable( row, selectedColumn ) )
|
||||
return true;
|
||||
}
|
||||
if( rowCount > maxCheckCellsEditable )
|
||||
return true;
|
||||
|
||||
// check whether at least one selected cell is editable
|
||||
int selectedColumn = table.getSelectedColumn();
|
||||
for( int row = 0; row < rowCount; row++ ) {
|
||||
if( table.isCellEditable( row, selectedColumn ) )
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -59,6 +59,10 @@ import com.formdev.flatlaf.util.UIScale;
|
||||
*
|
||||
* <!-- FlatTableHeaderUI -->
|
||||
*
|
||||
* @uiDefault TableHeader.hoverBackground Color optional
|
||||
* @uiDefault TableHeader.hoverForeground Color optional
|
||||
* @uiDefault TableHeader.pressedBackground Color optional
|
||||
* @uiDefault TableHeader.pressedForeground Color optional
|
||||
* @uiDefault TableHeader.bottomSeparatorColor Color
|
||||
* @uiDefault TableHeader.height int
|
||||
* @uiDefault TableHeader.sortIconPosition String right (default), left, top or bottom
|
||||
@@ -81,6 +85,10 @@ public class FlatTableHeaderUI
|
||||
extends BasicTableHeaderUI
|
||||
implements StyleableUI
|
||||
{
|
||||
/** @since 3.1 */ @Styleable protected Color hoverBackground;
|
||||
/** @since 3.1 */ @Styleable protected Color hoverForeground;
|
||||
/** @since 3.1 */ @Styleable protected Color pressedBackground;
|
||||
/** @since 3.1 */ @Styleable protected Color pressedForeground;
|
||||
@Styleable protected Color bottomSeparatorColor;
|
||||
@Styleable protected int height;
|
||||
@Styleable(type=String.class) protected int sortIconPosition;
|
||||
@@ -113,6 +121,10 @@ public class FlatTableHeaderUI
|
||||
protected void installDefaults() {
|
||||
super.installDefaults();
|
||||
|
||||
hoverBackground = UIManager.getColor( "TableHeader.hoverBackground" );
|
||||
hoverForeground = UIManager.getColor( "TableHeader.hoverForeground" );
|
||||
pressedBackground = UIManager.getColor( "TableHeader.pressedBackground" );
|
||||
pressedForeground = UIManager.getColor( "TableHeader.pressedForeground" );
|
||||
bottomSeparatorColor = UIManager.getColor( "TableHeader.bottomSeparatorColor" );
|
||||
height = UIManager.getInt( "TableHeader.height" );
|
||||
sortIconPosition = parseSortIconPosition( UIManager.getString( "TableHeader.sortIconPosition" ) );
|
||||
@@ -122,6 +134,10 @@ public class FlatTableHeaderUI
|
||||
protected void uninstallDefaults() {
|
||||
super.uninstallDefaults();
|
||||
|
||||
hoverBackground = null;
|
||||
hoverForeground = null;
|
||||
pressedBackground = null;
|
||||
pressedForeground = null;
|
||||
bottomSeparatorColor = null;
|
||||
|
||||
oldStyleValues = null;
|
||||
@@ -211,6 +227,12 @@ public class FlatTableHeaderUI
|
||||
return super.getRolloverColumn();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void rolloverColumnUpdated( int oldColumn, int newColumn ) {
|
||||
header.repaint( header.getHeaderRect( oldColumn ) );
|
||||
header.repaint( header.getHeaderRect( newColumn ) );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void paint( Graphics g, JComponent c ) {
|
||||
fixDraggedAndResizingColumns( header );
|
||||
@@ -243,21 +265,16 @@ public class FlatTableHeaderUI
|
||||
}
|
||||
}
|
||||
|
||||
// temporary use own default renderer if necessary
|
||||
FlatTableCellHeaderRenderer sortIconRenderer = null;
|
||||
if( sortIconPosition != SwingConstants.RIGHT ) {
|
||||
sortIconRenderer = new FlatTableCellHeaderRenderer( header.getDefaultRenderer() );
|
||||
header.setDefaultRenderer( sortIconRenderer );
|
||||
}
|
||||
// temporary use own default renderer
|
||||
FlatTableCellHeaderRenderer tempRenderer = new FlatTableCellHeaderRenderer( header.getDefaultRenderer() );
|
||||
header.setDefaultRenderer( tempRenderer );
|
||||
|
||||
// paint header
|
||||
super.paint( g, c );
|
||||
|
||||
// restore default renderer
|
||||
if( sortIconRenderer != null ) {
|
||||
sortIconRenderer.reset();
|
||||
header.setDefaultRenderer( sortIconRenderer.delegate );
|
||||
}
|
||||
tempRenderer.reset();
|
||||
header.setDefaultRenderer( tempRenderer.delegate );
|
||||
}
|
||||
|
||||
private boolean isSystemDefaultRenderer( Object headerRenderer ) {
|
||||
@@ -318,8 +335,8 @@ public class FlatTableHeaderUI
|
||||
//---- class FlatTableCellHeaderRenderer ----------------------------------
|
||||
|
||||
/**
|
||||
* A delegating header renderer that is only used to paint sort arrows at
|
||||
* top, bottom or left position.
|
||||
* A delegating header renderer that is only used to paint hover and pressed
|
||||
* background/foreground and to paint sort arrows at top, bottom or left position.
|
||||
*/
|
||||
private class FlatTableCellHeaderRenderer
|
||||
implements TableCellRenderer, Border, UIResource
|
||||
@@ -327,6 +344,9 @@ public class FlatTableHeaderUI
|
||||
private final TableCellRenderer delegate;
|
||||
|
||||
private JLabel l;
|
||||
private Color oldBackground;
|
||||
private Color oldForeground;
|
||||
private Boolean oldOpaque;
|
||||
private int oldHorizontalTextPosition = -1;
|
||||
private Border origBorder;
|
||||
private Icon sortIcon;
|
||||
@@ -345,11 +365,38 @@ public class FlatTableHeaderUI
|
||||
|
||||
l = (JLabel) c;
|
||||
|
||||
// hover and pressed background/foreground
|
||||
TableColumn draggedColumn = header.getDraggedColumn();
|
||||
Color background = null;
|
||||
Color foreground = null;
|
||||
if( draggedColumn != null && header.getTable().convertColumnIndexToView( draggedColumn.getModelIndex() ) == column ) {
|
||||
background = pressedBackground;
|
||||
foreground = pressedForeground;
|
||||
} else if( getRolloverColumn() == column ) {
|
||||
background = hoverBackground;
|
||||
foreground = hoverForeground;
|
||||
}
|
||||
if( background != null ) {
|
||||
if( oldBackground == null )
|
||||
oldBackground = l.getBackground();
|
||||
if( oldOpaque == null )
|
||||
oldOpaque = l.isOpaque();
|
||||
l.setBackground( FlatUIUtils.deriveColor( background, header.getBackground() ) );
|
||||
l.setOpaque( true );
|
||||
}
|
||||
if( foreground != null ) {
|
||||
if( oldForeground == null )
|
||||
oldForeground = l.getForeground();
|
||||
l.setForeground( FlatUIUtils.deriveColor( foreground, header.getForeground() ) );
|
||||
}
|
||||
|
||||
// sort icon
|
||||
if( sortIconPosition == SwingConstants.LEFT ) {
|
||||
// left
|
||||
if( oldHorizontalTextPosition < 0 )
|
||||
oldHorizontalTextPosition = l.getHorizontalTextPosition();
|
||||
l.setHorizontalTextPosition( SwingConstants.RIGHT );
|
||||
} else {
|
||||
} else if( sortIconPosition == SwingConstants.TOP || sortIconPosition == SwingConstants.BOTTOM ) {
|
||||
// top or bottom
|
||||
sortIcon = l.getIcon();
|
||||
origBorder = l.getBorder();
|
||||
@@ -361,7 +408,16 @@ public class FlatTableHeaderUI
|
||||
}
|
||||
|
||||
void reset() {
|
||||
if( l != null && sortIconPosition == SwingConstants.LEFT && oldHorizontalTextPosition >= 0 )
|
||||
if( l == null )
|
||||
return;
|
||||
|
||||
if( oldBackground != null )
|
||||
l.setBackground( oldBackground );
|
||||
if( oldForeground != null )
|
||||
l.setForeground( oldForeground );
|
||||
if( oldOpaque != null )
|
||||
l.setOpaque( oldOpaque );
|
||||
if( oldHorizontalTextPosition >= 0 )
|
||||
l.setHorizontalTextPosition( oldHorizontalTextPosition );
|
||||
}
|
||||
|
||||
|
||||
@@ -360,9 +360,8 @@ public class FlatTitlePane
|
||||
|
||||
if( window instanceof Frame ) {
|
||||
Frame frame = (Frame) window;
|
||||
boolean maximized = ((frame.getExtendedState() & Frame.MAXIMIZED_BOTH) != 0);
|
||||
|
||||
if( maximized &&
|
||||
if( isWindowMaximized() &&
|
||||
!(SystemInfo.isLinux && FlatNativeLinuxLibrary.isWMUtilsSupported( window )) &&
|
||||
rootPane.getClientProperty( "_flatlaf.maximizedBoundsUpToDate" ) == null )
|
||||
{
|
||||
@@ -393,7 +392,7 @@ public class FlatTitlePane
|
||||
if( window instanceof Frame ) {
|
||||
Frame frame = (Frame) window;
|
||||
boolean maximizable = frame.isResizable() && clientPropertyBoolean( rootPane, TITLE_BAR_SHOW_MAXIMIZE, true );
|
||||
boolean maximized = ((frame.getExtendedState() & Frame.MAXIMIZED_BOTH) != 0);
|
||||
boolean maximized = isWindowMaximized();
|
||||
|
||||
iconifyButton.setVisible( clientPropertyBoolean( rootPane, TITLE_BAR_SHOW_ICONIFFY, true ) );
|
||||
maximizeButton.setVisible( maximizable && !maximized );
|
||||
@@ -643,7 +642,10 @@ public class FlatTitlePane
|
||||
|
||||
/** @since 2.4 */
|
||||
protected boolean isWindowMaximized() {
|
||||
return window instanceof Frame && (((Frame)window).getExtendedState() & Frame.MAXIMIZED_BOTH) != 0;
|
||||
// Windows and macOS use always MAXIMIZED_BOTH.
|
||||
// Only Linux uses MAXIMIZED_VERT and MAXIMIZED_HORIZ (when dragging window to left or right edge).
|
||||
// (searched jdk source code)
|
||||
return window instanceof Frame && (((Frame)window).getExtendedState() & Frame.MAXIMIZED_BOTH) == Frame.MAXIMIZED_BOTH;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -661,8 +663,30 @@ public class FlatTitlePane
|
||||
rootPane.putClientProperty( "_flatlaf.maximizedBoundsUpToDate", true );
|
||||
|
||||
// maximize window
|
||||
if( !FlatNativeWindowBorder.showWindow( frame, FlatNativeWindowBorder.Provider.SW_MAXIMIZE ) )
|
||||
frame.setExtendedState( frame.getExtendedState() | Frame.MAXIMIZED_BOTH );
|
||||
if( !FlatNativeWindowBorder.showWindow( frame, FlatNativeWindowBorder.Provider.SW_MAXIMIZE ) ) {
|
||||
int oldState = frame.getExtendedState();
|
||||
int newState = oldState | Frame.MAXIMIZED_BOTH;
|
||||
|
||||
if( SystemInfo.isLinux ) {
|
||||
// Linux supports vertical and horizontal maximization:
|
||||
// - dragging a window to left or right edge of screen vertically maximizes
|
||||
// the window to the left or right half of the screen
|
||||
// - don't know whether user can do horizontal maximization
|
||||
// (Windows and macOS use only MAXIMIZED_BOTH)
|
||||
//
|
||||
// If a window is maximized vertically or horizontally (but not both),
|
||||
// then Frame.setExtendedState() behaves not as expected on Linux.
|
||||
// E.g. if window state is MAXIMIZED_VERT, calling setExtendedState(MAXIMIZED_BOTH)
|
||||
// changes state to MAXIMIZED_HORIZ. But calling setExtendedState(MAXIMIZED_HORIZ)
|
||||
// changes state from MAXIMIZED_VERT to MAXIMIZED_BOTH.
|
||||
// Seems to be a bug in sun.awt.X11.XNETProtocol.requestState(),
|
||||
// which does some strange state XOR-ing...
|
||||
if( (oldState & Frame.MAXIMIZED_BOTH) == Frame.MAXIMIZED_VERT )
|
||||
newState = oldState & ~Frame.MAXIMIZED_BOTH | Frame.MAXIMIZED_HORIZ;
|
||||
}
|
||||
|
||||
frame.setExtendedState( newState );
|
||||
}
|
||||
}
|
||||
|
||||
protected void updateMaximizedBounds() {
|
||||
@@ -766,8 +790,7 @@ public class FlatTitlePane
|
||||
if( !(window instanceof Frame) || !((Frame)window).isResizable() )
|
||||
return;
|
||||
|
||||
Frame frame = (Frame) window;
|
||||
if( (frame.getExtendedState() & Frame.MAXIMIZED_BOTH) != 0 )
|
||||
if( isWindowMaximized() )
|
||||
restore();
|
||||
else
|
||||
maximize();
|
||||
@@ -1188,6 +1211,13 @@ public class FlatTitlePane
|
||||
|
||||
@Override
|
||||
public void windowStateChanged( WindowEvent e ) {
|
||||
/*debug
|
||||
System.out.println( "state " + e.getOldState() + " -> " + e.getNewState() + " "
|
||||
+ ((e.getNewState() & Frame.MAXIMIZED_HORIZ) != 0 ? " HORIZ" : "")
|
||||
+ ((e.getNewState() & Frame.MAXIMIZED_VERT) != 0 ? " VERT" : "")
|
||||
);
|
||||
debug*/
|
||||
|
||||
frameStateChanged();
|
||||
updateNativeTitleBarHeightAndHitTestSpots();
|
||||
}
|
||||
@@ -1195,7 +1225,7 @@ public class FlatTitlePane
|
||||
//---- interface MouseListener ----
|
||||
|
||||
private Point dragOffset;
|
||||
private boolean nativeMove;
|
||||
private boolean linuxNativeMove;
|
||||
private long lastSingleClickWhen;
|
||||
|
||||
@Override
|
||||
@@ -1203,7 +1233,7 @@ public class FlatTitlePane
|
||||
// on Linux, when using native library, the mouse clicked event
|
||||
// is usually not sent and maximize/restore is done in mouse pressed event
|
||||
// this check is here for the case that a mouse clicked event comes thru for some reason
|
||||
if( SystemInfo.isLinux && FlatNativeLinuxLibrary.isWMUtilsSupported( window ) ) {
|
||||
if( linuxNativeMove && SystemInfo.isLinux && FlatNativeLinuxLibrary.isWMUtilsSupported( window ) ) {
|
||||
// see comment in mousePressed()
|
||||
if( lastSingleClickWhen != 0 && (e.getWhen() - lastSingleClickWhen) <= getMultiClickInterval() ) {
|
||||
lastSingleClickWhen = 0;
|
||||
@@ -1241,7 +1271,7 @@ public class FlatTitlePane
|
||||
return;
|
||||
|
||||
dragOffset = SwingUtilities.convertPoint( FlatTitlePane.this, e.getPoint(), window );
|
||||
nativeMove = false;
|
||||
linuxNativeMove = false;
|
||||
|
||||
// on Linux, move or maximize/restore window
|
||||
if( SystemInfo.isLinux && FlatNativeLinuxLibrary.isWMUtilsSupported( window ) ) {
|
||||
@@ -1261,7 +1291,7 @@ public class FlatTitlePane
|
||||
case 1:
|
||||
// move window via _NET_WM_MOVERESIZE message
|
||||
e.consume();
|
||||
nativeMove = FlatNativeLinuxLibrary.moveOrResizeWindow( window, e, FlatNativeLinuxLibrary.MOVE );
|
||||
linuxNativeMove = FlatNativeLinuxLibrary.moveOrResizeWindow( window, e, FlatNativeLinuxLibrary.MOVE );
|
||||
lastSingleClickWhen = e.getWhen();
|
||||
break;
|
||||
|
||||
@@ -1291,7 +1321,7 @@ public class FlatTitlePane
|
||||
if( window == null || dragOffset == null )
|
||||
return; // should newer occur
|
||||
|
||||
if( nativeMove )
|
||||
if( linuxNativeMove )
|
||||
return;
|
||||
|
||||
if( !SwingUtilities.isLeftMouseButton( e ) )
|
||||
|
||||
@@ -158,6 +158,10 @@ public class FlatTreeUI
|
||||
// only used via styling (not in UI defaults, but has likewise client properties)
|
||||
/** @since 2 */ @Styleable protected boolean paintSelection = true;
|
||||
|
||||
private Icon defaultLeafIcon;
|
||||
private Icon defaultClosedIcon;
|
||||
private Icon defaultOpenIcon;
|
||||
|
||||
private boolean paintLines;
|
||||
private Color defaultCellNonSelectionBackground;
|
||||
private Color defaultSelectionBackground;
|
||||
@@ -193,6 +197,10 @@ public class FlatTreeUI
|
||||
showCellFocusIndicator = UIManager.getBoolean( "Tree.showCellFocusIndicator" );
|
||||
showDefaultIcons = UIManager.getBoolean( "Tree.showDefaultIcons" );
|
||||
|
||||
defaultLeafIcon = UIManager.getIcon( "Tree.leafIcon" );
|
||||
defaultClosedIcon = UIManager.getIcon( "Tree.closedIcon" );
|
||||
defaultOpenIcon = UIManager.getIcon( "Tree.openIcon" );
|
||||
|
||||
paintLines = UIManager.getBoolean( "Tree.paintLines" );
|
||||
defaultCellNonSelectionBackground = UIManager.getColor( "Tree.textBackground" );
|
||||
defaultSelectionBackground = selectionBackground;
|
||||
@@ -219,6 +227,10 @@ public class FlatTreeUI
|
||||
selectionInactiveForeground = null;
|
||||
selectionBorderColor = null;
|
||||
|
||||
defaultLeafIcon = null;
|
||||
defaultClosedIcon = null;
|
||||
defaultOpenIcon = null;
|
||||
|
||||
defaultCellNonSelectionBackground = null;
|
||||
defaultSelectionBackground = null;
|
||||
defaultSelectionForeground = null;
|
||||
@@ -233,9 +245,14 @@ public class FlatTreeUI
|
||||
// remove default leaf/closed/opened icons
|
||||
if( !showDefaultIcons && currentCellRenderer instanceof DefaultTreeCellRenderer ) {
|
||||
DefaultTreeCellRenderer renderer = (DefaultTreeCellRenderer) currentCellRenderer;
|
||||
renderer.setLeafIcon( null );
|
||||
renderer.setClosedIcon( null );
|
||||
renderer.setOpenIcon( null );
|
||||
if( renderer.getLeafIcon() == defaultLeafIcon &&
|
||||
renderer.getClosedIcon() == defaultClosedIcon &&
|
||||
renderer.getOpenIcon() == defaultOpenIcon )
|
||||
{
|
||||
renderer.setLeafIcon( null );
|
||||
renderer.setClosedIcon( null );
|
||||
renderer.setOpenIcon( null );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -310,6 +327,21 @@ public class FlatTreeUI
|
||||
tree.revalidate();
|
||||
tree.repaint();
|
||||
break;
|
||||
|
||||
case "enabled":
|
||||
// if default icons are not shown and the renderer is a subclass
|
||||
// of DefaultTreeCellRenderer, then invalidate tree node sizes
|
||||
// because the custom renderer may use an icon for enabled state
|
||||
// but none for disabled state
|
||||
if( !showDefaultIcons &&
|
||||
currentCellRenderer instanceof DefaultTreeCellRenderer &&
|
||||
currentCellRenderer.getClass() != DefaultTreeCellRenderer.class &&
|
||||
treeState != null )
|
||||
{
|
||||
treeState.invalidateSizes();
|
||||
updateSize();
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
@@ -695,7 +727,7 @@ public class FlatTreeUI
|
||||
|
||||
if( rendererComponent instanceof JLabel ) {
|
||||
JLabel label = (JLabel) rendererComponent;
|
||||
Icon icon = label.getIcon();
|
||||
Icon icon = label.isEnabled() ? label.getIcon() : label.getDisabledIcon();
|
||||
imageOffset = (icon != null && label.getText() != null)
|
||||
? icon.getIconWidth() + Math.max( label.getIconTextGap() - 1, 0 )
|
||||
: 0;
|
||||
|
||||
@@ -200,6 +200,10 @@ public class FlatUIUtils
|
||||
return (border instanceof UIResource) ? new NonUIResourceBorder( border ) : border;
|
||||
}
|
||||
|
||||
static Border unwrapNonUIResourceBorder( Border border ) {
|
||||
return (border instanceof NonUIResourceBorder) ? ((NonUIResourceBorder)border).delegate : border;
|
||||
}
|
||||
|
||||
public static int minimumWidth( JComponent c, int minimumWidth ) {
|
||||
return FlatClientProperties.clientPropertyInt( c, FlatClientProperties.MINIMUM_WIDTH, minimumWidth );
|
||||
}
|
||||
|
||||
@@ -52,40 +52,47 @@ public class HiDPIUtils
|
||||
AffineTransform t = g.getTransform();
|
||||
|
||||
// get scale X/Y and shear X/Y
|
||||
double scaleX = t.getScaleX();
|
||||
double scaleY = t.getScaleY();
|
||||
double shearX = t.getShearX();
|
||||
double shearY = t.getShearY();
|
||||
final double scaleX = t.getScaleX();
|
||||
final double scaleY = t.getScaleY();
|
||||
final double shearX = t.getShearX();
|
||||
final double shearY = t.getShearY();
|
||||
|
||||
// check whether rotated
|
||||
// (also check for negative scale X/Y because shear X/Y are zero for 180 degrees rotation)
|
||||
boolean rotated = (shearX != 0 || shearY != 0 || scaleX <= 0 || scaleY <= 0);
|
||||
|
||||
// calculate non rotated scale factors
|
||||
final double realScaleX, realScaleY;
|
||||
if( rotated ) {
|
||||
// resulting scale X/Y values are always positive
|
||||
scaleX = Math.hypot( scaleX, shearX );
|
||||
scaleY = Math.hypot( scaleY, shearY );
|
||||
realScaleX = Math.hypot( scaleX, shearX );
|
||||
realScaleY = Math.hypot( scaleY, shearY );
|
||||
} else {
|
||||
// make scale X/Y positive
|
||||
scaleX = Math.abs( scaleX );
|
||||
scaleY = Math.abs( scaleY );
|
||||
realScaleX = Math.abs( scaleX );
|
||||
realScaleY = Math.abs( scaleY );
|
||||
}
|
||||
|
||||
// check whether scaled
|
||||
if( scaleX == 1 && scaleY == 1 ) {
|
||||
if( realScaleX == 1 && realScaleY == 1 ) {
|
||||
painter.paint( g, x, y, width, height, 1 );
|
||||
return;
|
||||
}
|
||||
|
||||
// calculate x and y (this is equal to t.translate( x, y ))
|
||||
double px = (x * scaleX) + (y * shearX) + t.getTranslateX();
|
||||
double py = (y * scaleY) + (x * shearY) + t.getTranslateY();
|
||||
|
||||
// scale rectangle
|
||||
Rectangle2D.Double scaledRect = scale( scaleX, scaleY, t, x, y, width, height );
|
||||
Rectangle2D.Double scaledRect = scale( realScaleX, realScaleY, px, py, width, height );
|
||||
|
||||
try {
|
||||
// unscale to factor 1.0, keep rotation and move origin (to whole numbers)
|
||||
AffineTransform t1x;
|
||||
if( rotated ) {
|
||||
t1x = new AffineTransform( t.getScaleX(), t.getShearY(), t.getShearX(), t.getScaleY(),
|
||||
t1x = new AffineTransform( scaleX, shearY, shearX, scaleY,
|
||||
Math.floor( scaledRect.x ), Math.floor( scaledRect.y ) );
|
||||
t1x.scale( 1. / scaleX, 1. / scaleY );
|
||||
t1x.scale( 1. / realScaleX, 1. / realScaleY );
|
||||
} else
|
||||
t1x = new AffineTransform( 1, 0, 0, 1, Math.floor( scaledRect.x ), Math.floor( scaledRect.y ) );
|
||||
g.setTransform( t1x );
|
||||
@@ -94,7 +101,7 @@ public class HiDPIUtils
|
||||
int sheight = (int) scaledRect.height;
|
||||
|
||||
// paint
|
||||
painter.paint( g, 0, 0, swidth, sheight, scaleX );
|
||||
painter.paint( g, 0, 0, swidth, sheight, realScaleX );
|
||||
} finally {
|
||||
// restore original transform
|
||||
g.setTransform( t );
|
||||
@@ -106,10 +113,7 @@ public class HiDPIUtils
|
||||
* sun.java2d.pipe.PixelToParallelogramConverter.fillRectangle(),
|
||||
* which is used by Graphics.fillRect().
|
||||
*/
|
||||
private static Rectangle2D.Double scale( double scaleX, double scaleY, AffineTransform t, int x, int y, int width, int height ) {
|
||||
double px = (x * scaleX) + t.getTranslateX();
|
||||
double py = (y * scaleY) + t.getTranslateY();
|
||||
|
||||
private static Rectangle2D.Double scale( double scaleX, double scaleY, double px, double py, int width, int height ) {
|
||||
double newX = normalize( px );
|
||||
double newY = normalize( py );
|
||||
double newWidth = normalize( px + (width * scaleX) ) - newX;
|
||||
|
||||
@@ -100,8 +100,13 @@ debug*/
|
||||
Image image = getResolutionVariant( destImageWidth, destImageHeight );
|
||||
|
||||
// size of image
|
||||
int imageWidth = image.getWidth( null );
|
||||
int imageHeight = image.getHeight( null );
|
||||
int imageWidth = -1;
|
||||
int imageHeight = -1;
|
||||
|
||||
if (image != null) {
|
||||
imageWidth = image.getWidth( null );
|
||||
imageHeight = image.getHeight( null );
|
||||
}
|
||||
|
||||
// paint red rectangle if image has invalid size (e.g. not found)
|
||||
if( imageWidth < 0 || imageHeight < 0 ) {
|
||||
|
||||
@@ -18,6 +18,7 @@ package com.formdev.flatlaf.util;
|
||||
|
||||
import java.util.Locale;
|
||||
import java.util.StringTokenizer;
|
||||
import com.formdev.flatlaf.ui.FlatNativeWindowsLibrary;
|
||||
|
||||
/**
|
||||
* Provides information about the current system.
|
||||
@@ -34,9 +35,7 @@ public class SystemInfo
|
||||
// OS versions
|
||||
public static final long osVersion;
|
||||
public static final boolean isWindows_10_orLater;
|
||||
/** <strong>Note</strong>: This requires Java 8u321, 11.0.14, 17.0.2 or 18 (or later).
|
||||
* (see https://bugs.openjdk.java.net/browse/JDK-8274840)
|
||||
* @since 2 */ public static final boolean isWindows_11_orLater;
|
||||
/** @since 2 */ public static final boolean isWindows_11_orLater;
|
||||
public static final boolean isMacOS_10_11_ElCapitan_orLater;
|
||||
public static final boolean isMacOS_10_14_Mojave_orLater;
|
||||
public static final boolean isMacOS_10_15_Catalina_orLater;
|
||||
@@ -80,8 +79,6 @@ public class SystemInfo
|
||||
// OS versions
|
||||
osVersion = scanVersion( System.getProperty( "os.version" ) );
|
||||
isWindows_10_orLater = (isWindows && osVersion >= toVersion( 10, 0, 0, 0 ));
|
||||
isWindows_11_orLater = (isWindows_10_orLater && osName.length() > "windows ".length() &&
|
||||
scanVersion( osName.substring( "windows ".length() ) ) >= toVersion( 11, 0, 0, 0 ));
|
||||
isMacOS_10_11_ElCapitan_orLater = (isMacOS && osVersion >= toVersion( 10, 11, 0, 0 ));
|
||||
isMacOS_10_14_Mojave_orLater = (isMacOS && osVersion >= toVersion( 10, 14, 0, 0 ));
|
||||
isMacOS_10_15_Catalina_orLater = (isMacOS && osVersion >= toVersion( 10, 15, 0, 0 ));
|
||||
@@ -116,9 +113,27 @@ public class SystemInfo
|
||||
|
||||
// features
|
||||
// available since Java 12; backported to Java 11.0.8 and 8u292
|
||||
isMacFullWindowContentSupported =
|
||||
javaVersion >= toVersion( 11, 0, 8, 0 ) ||
|
||||
(javaVersion >= toVersion( 1, 8, 0, 292 ) && !isJava_9_orLater);
|
||||
isMacFullWindowContentSupported = isMacOS &&
|
||||
(javaVersion >= toVersion( 11, 0, 8, 0 ) ||
|
||||
(javaVersion >= toVersion( 1, 8, 0, 292 ) && !isJava_9_orLater));
|
||||
|
||||
|
||||
// Note: Keep following at the end of this block because (optional) loading
|
||||
// of native library uses fields of this class. E.g. isX86_64
|
||||
|
||||
// Windows 11 detection is implemented in Java 8u321, 11.0.14, 17.0.2 and 18 (or later).
|
||||
// (see https://bugs.openjdk.java.net/browse/JDK-8274840)
|
||||
// For older Java versions, use native library to get OS build number.
|
||||
boolean isWin_11_orLater = false;
|
||||
try {
|
||||
isWin_11_orLater = isWindows_10_orLater &&
|
||||
(scanVersion( StringUtils.removeLeading( osName, "windows " ) ) >= toVersion( 11, 0, 0, 0 ) ||
|
||||
(FlatNativeWindowsLibrary.isLoaded() && FlatNativeWindowsLibrary.getOSBuildNumber() >= 22000));
|
||||
} catch( Throwable ex ) {
|
||||
// catch to avoid that application can not start if native library is not up-to-date
|
||||
LoggingFacade.INSTANCE.logSevere( null, ex );
|
||||
}
|
||||
isWindows_11_orLater = isWin_11_orLater;
|
||||
}
|
||||
|
||||
public static long scanVersion( String version ) {
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
@menuAcceleratorSelectionForeground = @selectionForeground
|
||||
|
||||
# misc
|
||||
@cellFocusColor = #000
|
||||
@cellFocusColor = lighten(@selectionBackground,10%)
|
||||
@icon = shade(@foreground,7%)
|
||||
|
||||
# accent colors (blueish)
|
||||
@@ -331,6 +331,8 @@ Table.gridColor = lighten($Table.background,8%)
|
||||
|
||||
#---- TableHeader ----
|
||||
|
||||
TableHeader.hoverBackground = lighten($TableHeader.background,5%,derived)
|
||||
TableHeader.pressedBackground = lighten($TableHeader.background,10%,derived)
|
||||
TableHeader.separatorColor = lighten($TableHeader.background,10%)
|
||||
TableHeader.bottomSeparatorColor = $TableHeader.separatorColor
|
||||
|
||||
|
||||
@@ -288,6 +288,7 @@ ComboBox.buttonPressedArrowColor = @buttonPressedArrowColor
|
||||
ComboBox.popupInsets = 0,0,0,0
|
||||
ComboBox.selectionInsets = 0,0,0,0
|
||||
ComboBox.selectionArc = 0
|
||||
ComboBox.borderCornerRadius = $Popup.borderCornerRadius
|
||||
|
||||
|
||||
#---- Component ----
|
||||
@@ -503,6 +504,7 @@ PasswordField.revealIcon = com.formdev.flatlaf.icons.FlatRevealIcon
|
||||
|
||||
#---- Popup ----
|
||||
|
||||
Popup.borderCornerRadius = 4
|
||||
Popup.dropShadowPainted = true
|
||||
Popup.dropShadowInsets = -4,-4,4,4
|
||||
|
||||
@@ -511,6 +513,7 @@ Popup.dropShadowInsets = -4,-4,4,4
|
||||
|
||||
PopupMenu.border = com.formdev.flatlaf.ui.FlatPopupMenuBorder
|
||||
PopupMenu.borderInsets = 4,1,4,1
|
||||
PopupMenu.borderCornerRadius = $Popup.borderCornerRadius
|
||||
PopupMenu.background = @menuBackground
|
||||
PopupMenu.scrollArrowColor = @buttonArrowColor
|
||||
|
||||
@@ -880,6 +883,11 @@ ToolBar.spacingBorder = $Button.toolbar.spacingInsets
|
||||
ToolTipManager.enableToolTipMode = activeApplication
|
||||
|
||||
|
||||
#---- ToolTip ----
|
||||
|
||||
ToolTip.borderCornerRadius = $Popup.borderCornerRadius
|
||||
|
||||
|
||||
#---- Tree ----
|
||||
|
||||
Tree.border = 1,1,1,1
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
@menuAcceleratorSelectionForeground = @selectionForeground
|
||||
|
||||
# misc
|
||||
@cellFocusColor = #000
|
||||
@cellFocusColor = darken(@selectionBackground,20%)
|
||||
@icon = shade(@background,27%)
|
||||
|
||||
# accent colors (blueish)
|
||||
@@ -338,6 +338,8 @@ Table.gridColor = darken($Table.background,8%)
|
||||
|
||||
#---- TableHeader ----
|
||||
|
||||
TableHeader.hoverBackground = darken($TableHeader.background,5%,derived)
|
||||
TableHeader.pressedBackground = darken($TableHeader.background,10%,derived)
|
||||
TableHeader.separatorColor = darken($TableHeader.background,10%)
|
||||
TableHeader.bottomSeparatorColor = $TableHeader.separatorColor
|
||||
|
||||
|
||||
@@ -49,6 +49,9 @@ infoText = lazy(ToolTip.foreground)
|
||||
# make sure that accent color (set via FlatLaf.setSystemColorGetter()) is ignored
|
||||
@accentColor = null
|
||||
|
||||
# use fixed color because it is used in borders
|
||||
@cellFocusColor = #222
|
||||
|
||||
|
||||
#---- Button ----
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -149,6 +149,7 @@ ComboBox.selectionBackground = @menuSelectionBackground
|
||||
ComboBox.popupInsets = 5,0,5,0
|
||||
ComboBox.selectionInsets = 0,5,0,5
|
||||
ComboBox.selectionArc = 8
|
||||
ComboBox.borderCornerRadius = 8
|
||||
|
||||
|
||||
#---- Component ----
|
||||
@@ -205,6 +206,7 @@ PasswordField.selectionForeground = @textSelectionForeground
|
||||
#---- PopupMenu ----
|
||||
|
||||
PopupMenu.borderInsets = 6,1,6,1
|
||||
PopupMenu.borderCornerRadius = 8
|
||||
|
||||
|
||||
#---- ProgressBar ----
|
||||
|
||||
@@ -150,6 +150,7 @@ ComboBox.selectionBackground = @menuSelectionBackground
|
||||
ComboBox.popupInsets = 5,0,5,0
|
||||
ComboBox.selectionInsets = 0,5,0,5
|
||||
ComboBox.selectionArc = 8
|
||||
ComboBox.borderCornerRadius = 8
|
||||
|
||||
|
||||
#---- Component ----
|
||||
@@ -206,6 +207,7 @@ PasswordField.selectionForeground = @textSelectionForeground
|
||||
#---- PopupMenu ----
|
||||
|
||||
PopupMenu.borderInsets = 6,1,6,1
|
||||
PopupMenu.borderCornerRadius = 8
|
||||
|
||||
|
||||
#---- ProgressBar ----
|
||||
|
||||
@@ -721,7 +721,9 @@ public class TestFlatStyleableInfo
|
||||
"inactiveUnderlineColor", Color.class,
|
||||
"disabledUnderlineColor", Color.class,
|
||||
"hoverColor", Color.class,
|
||||
"hoverForeground", Color.class,
|
||||
"focusColor", Color.class,
|
||||
"focusForeground", Color.class,
|
||||
"tabSeparatorColor", Color.class,
|
||||
"contentAreaColor", Color.class,
|
||||
|
||||
@@ -804,6 +806,10 @@ public class TestFlatStyleableInfo
|
||||
FlatTableHeaderUI ui = (FlatTableHeaderUI) c.getUI();
|
||||
|
||||
Map<String, Class<?>> expected = expectedMap(
|
||||
"hoverBackground", Color.class,
|
||||
"hoverForeground", Color.class,
|
||||
"pressedBackground", Color.class,
|
||||
"pressedForeground", Color.class,
|
||||
"bottomSeparatorColor", Color.class,
|
||||
"height", int.class,
|
||||
"sortIconPosition", String.class,
|
||||
|
||||
@@ -727,7 +727,9 @@ public class TestFlatStyleableValue
|
||||
testColor( c, ui, "inactiveUnderlineColor", 0x123456 );
|
||||
testColor( c, ui, "disabledUnderlineColor", 0x123456 );
|
||||
testColor( c, ui, "hoverColor", 0x123456 );
|
||||
testColor( c, ui, "hoverForeground", 0x123456 );
|
||||
testColor( c, ui, "focusColor", 0x123456 );
|
||||
testColor( c, ui, "focusForeground", 0x123456 );
|
||||
testColor( c, ui, "tabSeparatorColor", 0x123456 );
|
||||
testColor( c, ui, "contentAreaColor", 0x123456 );
|
||||
|
||||
@@ -802,6 +804,10 @@ public class TestFlatStyleableValue
|
||||
JTableHeader c = new JTableHeader();
|
||||
FlatTableHeaderUI ui = (FlatTableHeaderUI) c.getUI();
|
||||
|
||||
testColor( c, ui, "hoverBackground", 0x123456 );
|
||||
testColor( c, ui, "hoverForeground", 0x123456 );
|
||||
testColor( c, ui, "pressedBackground", 0x123456 );
|
||||
testColor( c, ui, "pressedForeground", 0x123456 );
|
||||
testColor( c, ui, "bottomSeparatorColor", 0x123456 );
|
||||
testInteger( c, ui, "height", 123 );
|
||||
testString( c, ui, "sortIconPosition", "top" );
|
||||
|
||||
@@ -29,6 +29,7 @@ import javax.swing.table.JTableHeader;
|
||||
import org.junit.jupiter.api.AfterAll;
|
||||
import org.junit.jupiter.api.BeforeAll;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import com.formdev.flatlaf.FlatLaf;
|
||||
import com.formdev.flatlaf.icons.*;
|
||||
import com.formdev.flatlaf.util.ColorFunctions;
|
||||
|
||||
@@ -39,12 +40,20 @@ public class TestFlatStyling
|
||||
{
|
||||
@BeforeAll
|
||||
static void setup() {
|
||||
HashMap<String, String> globalExtraDefaults = new HashMap<>();
|
||||
globalExtraDefaults.put( "@var1", "#f00" );
|
||||
globalExtraDefaults.put( "@var2", "@var1" );
|
||||
globalExtraDefaults.put( "var2Resolved", "@var2" );
|
||||
FlatLaf.setGlobalExtraDefaults( globalExtraDefaults );
|
||||
|
||||
TestUtils.setup( false );
|
||||
}
|
||||
|
||||
@AfterAll
|
||||
static void cleanup() {
|
||||
TestUtils.cleanup();
|
||||
|
||||
FlatLaf.setGlobalExtraDefaults( null );
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -171,6 +180,13 @@ public class TestFlatStyling
|
||||
"saturate(darken(@background,20%),10%)" );
|
||||
}
|
||||
|
||||
@Test
|
||||
void parseRecursiveVariables() {
|
||||
Color background = UIManager.getColor( "var2Resolved" );
|
||||
|
||||
testColorStyle( background.getRGB(), "@var2" );
|
||||
}
|
||||
|
||||
private void testColorStyle( int expectedRGB, String style ) {
|
||||
testStyle( "background", new Color( expectedRGB, (expectedRGB & 0xff000000) != 0 ), style );
|
||||
}
|
||||
@@ -890,7 +906,9 @@ public class TestFlatStyling
|
||||
ui.applyStyle( "inactiveUnderlineColor: #fff" );
|
||||
ui.applyStyle( "disabledUnderlineColor: #fff" );
|
||||
ui.applyStyle( "hoverColor: #fff" );
|
||||
ui.applyStyle( "hoverForeground: #fff" );
|
||||
ui.applyStyle( "focusColor: #fff" );
|
||||
ui.applyStyle( "focusForeground: #fff" );
|
||||
ui.applyStyle( "tabSeparatorColor: #fff" );
|
||||
ui.applyStyle( "contentAreaColor: #fff" );
|
||||
|
||||
@@ -983,6 +1001,10 @@ public class TestFlatStyling
|
||||
JTableHeader c = new JTableHeader();
|
||||
FlatTableHeaderUI ui = (FlatTableHeaderUI) c.getUI();
|
||||
|
||||
ui.applyStyle( "hoverBackground: #fff" );
|
||||
ui.applyStyle( "hoverForeground: #fff" );
|
||||
ui.applyStyle( "pressedBackground: #fff" );
|
||||
ui.applyStyle( "pressedForeground: #fff" );
|
||||
ui.applyStyle( "bottomSeparatorColor: #fff" );
|
||||
ui.applyStyle( "height: 20" );
|
||||
ui.applyStyle( "sortIconPosition: top" );
|
||||
|
||||
@@ -55,7 +55,8 @@ public class FlatLafDemo
|
||||
// - "system": use current macOS appearance (light or dark)
|
||||
// - "NSAppearanceNameAqua": use light appearance
|
||||
// - "NSAppearanceNameDarkAqua": use dark appearance
|
||||
// (needs to be set on main thread; setting it on AWT thread does not work)
|
||||
// (must be set on main thread and before AWT/Swing is initialized;
|
||||
// setting it on AWT thread does not work)
|
||||
System.setProperty( "apple.awt.application.appearance", "system" );
|
||||
}
|
||||
|
||||
|
||||
@@ -144,8 +144,8 @@
|
||||
"dark": true,
|
||||
"license": "MIT",
|
||||
"licenseFile": "Hiberbee.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/Hiberbee/code-highlight-themes",
|
||||
"sourceCodePath": "blob/latest/src/main/resources/HiberbeeDark.theme.json"
|
||||
"sourceCodeUrl": "https://github.com/Hiberbee/themes",
|
||||
"sourceCodePath": "blob/latest/src/main/resources/themes/HiberbeeDark.theme.json"
|
||||
},
|
||||
"HighContrast.theme.json": {
|
||||
"name": "High contrast",
|
||||
@@ -247,7 +247,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Arc Dark.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Arc Dark.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Arc Dark Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Arc Dark Contrast",
|
||||
@@ -255,7 +255,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Arc Dark Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Arc Dark Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Atom One Dark.theme.json": {
|
||||
"name": "Material Theme UI Lite / Atom One Dark",
|
||||
@@ -263,7 +263,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Atom One Dark.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Atom One Dark.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Atom One Dark Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Atom One Dark Contrast",
|
||||
@@ -271,21 +271,21 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Atom One Dark Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Atom One Dark Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Atom One Light.theme.json": {
|
||||
"name": "Material Theme UI Lite / Atom One Light",
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Atom One Light.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Atom One Light.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Atom One Light Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Atom One Light Contrast",
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Atom One Light Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Atom One Light Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Dracula.theme.json": {
|
||||
"name": "Material Theme UI Lite / Dracula",
|
||||
@@ -293,7 +293,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Dracula.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Dracula.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Dracula Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Dracula Contrast",
|
||||
@@ -301,21 +301,21 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Dracula Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Dracula Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/GitHub.theme.json": {
|
||||
"name": "Material Theme UI Lite / GitHub",
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/GitHub.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/GitHub.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/GitHub Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / GitHub Contrast",
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/GitHub Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/GitHub Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/GitHub Dark.theme.json": {
|
||||
"name": "Material Theme UI Lite / GitHub Dark",
|
||||
@@ -323,7 +323,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/GitHub Dark.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/GitHub Dark.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/GitHub Dark Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / GitHub Dark Contrast",
|
||||
@@ -331,21 +331,21 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/GitHub Dark Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/GitHub Dark Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Light Owl.theme.json": {
|
||||
"name": "Material Theme UI Lite / Light Owl",
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Light Owl.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Light Owl.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Light Owl Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Light Owl Contrast",
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Light Owl Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Light Owl Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Material Darker.theme.json": {
|
||||
"name": "Material Theme UI Lite / Material Darker",
|
||||
@@ -353,7 +353,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Material Darker.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Darker.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Material Darker Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Material Darker Contrast",
|
||||
@@ -361,7 +361,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Material Darker Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Material Darker Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Material Deep Ocean.theme.json": {
|
||||
"name": "Material Theme UI Lite / Material Deep Ocean",
|
||||
@@ -369,7 +369,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Material Deep Ocean.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Deep Ocean.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Material Deep Ocean Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Material Deep Ocean Contrast",
|
||||
@@ -377,21 +377,21 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Material Deep Ocean Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Material Deep Ocean Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Material Lighter.theme.json": {
|
||||
"name": "Material Theme UI Lite / Material Lighter",
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Material Lighter.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Lighter.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Material Lighter Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Material Lighter Contrast",
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Material Lighter Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Material Lighter Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Material Oceanic.theme.json": {
|
||||
"name": "Material Theme UI Lite / Material Oceanic",
|
||||
@@ -399,7 +399,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Material Oceanic.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Oceanic.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Material Oceanic Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Material Oceanic Contrast",
|
||||
@@ -407,7 +407,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Material Oceanic Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Material Oceanic Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Material Palenight.theme.json": {
|
||||
"name": "Material Theme UI Lite / Material Palenight",
|
||||
@@ -415,7 +415,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Material Palenight.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Material Palenight.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Material Palenight Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Material Palenight Contrast",
|
||||
@@ -423,7 +423,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Material Palenight Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Material Palenight Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Monokai Pro.theme.json": {
|
||||
"name": "Material Theme UI Lite / Monokai Pro",
|
||||
@@ -431,7 +431,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Monokai Pro.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Monokai Pro.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Monokai Pro Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Monokai Pro Contrast",
|
||||
@@ -439,7 +439,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Monokai Pro Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Monokai Pro Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Moonlight.theme.json": {
|
||||
"name": "Material Theme UI Lite / Moonlight",
|
||||
@@ -447,7 +447,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Moonlight.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Moonlight.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Moonlight Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Moonlight Contrast",
|
||||
@@ -455,7 +455,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Moonlight Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Moonlight Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Night Owl.theme.json": {
|
||||
"name": "Material Theme UI Lite / Night Owl",
|
||||
@@ -463,7 +463,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Night Owl.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Night Owl.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Night Owl Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Night Owl Contrast",
|
||||
@@ -471,7 +471,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Night Owl Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Night Owl Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Solarized Dark.theme.json": {
|
||||
"name": "Material Theme UI Lite / Solarized Dark",
|
||||
@@ -479,7 +479,7 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Solarized Dark.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Solarized Dark.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Solarized Dark Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Solarized Dark Contrast",
|
||||
@@ -487,20 +487,20 @@
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Solarized Dark Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Solarized Dark Contrast.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Solarized Light.theme.json": {
|
||||
"name": "Material Theme UI Lite / Solarized Light",
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Solarized Light.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/regular/Solarized Light.theme.json"
|
||||
},
|
||||
"material-theme-ui-lite/Solarized Light Contrast.theme.json": {
|
||||
"name": "Material Theme UI Lite / Solarized Light Contrast",
|
||||
"license": "MIT",
|
||||
"licenseFile": "material-theme-ui-lite/Material Theme UI Lite.LICENSE.txt",
|
||||
"sourceCodeUrl": "https://github.com/mallowigi/material-theme-ui-lite",
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/Solarized Light Contrast.theme.json"
|
||||
"sourceCodePath": "blob/master/src/main/resources/themes/contrast/Solarized Light Contrast.theme.json"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -197,6 +197,14 @@ TabbedPane.buttonHoverBackground = TabbedPane.background
|
||||
TabbedPane.buttonPressedBackground = TabbedPane.background
|
||||
|
||||
|
||||
#---- TableHeader ----
|
||||
|
||||
TableHeader.hoverBackground = TableHeader.background
|
||||
TableHeader.hoverForeground = TableHeader.foreground
|
||||
TableHeader.pressedBackground = TableHeader.background
|
||||
TableHeader.pressedForeground = TableHeader.foreground
|
||||
|
||||
|
||||
#---- TitlePane ----
|
||||
|
||||
TitlePane.buttonHoverBackground = TitlePane.background
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
// For maven compatibility, <font-version> should be in format <major>.<minor>[.<micro>].
|
||||
// <build-number> is optional and should be incremented only if a new release is
|
||||
// necessary, but the <font-version> has not changed.
|
||||
version = "2.242"
|
||||
version = "2.304"
|
||||
|
||||
if( !rootProject.hasProperty( "release" ) )
|
||||
version = version.toString() + "-SNAPSHOT"
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,8 +1,8 @@
|
||||
Copyright 2020 The JetBrains Mono Project Authors (https://github.com/JetBrains/JetBrainsMono)
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
|
||||
This license is copied below, and is also available with a FAQ at: https://scripts.sil.org/OFL
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
https://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
@@ -18,7 +18,7 @@ with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
|
||||
@@ -47,15 +47,15 @@
|
||||
}
|
||||
},
|
||||
"BookmarkMnemonicAssigned": {
|
||||
"foreground": "primaryForeground",
|
||||
"background": "#786299",
|
||||
"buttonForeground": "primaryForeground",
|
||||
"buttonBackground": "#786299",
|
||||
"borderColor": "secondaryAccentColor"
|
||||
},
|
||||
"BookmarkMnemonicAvailable": {
|
||||
},
|
||||
"BookmarkMnemonicCurrent": {
|
||||
"foreground": "primaryForeground",
|
||||
"background": "#8d6b81",
|
||||
"buttonForeground": "primaryForeground",
|
||||
"buttonBackground": "#8d6b81",
|
||||
"borderColor": "accentColor"
|
||||
},
|
||||
"Button": {
|
||||
@@ -167,7 +167,7 @@
|
||||
"foreground": "primaryForeground"
|
||||
},
|
||||
"hoverBackground": "hoverBackground",
|
||||
"lightSelectionBackground": "hoverBackground",
|
||||
"lightSelectionBackground": "secondaryBackground",
|
||||
"Button": {
|
||||
"installBorderColor": "secondaryAccentColor",
|
||||
"installForeground": "secondaryAccentColor",
|
||||
@@ -228,9 +228,6 @@
|
||||
"SidePanel": {
|
||||
"background": "secondaryBackground"
|
||||
},
|
||||
"StatusBar": {
|
||||
"hoverBackground": "hoverBackground"
|
||||
},
|
||||
"TabbedPane": {
|
||||
"tabSelectionHeight": 1,
|
||||
"focusColor": "hoverBackground",
|
||||
@@ -240,7 +237,8 @@
|
||||
},
|
||||
"Table": {
|
||||
"gridColor": "#5d617a",
|
||||
"hoverBackground": "selectionBackground"
|
||||
"hoverBackground": "selectionBackground",
|
||||
"lightSelectionBackground": "secondaryBackground"
|
||||
},
|
||||
"TableHeader": {
|
||||
"bottomSeparatorColor": "separatorColor"
|
||||
@@ -312,8 +310,11 @@
|
||||
"selectionBackground": "secondaryBackground",
|
||||
"selectionInactiveBackground": "secondaryBackground",
|
||||
"actions": {
|
||||
"background": "hoverBackground"
|
||||
"background": "secondaryBackground"
|
||||
}
|
||||
},
|
||||
"Details": {
|
||||
"background": "hoverBackground"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -2,189 +2,211 @@
|
||||
"name": "Hiberbee Dark",
|
||||
"author": "Vlad Volkov",
|
||||
"dark": true,
|
||||
"editorScheme": "/colors/Dark.icls",
|
||||
"icons": {
|
||||
"ColorPalette": {
|
||||
"Actions.Blue": "#78dce8",
|
||||
"Actions.Green": "#92d923",
|
||||
"Actions.Grey": "#93918c",
|
||||
"Actions.Red": "#fb3b45",
|
||||
"Actions.Yellow": "#FFD866",
|
||||
"Objects.Blue": "#78dce8",
|
||||
"Objects.Green": "#92d923",
|
||||
"Actions.GreyInline.Dark": "light4",
|
||||
"Checkbox.Background.Disabled.Dark": "dark6",
|
||||
"Checkbox.Background.Default.Dark": "dark8",
|
||||
"Checkbox.Background.Selected.Dark": "dark8",
|
||||
"Checkbox.Focus.Thin.Selected.Dark": "dark10",
|
||||
"Checkbox.Focus.Wide.Dark": "dark10",
|
||||
"Checkbox.Foreground.Selected.Dark": "accent",
|
||||
"Checkbox.Border.Default.Dark": "dark9",
|
||||
"Checkbox.Border.Disabled.Dark": "dark7",
|
||||
"Checkbox.Border.Selected.Dark": "dark10",
|
||||
"Tree.iconColor": "accent",
|
||||
"Actions.Blue": "blue",
|
||||
"Actions.Green": "green",
|
||||
"Actions.Grey": "dark10",
|
||||
"Actions.Red": "red",
|
||||
"Actions.Yellow": "yellow",
|
||||
"Objects.Blue": "blue",
|
||||
"Objects.Green": "green",
|
||||
"Objects.Pink": "#ff6188",
|
||||
"Objects.Purple": "#ab9df2",
|
||||
"Objects.Red": "#fb3b45",
|
||||
"Objects.RedStatus": "#fb3b45",
|
||||
"Objects.Yellow": "#FFD866",
|
||||
"Objects.YellowDark": "#FFB900"
|
||||
"Objects.Purple": "#9380ff",
|
||||
"Objects.Red": "#e81123",
|
||||
"Objects.RedStatus": "#e81123",
|
||||
"Objects.Grey": "#c9c8c7",
|
||||
"Objects.Yellow": "#FFB900",
|
||||
"Objects.YellowDark": "#ff8c00"
|
||||
}
|
||||
},
|
||||
"editorScheme": "/colors/Dark.xml",
|
||||
"colors": {
|
||||
"black": "#000000",
|
||||
"editorDarkerBg": "#2D2B29",
|
||||
"shortcutForeground": "#2d2b29",
|
||||
"editorBg": "#1B1A19",
|
||||
"consoleBackground": "#171615",
|
||||
"editorPaneBg": "#333231",
|
||||
"panelBackground": "#333231",
|
||||
"textColor": "#f9f6ef",
|
||||
"textColorTransparent": "#f9f6ef7f",
|
||||
"border": "#4d4c4b",
|
||||
"redMac": "#fb3b45",
|
||||
"redWin": "#ef6950",
|
||||
"redMonokaiPro": "#ff6188",
|
||||
"blueWinPalette": "#409AE1",
|
||||
"blue": "#78dce8",
|
||||
"deepBlue": "#3199b3",
|
||||
"orangeMonokaiPro": "#fc9867",
|
||||
"greenMonokaiPro": "#a9dc76",
|
||||
"yellow": "#ffd64c",
|
||||
"purpleWinPalette": "#b4a0ff",
|
||||
"purpleMonokaiPro": "#ab9df2",
|
||||
"greenWinPalette": "#40c5af",
|
||||
"greyWinPalette": "#b2b2b2",
|
||||
"panelText": "#acacac",
|
||||
"desaturatedOrange": "#8049117f",
|
||||
"green": "#92d923",
|
||||
"greyDot15": "#f9f6ef",
|
||||
"greyDot20": "#c0c0c0",
|
||||
"greyDot25": "#bfbfbf",
|
||||
"greyDot33": "#aaaaaa",
|
||||
"greyDot50": "#7d7d7d",
|
||||
"greyDot60": "#666666",
|
||||
"greyDot65": "#5a5a5a",
|
||||
"greyDot70": "#4d4c4b",
|
||||
"greyDot75": "#434241",
|
||||
"greyDot80": "#333231",
|
||||
"greyDot85": "#2d2b29",
|
||||
"greyDot90": "#1f1e1d",
|
||||
"greyDot95": "#242220",
|
||||
"greyDot100": "#181615",
|
||||
"lightBlue": "#70D7FF",
|
||||
"red": "#800040",
|
||||
"transparentGreen": "#5B80217f",
|
||||
"transparentRed": "#F250227f",
|
||||
"transparentViolet": "#242221ff",
|
||||
"transparentYellow": "#FFB9007a"
|
||||
"dark1": "#070605",
|
||||
"dark2": "#121110",
|
||||
"dark3": "#171615",
|
||||
"dark4": "#222120",
|
||||
"dark5": "#272625",
|
||||
"dark6": "#323130",
|
||||
"dark7": "#373635",
|
||||
"dark8": "#424140",
|
||||
"dark9": "#474645",
|
||||
"dark10": "#525150",
|
||||
"accent": "#ffB900",
|
||||
"green": "#92D923",
|
||||
"greenDark": "#3d521b",
|
||||
"blueDark": "#0078D7",
|
||||
"blue": "#5EFBEF",
|
||||
"red": "#e81123",
|
||||
"redDark": "#8c131c",
|
||||
"yellow": "#ffB900",
|
||||
"yellowLight": "#ffc900",
|
||||
"yellowDark": "#cc9300",
|
||||
"light1": "#6f6e6d",
|
||||
"light2": "#7f7e7d",
|
||||
"light3": "#8f8e8d",
|
||||
"light4": "#9f9e9d",
|
||||
"light5": "#afaead",
|
||||
"light6": "#bfbebd",
|
||||
"light7": "#cfcecd",
|
||||
"light8": "#dfdedd",
|
||||
"light9": "#efeeed",
|
||||
"light10": "#fffefd"
|
||||
},
|
||||
"ui": {
|
||||
"*": {
|
||||
"arc": 5,
|
||||
"background": "panelBackground",
|
||||
"borderColor": "border",
|
||||
"caretForeground": "yellow",
|
||||
"color": "greyDot60",
|
||||
"foreground": "textColor",
|
||||
"hoverBackground": "greyDot85",
|
||||
"selectedBackground": "greyDot90",
|
||||
"selectedForeground": "textColor",
|
||||
"selectedInactiveBackground": "greyDot75",
|
||||
"selectionBackground": "greyDot95",
|
||||
"selectionForeground": "yellow",
|
||||
"separatorColor": "border",
|
||||
"underlineHeight": 1
|
||||
"arc": 0,
|
||||
"selectedBackground": "dark4",
|
||||
"selectionBackground": "dark3",
|
||||
"selectionInactiveBackground": "dark4",
|
||||
"selectedInactiveBackground": "dark5",
|
||||
"hoverBackground": "dark4",
|
||||
"headerBackground": "dark5",
|
||||
"background": "dark6",
|
||||
"disabledBackground": "dark7",
|
||||
"inactiveBackground": "dark8",
|
||||
"lineSeparatorColor": "dark9",
|
||||
"separatorColor": "dark10",
|
||||
"borderColor": "dark10",
|
||||
"focusedBorderColor": "dark10",
|
||||
"disabledForeground": "light1",
|
||||
"disabledText": "light2",
|
||||
"foreground": "light6",
|
||||
"inactiveForeground": "light4",
|
||||
"infoForeground": "light3",
|
||||
"selectionForeground": "light10",
|
||||
"shortcutForeground": "light7"
|
||||
},
|
||||
"ActionButton": {
|
||||
"pressedBackground": "greyDot95",
|
||||
"hoverBorderColor": "greyDot65",
|
||||
"pressedBorderColor": "greyDot60"
|
||||
},
|
||||
"Borders": {
|
||||
"ContrastBorderColor": "greyDot60",
|
||||
"color": "border"
|
||||
"pressedBackground": "dark3",
|
||||
"hoverBorderColor": "dark10",
|
||||
"pressedBorderColor": "dark10"
|
||||
},
|
||||
"Button": {
|
||||
"default": {
|
||||
"endBackground": "greyDot80",
|
||||
"endBorderColor": "greyDot70",
|
||||
"focusColor": "greyDot60",
|
||||
"focusedBorderColor": "greyDot50",
|
||||
"foreground": "greyDot33",
|
||||
"startBackground": "greyDot80",
|
||||
"startBorderColor": "greyDot70"
|
||||
"endBackground": "dark8",
|
||||
"endBorderColor": "dark9",
|
||||
"focusColor": "dark10",
|
||||
"focusedBorderColor": "dark10",
|
||||
"foreground": "accent",
|
||||
"startBackground": "dark8",
|
||||
"startBorderColor": "dark9"
|
||||
},
|
||||
"shadowWidth": 1,
|
||||
"endBackground": "greyDot80",
|
||||
"endBorderColor": "greyDot70",
|
||||
"focusedBorderColor": "greyDot50",
|
||||
"foreground": "greyDot20",
|
||||
"disabledBorderColor": "greyDot75",
|
||||
"startBackground": "greyDot80",
|
||||
"startBorderColor": "greyDot70"
|
||||
"focusedBorderColor": "dark10",
|
||||
"disabledText": "light2",
|
||||
"endBackground": "dark8",
|
||||
"endBorderColor": "dark9",
|
||||
"foreground": "light8",
|
||||
"disabledBorderColor": "dark8",
|
||||
"startBackground": "dark8",
|
||||
"startBorderColor": "dark9"
|
||||
},
|
||||
"Borders": {
|
||||
"ContrastBorderColor": "dark10",
|
||||
"color": "dark9"
|
||||
},
|
||||
"CheckBox": {
|
||||
"select": "light10"
|
||||
},
|
||||
"ColorChooser": {
|
||||
"foreground": "light6",
|
||||
"background": "dark6"
|
||||
},
|
||||
"CheckBox.disabledText": "greyDot50",
|
||||
"CheckBox.foreground": "greyDot33",
|
||||
"CheckBox.select": "greyDot50",
|
||||
"CheckBoxMenuItem.background": "greyDot80",
|
||||
"CheckBoxMenuItem.disabledBackground": "greyDot80",
|
||||
"CheckBoxMenuItem.disabledForeground": "greyDot50",
|
||||
"CheckBoxMenuItem.foreground": "greyDot20",
|
||||
"ColorChooser.background": "greyDot80",
|
||||
"ComboBox": {
|
||||
"ArrowButton": {
|
||||
"disabledIconColor": "textColorTransparent",
|
||||
"disabledIconColor": "light2",
|
||||
"iconColor": "yellow",
|
||||
"nonEditableBackground": "greyDot65"
|
||||
"background": "dark7",
|
||||
"nonEditableBackground": "dark7"
|
||||
},
|
||||
"background": "greyDot80",
|
||||
"disabledForeground": "greyDot50",
|
||||
"foreground": "greyDot20",
|
||||
"background": "dark8",
|
||||
"disabledForeground": "light2",
|
||||
"modifiedItemForeground": "yellow",
|
||||
"nonEditableBackground": "greyDot75",
|
||||
"selectionBackground": "greyDot95"
|
||||
"nonEditableBackground": "dark8"
|
||||
},
|
||||
"CompletionPopup": {
|
||||
"foreground": "greyDot20",
|
||||
"matchForeground": "yellow",
|
||||
"selectionBackground": "greyDot95",
|
||||
"selectionInactiveBackground": "greyDot85"
|
||||
"Advertiser": {
|
||||
"background": "dark5",
|
||||
"foreground": "light5"
|
||||
},
|
||||
"foreground": "light6",
|
||||
"matchForeground": "accent"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header": {
|
||||
"background": "dark5"
|
||||
}
|
||||
},
|
||||
"Component": {
|
||||
"iconColor": "yellow",
|
||||
"disabledBorderColor": "greyDot75",
|
||||
"infoForeground": "greyDot50",
|
||||
"arc": 0,
|
||||
"disabledBorderColor": "dark8",
|
||||
"borderColor": "dark9",
|
||||
"errorFocusColor": "red",
|
||||
"focusColor": "greyDot60",
|
||||
"focusWidth": 0,
|
||||
"focusedBorderColor": "greyDot65",
|
||||
"inactiveErrorFocusColor": "transparentRed",
|
||||
"inactiveWarningFocusColor": "transparentYellow",
|
||||
"focusColor": "dark10",
|
||||
"focusedBorderColor": "dark10",
|
||||
"inactiveErrorFocusColor": "redDark",
|
||||
"inactiveWarningFocusColor": "yellowDark",
|
||||
"infoForeground": "light3",
|
||||
"warningFocusColor": "yellow"
|
||||
},
|
||||
"Debugger.Variables.changedValueForeground": "yellow",
|
||||
"Debugger.Variables.evaluatingExpressionForeground": "lightBlue",
|
||||
"DefaultTabs.borderColor": "border",
|
||||
"DefaultTabs.inactiveUnderlineColor": "border",
|
||||
"DefaultTabs.underlineColor": "yellow",
|
||||
"DefaultTabs.underlineHeight": 1,
|
||||
"DefaultTabs.underlinedTabForeground": "yellow",
|
||||
"DragAndDrop.areaBackground": "greyDot75",
|
||||
"DragAndDrop.areaForeground": "greyDot25",
|
||||
"Counter": {
|
||||
"background": "dark3",
|
||||
"foreground": "yellow"
|
||||
},
|
||||
"Debugger": {
|
||||
"Variables": {
|
||||
"changedValueForeground": "yellow",
|
||||
"typeForeground": "blue",
|
||||
"valueForeground": "light10",
|
||||
"exceptionForeground": "red",
|
||||
"evaluatingExpressionForeground": "green"
|
||||
},
|
||||
"EvaluateExpression.background": "dark8"
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"underlineHeight": 1
|
||||
},
|
||||
"DefaultTabs": {
|
||||
"underlineHeight": 1,
|
||||
"background": "dark6",
|
||||
"inactiveUnderlineColor": "yellowDark",
|
||||
"underlineColor": "accent",
|
||||
"underlinedTabBackground": "dark4"
|
||||
},
|
||||
"DragAndDrop": {
|
||||
"areaBackground": "dark8",
|
||||
"areaForeground": "light4"
|
||||
},
|
||||
"Editor": {
|
||||
"background": "editorPaneBg",
|
||||
"foreground": "textColor",
|
||||
"shortcutForeground": "greyDot20"
|
||||
"SearchField": {
|
||||
"background": "dark8"
|
||||
},
|
||||
"Toolbar.borderColor": "dark8",
|
||||
"background": "dark4",
|
||||
"shortcutForeground": "light5"
|
||||
},
|
||||
"EditorPane": {
|
||||
"background": "editorPaneBg",
|
||||
"inactiveBackground": "editorDarkerBg",
|
||||
"inactiveForeground": "greyDot50",
|
||||
"selectionBackground": "editorBg",
|
||||
"selectionForeground": "textColor"
|
||||
"inactiveBackground": "dark7",
|
||||
"inactiveForeground": "light3",
|
||||
"splitBorder": "dark8",
|
||||
"background": "dark5"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"underlineHeight": 1,
|
||||
"hoverBackground": "greyDot95",
|
||||
"borderColor": "border",
|
||||
"background": "editorPaneBg",
|
||||
"inactiveColoredFileBackground": "editorPaneBg",
|
||||
"inactiveUnderlineColor": "editorPaneBg",
|
||||
"underlinedTabBackground": "editorPaneBg",
|
||||
"underlinedTabForeground": "yellow"
|
||||
"underlineHeight": 1
|
||||
},
|
||||
"FileColor": {
|
||||
"Gray": "greyDot70",
|
||||
"Gray": "dark5",
|
||||
"Blue": "#23282d",
|
||||
"Green": "#232d28",
|
||||
"Orange": "#2d2823",
|
||||
@@ -193,193 +215,358 @@
|
||||
"Yellow": "#3b3b19"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "dark8",
|
||||
"caretForeground": "yellow",
|
||||
"foreground": "textColor",
|
||||
"selectionBackground": "greyDot95",
|
||||
"inactiveBackground": "greyDot80",
|
||||
"inactiveForeground": "greyDot33",
|
||||
"background": "greyDot75"
|
||||
"foreground": "light6",
|
||||
"inactiveBackground": "dark7",
|
||||
"selectionForeground": "yellow"
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"infoForeground": "greyDot33",
|
||||
"lineSeparatorColor": "greyDot70"
|
||||
"lineSeparatorColor": "dark9",
|
||||
"infoForeground": "light3"
|
||||
},
|
||||
"IconBadge": {
|
||||
"errorBackground": "red",
|
||||
"infoBackground": "blue",
|
||||
"successBackground": "green",
|
||||
"warningBackground": "yellow"
|
||||
},
|
||||
"InformationHint": {
|
||||
"borderColor": "border"
|
||||
"borderColor": "green"
|
||||
},
|
||||
"InplaceRefactoringPopup": {
|
||||
"borderColor": "yellow"
|
||||
},
|
||||
"InplaceRefactoringPopup.borderColor": "border",
|
||||
"Label": {
|
||||
"disabledForeground": "greyDot33",
|
||||
"disabledText": "greyDot33",
|
||||
"foreground": "greyDot20",
|
||||
"infoForeground": "greyDot50"
|
||||
"errorForeground": "red",
|
||||
"successForeground": "green",
|
||||
"selectedForeground": "yellow",
|
||||
"foreground": "light6",
|
||||
"background": "dark7",
|
||||
"infoForeground": "light3"
|
||||
},
|
||||
"Link": {
|
||||
"activeForeground": "blue",
|
||||
"hoverForeground": "yellow",
|
||||
"secondaryForeground": "lightBlue",
|
||||
"visitedForeground": "purpleMonokaiPro",
|
||||
"pressedForeground": "deepBlue"
|
||||
"activeForeground": "accent",
|
||||
"hoverForeground": "light10",
|
||||
"secondaryForeground": "blue",
|
||||
"visitedForeground": "blueDark",
|
||||
"pressedForeground": "yellowDark"
|
||||
},
|
||||
"List": {
|
||||
"Tag": {
|
||||
"background": "dark7",
|
||||
"foreground": "light6"
|
||||
},
|
||||
"background": "dark7",
|
||||
"hoverInactiveBackground": "dark5",
|
||||
"hoverBackground": "dark4",
|
||||
"selectionBackground": "dark4",
|
||||
"selectionInactiveBackground": "dark5"
|
||||
},
|
||||
"MemoryIndicator": {
|
||||
"allocatedBackground": "dark10",
|
||||
"usedBackground": "redDark"
|
||||
},
|
||||
"Link.hoverForeground": "yellow",
|
||||
"MemoryIndicator.allocatedBackground": "green",
|
||||
"MemoryIndicator.usedBackground": "red",
|
||||
"Menu": {
|
||||
"background": "greyDot80",
|
||||
"disabledForeground": "greyDot70",
|
||||
"separatorColor": "greyDot75",
|
||||
"foreground": "textColor",
|
||||
"borderColor": "greyDot70",
|
||||
"acceleratorForeground": "greyDot33"
|
||||
"Selection.arc": 0,
|
||||
"borderColor": "dark9",
|
||||
"disabledBackground": "dark8",
|
||||
"acceleratorSelectionForeground": "light10",
|
||||
"acceleratorForeground": "light10"
|
||||
},
|
||||
"Notification.MoreButton.innerBorderColor": "greyDot65",
|
||||
"Notification.ToolWindow.errorBackground": "greyDot95",
|
||||
"Notification.ToolWindow.errorBorderColor": "red",
|
||||
"Notification.ToolWindow.errorForeground": "#EE7762",
|
||||
"Notification.ToolWindow.informativeBackground": "editorPaneBg",
|
||||
"Notification.ToolWindow.informativeBorderColor": "border",
|
||||
"Notification.ToolWindow.informativeForeground": "textColor",
|
||||
"Notification.ToolWindow.warningBackground": "greyDot95",
|
||||
"Notification.ToolWindow.warningBorderColor": "yellow",
|
||||
"Notification.ToolWindow.warningForeground": "yellow",
|
||||
"Notification.background": "editorPaneBg",
|
||||
"Notification.borderColor": "border",
|
||||
"Notification.errorBackground": "greyDot95",
|
||||
"Notification.errorBorderColor": "red",
|
||||
"Notification.errorForeground": "#EE7762",
|
||||
"Notification.foreground": "textColor",
|
||||
"NotificationsToolwindow.newNotification.background": "editorPaneBg",
|
||||
"NotificationsToolwindow.newNotification.hoverBackground": "greyDot95",
|
||||
"OptionPane": {
|
||||
"background": "editorPaneBg",
|
||||
"foreground": "greyDot20"
|
||||
"Notification": {
|
||||
"arc": 0,
|
||||
"ToolWindow": {
|
||||
"errorBackground": "dark4",
|
||||
"errorBorderColor": "red",
|
||||
"errorForeground": "light10",
|
||||
"informativeBackground": "dark4",
|
||||
"informativeBorderColor": "green",
|
||||
"informativeForeground": "light10",
|
||||
"warningBackground": "dark4",
|
||||
"warningBorderColor": "yellow",
|
||||
"warningForeground": "light10"
|
||||
},
|
||||
"background": "dark4",
|
||||
"borderColor": "dark9",
|
||||
"errorBackground": "dark4",
|
||||
"errorBorderColor": "red",
|
||||
"errorForeground": "light10",
|
||||
"foreground": "light10"
|
||||
},
|
||||
"NotificationsToolwindow": {
|
||||
"newNotification.background": "dark4",
|
||||
"newNotification.hoverBackground": "dark3"
|
||||
},
|
||||
"Panel": {
|
||||
"background": "editorPaneBg",
|
||||
"foreground": "textColor"
|
||||
"background": "dark6",
|
||||
"foreground": "light6"
|
||||
},
|
||||
"ParameterInfo.background": "greyDot85",
|
||||
"ParameterInfo.borderColor": "greyDot75",
|
||||
"ParameterInfo.currentOverloadBackground": "greyDot65",
|
||||
"ParameterInfo.currentParameterForeground": "yellow",
|
||||
"ParameterInfo.foreground": "greyDot25",
|
||||
"ParameterInfo.infoForeground": "greyDot33",
|
||||
"ParameterInfo.lineSeparatorColor": "greyDot75",
|
||||
"PasswordField.background": "greyDot75",
|
||||
"Plugins.Button.installBackground": "greyDot80",
|
||||
"Plugins.Button.installBorderColor": "greyDot60",
|
||||
"Plugins.Button.installFillBackground": "greyDot80",
|
||||
"Plugins.Button.installFillForeground": "greyDot25",
|
||||
"Plugins.Button.installForeground": "yellow",
|
||||
"Plugins.SearchField.background": "greyDot75",
|
||||
"Plugins.SectionHeader.background": "greyDot75",
|
||||
"Plugins.Tab.hoverBackground": "editorBg",
|
||||
"Plugins.Tab.selectedBackground": "editorPaneBg",
|
||||
"Plugins.background": "editorPaneBg",
|
||||
"Plugins.disabledForeground": "greyDot50",
|
||||
"Plugins.hoverBackground": "editorBg",
|
||||
"Plugins.lightSelectionBackground": "#242220",
|
||||
"Plugins.tagBackground": "editorBg",
|
||||
"Plugins.tagForeground": "greyDot33",
|
||||
"Popup.Advertiser.background": "greyDot85",
|
||||
"Popup.Advertiser.foreground": "greyDot50",
|
||||
"Popup.Header.activeBackground": "greyDot75",
|
||||
"Popup.Header.inactiveBackground": "greyDot85",
|
||||
"Popup.paintBorder": false,
|
||||
"PopupMenu.background": "greyDot80",
|
||||
"PopupMenuSeparator.stripeWidth": 1,
|
||||
"ProgressBar.failedColor": "red",
|
||||
"ProgressBar.failedEndColor": "greyDot75",
|
||||
"ProgressBar.indeterminateEndColor": "#FD971F",
|
||||
"ProgressBar.indeterminateStartColor": "yellow",
|
||||
"ProgressBar.passedColor": "green",
|
||||
"ProgressBar.passedEndColor": "greyDot75",
|
||||
"ProgressBar.progressColor": "yellow",
|
||||
"ProgressBar.trackColor": "greyDot75",
|
||||
"RadioButton.background": "greyDot80",
|
||||
"RadioButton.disabledText": "greyDot70",
|
||||
"RadioButtonMenuItem.disabledBackground": "greyDot80",
|
||||
"ScrollPane.background": "greyDot80",
|
||||
"SearchEverywhere.Advertiser.foreground": "greyDot50",
|
||||
"SearchEverywhere.Header.background": "greyDot80",
|
||||
"SearchEverywhere.List.separatorForeground": "greyDot50",
|
||||
"SearchEverywhere.SearchField.background": "greyDot75",
|
||||
"SearchEverywhere.SearchField.infoForeground": "greyDot33",
|
||||
"SearchEverywhere.Tab.selectedBackground": "greyDot95",
|
||||
"SearchEverywhere.Tab.selectedForeground": "yellow",
|
||||
"SearchMatch.endBackground": "yellow",
|
||||
"SearchMatch.startBackground": "yellow",
|
||||
"SidePanel.background": "greyDot85",
|
||||
"SpeedSearch.errorForeground": "red",
|
||||
"SpeedSearch.foreground": "yellow",
|
||||
"SplitPane.highlight": "yellow",
|
||||
"TabbedPane.disabledUnderlineColor": "editorPaneBg",
|
||||
"TabbedPane.focus": "greyDot75",
|
||||
"TabbedPane.focusColor": "greyDot33",
|
||||
"TabbedPane.tabSelectionHeight": 1,
|
||||
"TabbedPane.underlineColor": "yellow",
|
||||
"Table.dropLineColor": "greyDot75",
|
||||
"Table.dropLineShortColor": "greyDot70",
|
||||
"Table.focusCellBackground": "greyDot85",
|
||||
"Table.focusCellForeground": "yellow",
|
||||
"Table.sortIconColor": "yellow",
|
||||
"Table.stripeColor": "greyDot75",
|
||||
"TableHeader.background": "greyDot85",
|
||||
"TableHeader.bottomSeparatorColor": "greyDot65",
|
||||
"TextArea.background": "greyDot75",
|
||||
"TextArea.caretForeground": "yellow",
|
||||
"TextArea.inactiveBackground": "greyDot80",
|
||||
"TextArea.selectionBackground": "greyDot95",
|
||||
"TextField.background": "greyDot75",
|
||||
"TextField.caretForeground": "yellow",
|
||||
"TextField.foreground": "greyDot33",
|
||||
"TextField.highlight": "yellow",
|
||||
"TextField.inactiveForeground": "greyDot33",
|
||||
"TextPane.inactiveBackground": "greyDot80",
|
||||
"TextPane.inactiveForeground": "greyDot50",
|
||||
"TitlePane.background": "greyDot85",
|
||||
"ToggleButton.buttonColor": "greyDot65",
|
||||
"ToggleButton.offBackground": "greyDot75",
|
||||
"ToggleButton.offForeground": "greyDot25",
|
||||
"ToggleButton.onBackground": "yellow",
|
||||
"ToggleButton.onForeground": "greyDot80",
|
||||
"ToolBar.borderHandleColor": "greyDot65",
|
||||
"ToolTip.Actions.background": "greyDot80",
|
||||
"ToolTip.Actions.infoForeground": "greyDot50",
|
||||
"ToolTip.background": "greyDot80",
|
||||
"ToolTip.borderColor": "border",
|
||||
"ToolTip.infoForeground": "greyDot50",
|
||||
"ToolWindow.Button.hoverBackground": "greyDot95",
|
||||
"ToolWindow.Button.selectedBackground": "greyDot95",
|
||||
"ToolWindow.Button.selectedForeground": "yellow",
|
||||
"ToolWindow.Header.background": "greyDot85",
|
||||
"ToolWindow.Header.inactiveBackground": "editorPaneBg",
|
||||
"ToolWindow.HeaderTab.hoverBackground": "consoleBackground",
|
||||
"ToolWindow.HeaderTab.hoverInactiveBackground": "editorBg",
|
||||
"ToolWindow.HeaderTab.underlineColor": "yellow",
|
||||
"ToolWindow.HeaderTab.underlineHeight": 1,
|
||||
"Tooltip.separatorColor": "border",
|
||||
"Tree.background": "greyDot85",
|
||||
"Tree.foreground": "textColor",
|
||||
"Tree.hoverBackground": "greyDot95",
|
||||
"Tree.modifiedItemForeground": "yellow",
|
||||
"Tree.selectionBackground": "greyDot95",
|
||||
"Tree.selectionInactiveBackground": "greyDot95",
|
||||
"ValidationTooltip.errorBackground": "greyDot95",
|
||||
"ValidationTooltip.errorBorderColor": "red",
|
||||
"ValidationTooltip.warningBackground": "greyDot95",
|
||||
"ValidationTooltip.warningBorderColor": "yellow",
|
||||
"VersionControl.FileHistory.Commit.selectedBranchBackground": "greyDot95",
|
||||
"VersionControl.Log.Commit.currentBranchBackground": "greyDot85",
|
||||
"VersionControl.Log.Commit.hoveredBackground": "greyDot95",
|
||||
"VersionControl.Log.Commit.unmatchedForeground": "greyDot25",
|
||||
"WelcomeScreen.Details.background": "greyDot80",
|
||||
"WelcomeScreen.Projects.background": "greyDot85",
|
||||
"WelcomeScreen.Projects.selectionBackground": "greyDot95",
|
||||
"WelcomeScreen.SidePanel.background": "greyDot80",
|
||||
"WelcomeScreen.background": "greyDot80",
|
||||
"WelcomeScreen.borderColor": "border",
|
||||
"WelcomeScreen.separatorColor": "border",
|
||||
"Window.border": "0,0,0,0,4d4d4d"
|
||||
"ParameterInfo": {
|
||||
"background": "dark5",
|
||||
"currentOverloadBackground": "yellow",
|
||||
"currentParameterForeground": "blue",
|
||||
"foreground": "light6",
|
||||
"infoForeground": "light2",
|
||||
"lineSeparatorColor": "dark9"
|
||||
},
|
||||
"PasswordField": {
|
||||
"capsLockIconColor": "red",
|
||||
"background": "dark8"
|
||||
},
|
||||
"Plugins": {
|
||||
"Button": {
|
||||
"installBackground": "dark8",
|
||||
"installBorderColor": "dark9",
|
||||
"installFillBackground": "dark8",
|
||||
"installFillForeground": "light6",
|
||||
"installFocusedBackground": "dark5",
|
||||
"installForeground": "light10"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "dark8"
|
||||
},
|
||||
"SectionHeader": {
|
||||
"background": "dark5",
|
||||
"foreground": "light5"
|
||||
},
|
||||
"hoverBackground": "dark4",
|
||||
"background": "dark7",
|
||||
"lightSelectionBackground": "dark5",
|
||||
"tagBackground": "dark8",
|
||||
"tagForeground": "light10"
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"background": "dark4",
|
||||
"borderColor": "dark8",
|
||||
"foreground": "light3"
|
||||
},
|
||||
"Header": {
|
||||
"activeBackground": "dark4",
|
||||
"activeForeground": "light4",
|
||||
"inactiveBackground": "dark5"
|
||||
},
|
||||
"Selection": {
|
||||
"arc": 0
|
||||
}
|
||||
},
|
||||
"PopupMenu": {
|
||||
"Selection": {
|
||||
"arc": 0
|
||||
},
|
||||
"background": "dark6",
|
||||
"foreground": "light6"
|
||||
},
|
||||
"ProgressBar": {
|
||||
"failedColor": "red",
|
||||
"failedEndColor": "dark6",
|
||||
"indeterminateEndColor": "yellowDark",
|
||||
"indeterminateStartColor": "yellow",
|
||||
"passedColor": "green",
|
||||
"passedEndColor": "dark6",
|
||||
"progressColor": "yellow",
|
||||
"trackColor": "dark6"
|
||||
},
|
||||
"RadioButtonMenuItem": {
|
||||
"background": "dark9",
|
||||
"foreground": "light6",
|
||||
"acceleratorForeground": "blueDark",
|
||||
"selectionForeground": "yellow"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "dark6",
|
||||
"pressedBackground": "dark3",
|
||||
"runningBackground": "dark5"
|
||||
},
|
||||
"ScrollBar": {
|
||||
"hoverThumbColor": "dark10"
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "dark4",
|
||||
"foreground": "light3"
|
||||
},
|
||||
"Header": {
|
||||
"background": "dark5"
|
||||
},
|
||||
"List": {
|
||||
"separatorForeground": "dark9",
|
||||
"settingsBackground": "dark5"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "dark9",
|
||||
"borderColor": "dark9",
|
||||
"infoForeground": "light2"
|
||||
},
|
||||
"Tab": {
|
||||
"selectedBackground": "dark2",
|
||||
"selectedForeground": "yellow"
|
||||
}
|
||||
},
|
||||
"SearchMatch": {
|
||||
"endBackground": "yellow",
|
||||
"startBackground": "yellow"
|
||||
},
|
||||
"SegmentedButton": {
|
||||
"focusedSelectedButtonColor": "dark3",
|
||||
"selectedButtonColor": "dark4",
|
||||
"selectedStartBorderColor": "dark9",
|
||||
"selectedEndBorderColor": "dark9"
|
||||
},
|
||||
"Separator": {
|
||||
"separatorColor": "dark9"
|
||||
},
|
||||
"SidePanel": {
|
||||
"background": "dark5"
|
||||
},
|
||||
"SpeedSearch": {
|
||||
"borderColor": "dark9",
|
||||
"errorForeground": "red",
|
||||
"foreground": "yellow"
|
||||
},
|
||||
"SplitPane": {
|
||||
"background": "dark5",
|
||||
"highlight": "yellow"
|
||||
},
|
||||
"TabbedPane": {
|
||||
"contentAreaColor": "dark7",
|
||||
"disabledForeground": "light2",
|
||||
"disabledUnderlineColor": "light2",
|
||||
"focusColor": "dark4",
|
||||
"focus": "dark9",
|
||||
"tabSelectionArc": 0,
|
||||
"underlineColor": "accent"
|
||||
},
|
||||
"Table": {
|
||||
"background": "dark7",
|
||||
"alternativeRowBackground": "dark5",
|
||||
"dropLineColor": "dark10",
|
||||
"dropLineShortColor": "dark10",
|
||||
"focusCellBackground": "dark4",
|
||||
"focusCellForeground": "yellow",
|
||||
"lightSelectionBackground": "dark4",
|
||||
"gridColor": "dark9",
|
||||
"sortIconColor": "yellow",
|
||||
"stripeColor": "dark9"
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "dark4",
|
||||
"bottomSeparatorColor": "dark9"
|
||||
},
|
||||
"TextArea": {
|
||||
"background": "dark8",
|
||||
"foreground": "light6",
|
||||
"inactiveBackground": "dark7",
|
||||
"inactiveForeground": "light2"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "dark8",
|
||||
"caretForeground": "yellow",
|
||||
"foreground": "light6",
|
||||
"highlight": "yellow",
|
||||
"inactiveForeground": "light2",
|
||||
"selectionBackground": "dark4",
|
||||
"selectionForeground": "yellow"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "dark6",
|
||||
"inactiveBackground": "dark7",
|
||||
"inactiveForeground": "light2",
|
||||
"selectionBackground": "dark4"
|
||||
},
|
||||
"TitlePane": {
|
||||
"background": "dark5"
|
||||
},
|
||||
"ToggleButton": {
|
||||
"buttonColor": "dark9",
|
||||
"disabledText": "light2",
|
||||
"offBackground": "dark4",
|
||||
"offForeground": "light6",
|
||||
"onBackground": "yellow",
|
||||
"onForeground": "dark1"
|
||||
},
|
||||
"ToolBar": {
|
||||
"borderHandleColor": "dark9"
|
||||
},
|
||||
"ToolTip": {
|
||||
"Actions.background": "dark5",
|
||||
"Actions.infoForeground": "light3",
|
||||
"background": "dark5",
|
||||
"paintBorder": true,
|
||||
"infoForeground": "light2"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button": {
|
||||
"selectedBackground": "dark4",
|
||||
"selectedForeground": "yellow"
|
||||
},
|
||||
"Header": {
|
||||
"background": "dark4",
|
||||
"inactiveBackground": "dark5"
|
||||
},
|
||||
"HeaderTab": {
|
||||
"underlineHeight": 1,
|
||||
"hoverInactiveBackground": "dark5",
|
||||
"inactiveUnderlineColor": "yellowDark",
|
||||
"underlinedTabInactiveBackground": "dark3",
|
||||
"underlinedTabBackground": "dark2",
|
||||
"underlineColor": "yellow"
|
||||
},
|
||||
"background": "dark7"
|
||||
},
|
||||
"Tree": {
|
||||
"background": "dark7",
|
||||
"foreground": "light6",
|
||||
"hash": "dark9",
|
||||
"hoverInactiveBackground": "dark5",
|
||||
"modifiedItemForeground": "yellow",
|
||||
"selectionInactiveBackground": "dark5"
|
||||
},
|
||||
"ScrollPane": {
|
||||
"background": "dark7",
|
||||
"foreground": "light6"
|
||||
},
|
||||
"ValidationTooltip": {
|
||||
"errorBackground": "dark4",
|
||||
"errorBorderColor": "red",
|
||||
"warningBackground": "dark4",
|
||||
"warningBorderColor": "yellow"
|
||||
},
|
||||
"VersionControl": {
|
||||
"MarkerPopup.Toolbar.background": "dark4",
|
||||
"FileHistory": {
|
||||
"Commit.selectedBranchBackground": "dark7"
|
||||
},
|
||||
"Log": {
|
||||
"Commit": {
|
||||
"currentBranchBackground": "dark7",
|
||||
"unmatchedForeground": "light2",
|
||||
"selectionForeground": "light10",
|
||||
"selectionInactiveBackground": "dark9",
|
||||
"hoveredBackground": "dark3",
|
||||
"selectionBackground": "dark4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "dark7",
|
||||
"foreground": "light7"
|
||||
},
|
||||
"WelcomeScreen": {
|
||||
"Details": {
|
||||
"background": "dark7"
|
||||
},
|
||||
"Projects": {
|
||||
"background": "dark6",
|
||||
"selectionBackground": "dark55",
|
||||
"selectionInactiveBackground": "dark5"
|
||||
},
|
||||
"SidePanel": {
|
||||
"background": "dark5"
|
||||
},
|
||||
"background": "dark6",
|
||||
"separatorColor": "dark9"
|
||||
},"Window.border": "0,0,0,0,525150"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -68,8 +68,7 @@
|
||||
"ComboPopup.border": "1,1,1,1,64647A",
|
||||
"CompletionPopup": {
|
||||
"matchForeground": "#BF616A",
|
||||
"selectionBackground": "#5a6173",
|
||||
"selectionInactiveBackground": "#383C4A"
|
||||
"selectionBackground": "#383C4A"
|
||||
},
|
||||
"Component": {
|
||||
"errorFocusColor": "#bf4c53",
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#262b33",
|
||||
"button": "#383C4A",
|
||||
"table": "#41416A",
|
||||
"tree": "#09477170",
|
||||
"tree": "#0f3d56",
|
||||
"hl": "#444A58",
|
||||
"notif": "#262a33",
|
||||
"hc": "#262b33",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#5294E2",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#262b33",
|
||||
"button": "#383C4A",
|
||||
"table": "#41416A",
|
||||
"tree": "#09477170",
|
||||
"tree": "#0f3d56",
|
||||
"hl": "#444A58",
|
||||
"notif": "#262a33",
|
||||
"hc": "#2f343f",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#5294E2",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#21252B",
|
||||
"button": "#3A3F4B",
|
||||
"table": "#383E49",
|
||||
"tree": "#3A3F4B80",
|
||||
"tree": "#303540",
|
||||
"hl": "#383D48",
|
||||
"notif": "#282C34",
|
||||
"hc": "#21252B",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#2979ff",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#21252B",
|
||||
"button": "#3A3F4B",
|
||||
"table": "#383E49",
|
||||
"tree": "#3A3F4B80",
|
||||
"tree": "#303540",
|
||||
"hl": "#383D48",
|
||||
"notif": "#282C34",
|
||||
"hc": "#282C34",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#2979ff",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#eaeaeb",
|
||||
"button": "#DBDBDC",
|
||||
"table": "#DBDBDC",
|
||||
"tree": "#DBDBDC80",
|
||||
"tree": "#e8e8e8",
|
||||
"hl": "#FFFFFF",
|
||||
"notif": "#F2F2F2",
|
||||
"hc": "#eaeaeb",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#2979ff",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#eaeaeb",
|
||||
"button": "#DBDBDC",
|
||||
"table": "#DBDBDC",
|
||||
"tree": "#DBDBDC80",
|
||||
"tree": "#e8e8e8",
|
||||
"hl": "#FFFFFF",
|
||||
"notif": "#F2F2F2",
|
||||
"hc": "#F4F4F4",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#2979ff",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#191A21",
|
||||
"button": "#393C4B",
|
||||
"table": "#44475A",
|
||||
"tree": "#44475A50",
|
||||
"tree": "#2f3342",
|
||||
"hl": "#44475a",
|
||||
"notif": "#1D2228",
|
||||
"hc": "#191A21",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#FF79C5",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#191A21",
|
||||
"button": "#393C4B",
|
||||
"table": "#44475A",
|
||||
"tree": "#44475A50",
|
||||
"tree": "#2f3342",
|
||||
"hl": "#44475a",
|
||||
"notif": "#1D2228",
|
||||
"hc": "#282A36",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#FF79C5",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#fafbfc",
|
||||
"button": "#edf1f5",
|
||||
"table": "#cce5ff",
|
||||
"tree": "#e1e4e87c",
|
||||
"tree": "#ebedf0",
|
||||
"hl": "#CCE5FF",
|
||||
"notif": "#DFECFE",
|
||||
"hc": "#fafbfc",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#79CB60",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#f9826c",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#f9826c",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#fafbfc",
|
||||
"button": "#edf1f5",
|
||||
"table": "#cce5ff",
|
||||
"tree": "#e1e4e87c",
|
||||
"tree": "#ebedf0",
|
||||
"hl": "#CCE5FF",
|
||||
"notif": "#DFECFE",
|
||||
"hc": "#F7F8FA",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#79CB60",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#f0f0f0",
|
||||
"button": "#d9d9d9",
|
||||
"table": "#d3e8f8",
|
||||
"tree": "#d3e8f87c",
|
||||
"tree": "#dfebf4",
|
||||
"hl": "#CCCCCC",
|
||||
"notif": "#F0F0F0",
|
||||
"hc": "#f0f0f0",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#2AA298",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#f0f0f0",
|
||||
"button": "#d9d9d9",
|
||||
"table": "#d3e8f8",
|
||||
"tree": "#d3e8f87c",
|
||||
"tree": "#dfebf4",
|
||||
"hl": "#CCCCCC",
|
||||
"notif": "#F0F0F0",
|
||||
"hc": "#F0F0F0",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#2AA298",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#1A1A1A",
|
||||
"button": "#2A2A2A",
|
||||
"table": "#323232",
|
||||
"tree": "#323232C0",
|
||||
"tree": "#2d2d2d",
|
||||
"hl": "#3F3F3F",
|
||||
"notif": "#1A1A1A",
|
||||
"hc": "#1A1A1A",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#FF9800",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#1A1A1A",
|
||||
"button": "#2A2A2A",
|
||||
"table": "#323232",
|
||||
"tree": "#323232C0",
|
||||
"tree": "#2d2d2d",
|
||||
"hl": "#3F3F3F",
|
||||
"notif": "#1A1A1A",
|
||||
"hc": "#212121",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#FF9800",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#090B10",
|
||||
"button": "#191A21",
|
||||
"table": "#1A1C25",
|
||||
"tree": "#717CB430",
|
||||
"tree": "#212639",
|
||||
"hl": "#1F2233",
|
||||
"notif": "#090B10",
|
||||
"hc": "#090B10",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#84ffff",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#090B10",
|
||||
"button": "#191A21",
|
||||
"table": "#1A1C25",
|
||||
"tree": "#717CB430",
|
||||
"tree": "#212639",
|
||||
"hl": "#1F2233",
|
||||
"notif": "#090B10",
|
||||
"hc": "#0F111A",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#84ffff",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#EEEEEE",
|
||||
"button": "#F3F4F5",
|
||||
"table": "#E7E7E8",
|
||||
"tree": "#80CBC440",
|
||||
"tree": "#d7eeec",
|
||||
"hl": "#E7E7E8",
|
||||
"notif": "#eae8e8",
|
||||
"hc": "#EEEEEE",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#00BCD4",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#EEEEEE",
|
||||
"button": "#F3F4F5",
|
||||
"table": "#E7E7E8",
|
||||
"tree": "#80CBC440",
|
||||
"tree": "#d7eeec",
|
||||
"hl": "#E7E7E8",
|
||||
"notif": "#eae8e8",
|
||||
"hc": "#FAFAFA",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#00BCD4",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#1E272C",
|
||||
"button": "#2E3C43",
|
||||
"table": "#314549",
|
||||
"tree": "#546E7A70",
|
||||
"tree": "#30454d",
|
||||
"hl": "#425B67",
|
||||
"notif": "#1E272C",
|
||||
"hc": "#1E272C",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#009688",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#1E272C",
|
||||
"button": "#2E3C43",
|
||||
"table": "#314549",
|
||||
"tree": "#546E7A70",
|
||||
"tree": "#30454d",
|
||||
"hl": "#425B67",
|
||||
"notif": "#1E272C",
|
||||
"hc": "#263238",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#009688",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"selBg20": "#44426720",
|
||||
"selFg": "#FFFFFF",
|
||||
"activeFg": "#FFFFFF",
|
||||
"border": "#2b2a3e",
|
||||
"border": "#323147",
|
||||
"excl": "#2f2e43",
|
||||
"second": "#34324a",
|
||||
"dis": "#515772",
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#202331",
|
||||
"button": "#303348",
|
||||
"table": "#414863",
|
||||
"tree": "#676E95",
|
||||
"tree": "#3b415b",
|
||||
"hl": "#444267",
|
||||
"notif": "#202331",
|
||||
"hc": "#202331",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#ab47bc",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"selBg20": "#44426720",
|
||||
"selFg": "#FFFFFF",
|
||||
"activeFg": "#FFFFFF",
|
||||
"border": "#2b2a3e",
|
||||
"border": "#323147",
|
||||
"excl": "#2f2e43",
|
||||
"second": "#34324a",
|
||||
"dis": "#515772",
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#202331",
|
||||
"button": "#303348",
|
||||
"table": "#414863",
|
||||
"tree": "#676E95",
|
||||
"tree": "#3b415b",
|
||||
"hl": "#444267",
|
||||
"notif": "#202331",
|
||||
"hc": "#292D3E",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#ab47bc",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#ffd866",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#ffd866",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#191a2a",
|
||||
"button": "#444a73",
|
||||
"table": "#2f334d",
|
||||
"tree": "#444a7370",
|
||||
"tree": "#2f3452",
|
||||
"hl": "#444a73",
|
||||
"notif": "#191a2a",
|
||||
"hc": "#191a2a",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#74a0f1",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#191a2a",
|
||||
"button": "#444a73",
|
||||
"table": "#2f334d",
|
||||
"tree": "#444a7370",
|
||||
"tree": "#2f3452",
|
||||
"hl": "#444a73",
|
||||
"notif": "#191a2a",
|
||||
"hc": "#222436",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#74a0f1",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#010e1a",
|
||||
"button": "#0b253a",
|
||||
"table": "#13344f",
|
||||
"tree": "#13344f50",
|
||||
"tree": "#13344f",
|
||||
"hl": "#084d81",
|
||||
"notif": "#01111d",
|
||||
"hc": "#010e1a",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#7e57c2",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#010e1a",
|
||||
"button": "#0b253a",
|
||||
"table": "#13344f",
|
||||
"tree": "#13344f50",
|
||||
"tree": "#13344f",
|
||||
"hl": "#084d81",
|
||||
"notif": "#01111d",
|
||||
"hc": "#011627",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#7e57c2",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#00252E",
|
||||
"button": "#073642",
|
||||
"table": "#003946",
|
||||
"tree": "#2E4C5280",
|
||||
"tree": "#023c45",
|
||||
"hl": "#005a6f",
|
||||
"notif": "#2E4C52",
|
||||
"hc": "#00252E",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#d33682",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#00252E",
|
||||
"button": "#073642",
|
||||
"table": "#003946",
|
||||
"tree": "#2E4C5280",
|
||||
"tree": "#023c45",
|
||||
"hl": "#005a6f",
|
||||
"notif": "#2E4C52",
|
||||
"hc": "#002B36",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#d33682",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#eee8d5",
|
||||
"button": "#d8d4c4",
|
||||
"table": "#d1cbb8",
|
||||
"tree": "#e8dcb6b0",
|
||||
"tree": "#f0e4bf",
|
||||
"hl": "#d1cbb8",
|
||||
"notif": "#EDE8D4",
|
||||
"hc": "#eee8d5",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#d33682",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"cs": "#eee8d5",
|
||||
"button": "#d8d4c4",
|
||||
"table": "#d1cbb8",
|
||||
"tree": "#e8dcb6b0",
|
||||
"tree": "#f0e4bf",
|
||||
"hl": "#d1cbb8",
|
||||
"notif": "#EDE8D4",
|
||||
"hc": "#fdf6e3",
|
||||
@@ -73,6 +73,10 @@
|
||||
"pressedBackground": "accent50",
|
||||
"pressedBorderColor": "accent50"
|
||||
},
|
||||
"ActionsList": {
|
||||
"icon.gap": 12,
|
||||
"mnemonic.icon.gap": 12
|
||||
},
|
||||
"ActionToolbar": {
|
||||
"background": "hc"
|
||||
},
|
||||
@@ -127,8 +131,9 @@
|
||||
"BookmarkIcon.background": "accent",
|
||||
"Borders.ContrastBorderColor": "bg",
|
||||
"Borders.color": "border",
|
||||
"Breakpoint.iconHoverAlpha": 0.35,
|
||||
"Button": {
|
||||
"arc": 0,
|
||||
"arc": 8,
|
||||
"background": "bg",
|
||||
"darcula": {
|
||||
"borderColor": "button",
|
||||
@@ -181,7 +186,10 @@
|
||||
"shadowColor": "shadow",
|
||||
"shadowWidth": 0,
|
||||
"startBackground": "table",
|
||||
"startBorderColor": "button"
|
||||
"startBorderColor": "button",
|
||||
"ToolWindow": {
|
||||
"arc": 40
|
||||
}
|
||||
},
|
||||
"Canvas": {
|
||||
"Tooltip.background": "notif",
|
||||
@@ -256,6 +264,32 @@
|
||||
"accessDot": "accent",
|
||||
"dropdownBorder": "second",
|
||||
"pillBackground": "second"
|
||||
},
|
||||
"Users": {
|
||||
"1": {
|
||||
"Background": "green",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"2": {
|
||||
"Background": "blue",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"3": {
|
||||
"Background": "red",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"4": {
|
||||
"Background": "purple",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"5": {
|
||||
"Background": "yellow",
|
||||
"Foreground": "fg"
|
||||
},
|
||||
"6": {
|
||||
"Background": "orange",
|
||||
"Foreground": "fg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ColorChooser": {
|
||||
@@ -293,7 +327,13 @@
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"ComboPopup.border": "1,1,1,1,#d33682",
|
||||
"CompletionPopup": {
|
||||
"Advertiser": {
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"background": "second",
|
||||
"foreground": "fg",
|
||||
"grayForeground": "text",
|
||||
@@ -313,8 +353,12 @@
|
||||
"selectionInactiveInfoForeground": "text",
|
||||
"selectionInfoForeground": "selFg"
|
||||
},
|
||||
"ComplexPopup": {
|
||||
"Header.background": "notif"
|
||||
},
|
||||
"Component": {
|
||||
"arc": 4,
|
||||
"focusWidth": 2,
|
||||
"borderColor": "hl",
|
||||
"disabledBorderColor": "dis",
|
||||
"focusColor": "accent",
|
||||
@@ -351,6 +395,7 @@
|
||||
},
|
||||
"desktop": "hc",
|
||||
"Debugger": {
|
||||
"EvaluateExpression.background": "bg",
|
||||
"Variables": {
|
||||
"changedValueForeground": "accent",
|
||||
"collectingDataForeground": "text",
|
||||
@@ -358,13 +403,15 @@
|
||||
"evaluatingExpressionForeground": "text",
|
||||
"exceptionForeground": "yellow",
|
||||
"modifyingValueForeground": "accent",
|
||||
"valueForeground": "accent"
|
||||
"valueForeground": "accent",
|
||||
"typeForeground": "text"
|
||||
}
|
||||
},
|
||||
"DebuggerTabs": {
|
||||
"active.background": "hl",
|
||||
"selectedBackground": "hl",
|
||||
"underlinedTabBackground": "table"
|
||||
"underlinedTabBackground": "table",
|
||||
"underlineHeight": 2
|
||||
},
|
||||
"DebuggerPopup": {
|
||||
"borderColor": "bg"
|
||||
@@ -380,6 +427,7 @@
|
||||
"inactiveMaskColor": "hc",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -398,13 +446,21 @@
|
||||
"backgroundBorderColor": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "accent",
|
||||
"foregroundColor": "fg"
|
||||
"foregroundColor": "fg",
|
||||
"rowBackground": "accent70"
|
||||
},
|
||||
"dropArea.base": "accent",
|
||||
"Editor": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"shortcutForeground": "text"
|
||||
"shortcutForeground": "text",
|
||||
"SearchField": {
|
||||
"background": "cs",
|
||||
"borderInsets": "8,12,8,12"
|
||||
},
|
||||
"Toolbar": {
|
||||
"borderColor": "border"
|
||||
}
|
||||
},
|
||||
"EditorGroupsTabs": {
|
||||
"background": "bg",
|
||||
@@ -423,7 +479,8 @@
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg"
|
||||
"selectionForeground": "activeFg",
|
||||
"splitBorder": "border"
|
||||
},
|
||||
"EditorTabs": {
|
||||
"active.background": "table",
|
||||
@@ -441,7 +498,10 @@
|
||||
"inactiveUnderlineColor": "dis",
|
||||
"selectedBackground": "table",
|
||||
"selectedForeground": "fg",
|
||||
"tabInsets": "-10,10,-10,10",
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlineArc": 4,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg"
|
||||
},
|
||||
@@ -472,7 +532,7 @@
|
||||
"defaultButtonBorderColor": "accent"
|
||||
},
|
||||
"FormattedTextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveBackground": "button",
|
||||
@@ -509,6 +569,9 @@
|
||||
"disabledSeparatorColor": "border",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"Gutter": {
|
||||
"VcsChanges.width": 4
|
||||
},
|
||||
"GutterTooltip": {
|
||||
"borderColor": "bg",
|
||||
"infoForeground": "text",
|
||||
@@ -522,11 +585,14 @@
|
||||
"background": "bg",
|
||||
"backgroundColor": "bg",
|
||||
"borderColor": "border",
|
||||
"defaultTextBorderInsets": "16,16,16,16",
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"shortcutForeground": "text",
|
||||
"shortcutTextColor": "text",
|
||||
"textColor": "fg"
|
||||
"smallTextBorderInsets": "8,12,8,12",
|
||||
"textColor": "fg",
|
||||
"verticalGap": 8
|
||||
},
|
||||
"Hg.Log.Ref": {
|
||||
"Branch": "accent",
|
||||
@@ -594,6 +660,7 @@
|
||||
"link": "accent",
|
||||
"Link": {
|
||||
"activeForeground": "accent",
|
||||
"focusedBorderColor": "accent",
|
||||
"hoverForeground": "accent",
|
||||
"pressedForeground": "accent",
|
||||
"secondaryForeground": "text",
|
||||
@@ -605,27 +672,61 @@
|
||||
"link.visited.foreground": "accent",
|
||||
"List": {
|
||||
"background": "bg",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"leftRightInset": 8,
|
||||
"separatorColor": "border",
|
||||
"separatorInset": 4
|
||||
},
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "table",
|
||||
"Line.hoverBackground": "selBg",
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
"selectionInactiveForeground": "activeFg"
|
||||
"selectionInactiveForeground": "activeFg",
|
||||
"Tag": {
|
||||
"background": "button",
|
||||
"foreground": "fg"
|
||||
}
|
||||
},
|
||||
"LiveIndicator": {
|
||||
"color": "accent"
|
||||
},
|
||||
"macOSWindow.Title": {
|
||||
"height": 30,
|
||||
"heightSmall": 20
|
||||
},
|
||||
"MainMenu": {
|
||||
"background": "hc",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionBackground": "selBg"
|
||||
},
|
||||
"MainToolbar": {
|
||||
"Dropdown.background": "bg",
|
||||
"Dropdown.hoverBackground": "border",
|
||||
"Dropdown.pressedBackground": "table",
|
||||
"Icon.background": "bg",
|
||||
"Icon.hoverBackground": "border",
|
||||
"Icon.pressedBackground": "table",
|
||||
"background": "bg",
|
||||
"hoverBackground": "border",
|
||||
"Button": {
|
||||
"buttonInsets": "0,0,0,0"
|
||||
},
|
||||
"Dropdown": {
|
||||
"borderInsets": "6,12,6,12",
|
||||
"background": "bg",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"hoverBackground": "hl",
|
||||
"Icon": {
|
||||
"borderInsets": "10,10,10,10",
|
||||
"background": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"pressedBackground": "table"
|
||||
},
|
||||
"inactiveBackground": "bg",
|
||||
"pressedBackground": "table"
|
||||
"pressedBackground": "table",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"material": {
|
||||
"background": "bg",
|
||||
@@ -652,11 +753,15 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"borderColor": "second",
|
||||
"disabledBackground": "second",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"separatorColor": "border"
|
||||
@@ -676,7 +781,7 @@
|
||||
"acceleratorForeground": "text",
|
||||
"acceleratorSelectionForeground": "activeFg",
|
||||
"background": "bg",
|
||||
"border": "4,2,4,2",
|
||||
"border": "8,8,8,8",
|
||||
"disabledBackground": "bg",
|
||||
"disabledForeground": "dis",
|
||||
"foreground": "fg",
|
||||
@@ -699,11 +804,13 @@
|
||||
"background": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc"
|
||||
}
|
||||
"background": "cs"
|
||||
},
|
||||
"separatorWidth": 6
|
||||
},
|
||||
"NewPSD.warning": "accent",
|
||||
"Notification": {
|
||||
"arc": 16,
|
||||
"Error.foreground": "accent",
|
||||
"Link.foreground": "accent",
|
||||
"background": "notif",
|
||||
@@ -719,12 +826,18 @@
|
||||
"innerBorderColor": "button"
|
||||
},
|
||||
"ToolWindow": {
|
||||
"Button.DragAndDrop": {
|
||||
"buttonFloatingBackground": "button",
|
||||
"stripeBackground": "bg"
|
||||
},
|
||||
"errorBackground": "notifError",
|
||||
"errorBorderColor": "notifError",
|
||||
"errorForeground": "fg",
|
||||
"infoBackground": "notif",
|
||||
"infoBorderColor": "notif",
|
||||
"infoForeground": "fg",
|
||||
"informativeBackground": "notifInfo",
|
||||
"informativeBorderColor": "notifInfo",
|
||||
"informativeBackground": "notif",
|
||||
"informativeBorderColor": "notif",
|
||||
"informativeForeground": "fg",
|
||||
"warningBackground": "notifWarn",
|
||||
"warningBorderColor": "notifWarn",
|
||||
@@ -736,7 +849,8 @@
|
||||
},
|
||||
"ToolWindowInfo": {
|
||||
"foreground": "fg",
|
||||
"background": "notifInfo"
|
||||
"background": "notif",
|
||||
"borderColor": "notif"
|
||||
},
|
||||
"ToolWindowWarning": {
|
||||
"foreground": "fg",
|
||||
@@ -786,7 +900,7 @@
|
||||
"lineSeparatorColor": "table"
|
||||
},
|
||||
"PasswordField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"capsLockIconColor": "accent",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
@@ -796,6 +910,7 @@
|
||||
},
|
||||
"Plugins": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
"disabledForeground": "dis",
|
||||
"eapTagBackground": "hl",
|
||||
"hoverBackground": "hl",
|
||||
@@ -817,8 +932,11 @@
|
||||
"updateBorderColor": "button",
|
||||
"updateForeground": "fg"
|
||||
},
|
||||
"ScreenshotPagination": {
|
||||
"CurrentImage.fillColor": "accent"
|
||||
},
|
||||
"SearchField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "border"
|
||||
},
|
||||
"SectionHeader": {
|
||||
@@ -836,27 +954,38 @@
|
||||
},
|
||||
"Popup": {
|
||||
"Advertiser": {
|
||||
"borderInsets": "6,20,6,20",
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "accent"
|
||||
},
|
||||
"Body": {
|
||||
"bottomInsetNoAd": 8,
|
||||
"bottomInsetBeforeAd": 8,
|
||||
"topInsetNoHeader": 8
|
||||
},
|
||||
"Border": {
|
||||
"color": "cs",
|
||||
"inactiveColor": "bg"
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "cs",
|
||||
"borderWidth": 0,
|
||||
"inactiveBorderColor": "bg",
|
||||
"innerBorderColor": "second",
|
||||
"Header": {
|
||||
"activeBackground": "bg",
|
||||
"inactiveBackground": "cs"
|
||||
"inactiveBackground": "cs",
|
||||
"inactiveForeground": "text"
|
||||
},
|
||||
"paintBorder": true,
|
||||
"paintBorder": false,
|
||||
"preferences": {
|
||||
"background": "bg",
|
||||
"borderColor": "bg",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Selection.arc": 8,
|
||||
"Selection.leftRightInset": 8,
|
||||
"Separator": {
|
||||
"foreground": "fg",
|
||||
"color": "border"
|
||||
@@ -872,13 +1001,24 @@
|
||||
},
|
||||
"PopupMenu": {
|
||||
"background": "bg",
|
||||
"border": "2,0,2,0",
|
||||
"borderWidth": 1,
|
||||
"border": "8,8,8,8",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"Selection": {
|
||||
"arc": 8,
|
||||
"innerInsets": "8,2,8,2"
|
||||
},
|
||||
"selectionBackground": "selBg",
|
||||
"translucentBackground": "bg"
|
||||
},
|
||||
"PopupMenuSeparator.height": 10,
|
||||
"PopupMenuSeparator.stripeIndent": 5,
|
||||
"PopupMenuSeparator": {
|
||||
"height": 10,
|
||||
"stripeWidth": 2,
|
||||
"stripeIndent": 5,
|
||||
"withToEdge": 4,
|
||||
"borderCornerRadius": 8
|
||||
},
|
||||
"ProgressBar": {
|
||||
"background": "bg",
|
||||
"foreground": "accent",
|
||||
@@ -922,12 +1062,27 @@
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "selFg"
|
||||
},
|
||||
"ReviewList": {
|
||||
"state.background": "second",
|
||||
"state.foreground": "fg"
|
||||
},
|
||||
"RunWidget": {
|
||||
"background": "button",
|
||||
"Debug.activeBackground": "hl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "table",
|
||||
"pressedBackground": "hl",
|
||||
"Profile.activeBackground": "hl",
|
||||
"runningBackground": "hl",
|
||||
"runningForeground": "selFg",
|
||||
"Run.activeBackground": "hl",
|
||||
"Running": {
|
||||
"background": "accent",
|
||||
"leftHoverBackground": "accent70",
|
||||
"leftPressedBackground": "accent"
|
||||
}
|
||||
"background": "hl",
|
||||
"foreground": "selFg",
|
||||
"leftHoverBackground": "hl",
|
||||
"leftPressedBackground": "hl"
|
||||
},
|
||||
"separatorColor": "border"
|
||||
},
|
||||
"ScreenView.borderColor": "border",
|
||||
"scrollbar": "bg",
|
||||
@@ -971,8 +1126,9 @@
|
||||
},
|
||||
"SearchEverywhere": {
|
||||
"Advertiser": {
|
||||
"background": "cs",
|
||||
"foreground": "text"
|
||||
"background": "bg",
|
||||
"foreground": "text",
|
||||
"borderInsets": "10,20,10,20"
|
||||
},
|
||||
"background": "bg",
|
||||
"Dialog": {
|
||||
@@ -989,11 +1145,12 @@
|
||||
"Separator.foreground": "text",
|
||||
"selectionBackground": "selBg",
|
||||
"separatorColor": "border",
|
||||
"separatorForeground": "text"
|
||||
"separatorForeground": "text",
|
||||
"settingsBackground": "bg"
|
||||
},
|
||||
"SearchField": {
|
||||
"Border.color": "hl",
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "hl",
|
||||
"grayForeground": "dis",
|
||||
"infoForeground": "dis"
|
||||
@@ -1015,8 +1172,13 @@
|
||||
"startColor": "accent"
|
||||
},
|
||||
"SearchField.errorBackground": "notif",
|
||||
"SearchFieldWithExtension": {
|
||||
"background": "cs"
|
||||
},
|
||||
"SearchOption": {
|
||||
"selectedBackground": "table"
|
||||
"selectedBackground": "table",
|
||||
"selectedPressedBackground": "hl",
|
||||
"selectedHoveredBackground": "hl"
|
||||
},
|
||||
"SearchResults": {
|
||||
"Ordinal.File.Foreground": "text",
|
||||
@@ -1056,12 +1218,12 @@
|
||||
"SpeedSearch": {
|
||||
"background": "hl",
|
||||
"borderColor": "border",
|
||||
"errorForeground": "fg",
|
||||
"errorForeground": "red",
|
||||
"foreground": "fg"
|
||||
},
|
||||
"Spinner": {
|
||||
"background": "bg",
|
||||
"border": "3,3,3,3",
|
||||
"border": "4,4,4,4",
|
||||
"disabledBackground": "excl",
|
||||
"foreground": "fg",
|
||||
"selectionForeground": "activeFg"
|
||||
@@ -1077,15 +1239,17 @@
|
||||
"Breadcrumbs": {
|
||||
"floatingBackground": "tree",
|
||||
"floatingForeground": "fg",
|
||||
"floatingToolbarInsets": "8,12,8,12",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"hoverForeground": "fg",
|
||||
"itemBackgroundInsets": "2,4,2,4",
|
||||
"selectionBackground": "selBg",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "button",
|
||||
"selectionInactiveForeground": "fg"
|
||||
},
|
||||
"borderColor": "bg",
|
||||
"borderColor": "border",
|
||||
"bottomColor": "bg",
|
||||
"hoverBackground": "hl",
|
||||
"top2Color": "bg",
|
||||
@@ -1096,7 +1260,8 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverForeground": "selFg",
|
||||
"pressedBackground": "button",
|
||||
"pressedForeground": "fg"
|
||||
"pressedForeground": "fg",
|
||||
"widgetInsets": "8,12,8,12"
|
||||
}
|
||||
},
|
||||
"TabbedPane": {
|
||||
@@ -1126,6 +1291,7 @@
|
||||
"shadow": "hc",
|
||||
"tabHeight": 32,
|
||||
"tabInsets": "5,10,5,10",
|
||||
"tabSelectionArc": 4,
|
||||
"tabSelectionHeight": 2,
|
||||
"tabsOverlapBorder": true,
|
||||
"underlineColor": "accent"
|
||||
@@ -1134,13 +1300,13 @@
|
||||
"Table": {
|
||||
"alternativeRowBackground": "cs",
|
||||
"background": "bg",
|
||||
"cellNoFocusBorder": "10,5,10,5",
|
||||
"cellNoFocusBorder": "16,4,16,4",
|
||||
"disabledForeground": "dis",
|
||||
"dropLineColor": "accent",
|
||||
"dropLineShortColor": "accent",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"focusCellHighlightBorder": "10,5,10,5",
|
||||
"focusCellHighlightBorder": "18,6,18,6",
|
||||
"foreground": "fg",
|
||||
"gridColor": "bg",
|
||||
"highlightOuter": "table",
|
||||
@@ -1150,6 +1316,7 @@
|
||||
"lightSelectionForeground": "activeFg",
|
||||
"lightSelectionInactiveBackground": "second",
|
||||
"lightSelectionInactiveForeground": "text",
|
||||
"rowHeight": 32,
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg",
|
||||
"selectionInactiveBackground": "table",
|
||||
@@ -1160,14 +1327,14 @@
|
||||
},
|
||||
"TableHeader": {
|
||||
"background": "button",
|
||||
"bottomSeparatorColor": "border",
|
||||
"borderColor": "hl",
|
||||
"bottomSeparatorColor": "hl",
|
||||
"cellBorder": "4,0,4,0",
|
||||
"cellBorder": "6,0,6,0",
|
||||
"disabledForeground": "dis",
|
||||
"focusCellBackground": "table",
|
||||
"focusCellForeground": "activeFg",
|
||||
"foreground": "fg",
|
||||
"height": 25,
|
||||
"height": 32,
|
||||
"hoverBackground": "hl",
|
||||
"separatorColor": "border"
|
||||
},
|
||||
@@ -1182,7 +1349,7 @@
|
||||
"textHighlightText": "activeFg",
|
||||
"textText": "text",
|
||||
"TextArea": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
@@ -1190,7 +1357,7 @@
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TextField": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"borderColor": "bg",
|
||||
"caretForeground": "accent",
|
||||
"disabledBackground": "excl",
|
||||
@@ -1205,15 +1372,21 @@
|
||||
"separatorColorDisabled": "bg"
|
||||
},
|
||||
"TextPane": {
|
||||
"background": "hc",
|
||||
"background": "cs",
|
||||
"caretForeground": "accent",
|
||||
"foreground": "fg",
|
||||
"inactiveForeground": "dis",
|
||||
"selectionBackground": "table",
|
||||
"selectionForeground": "activeFg"
|
||||
},
|
||||
"TipOfTheDay": {
|
||||
"Image.borderColor": "border"
|
||||
},
|
||||
"TitlePane": {
|
||||
"Button.hoverBackground": "hl",
|
||||
"Button": {
|
||||
"hoverBackground": "hl",
|
||||
"preferredSize": "48,40"
|
||||
},
|
||||
"background": "hc",
|
||||
"inactiveBackground": "bg",
|
||||
"inactiveInfoForeground": "dis",
|
||||
@@ -1240,7 +1413,9 @@
|
||||
"borderHandleColor": "text",
|
||||
"comboBoxButtonBackground": "button",
|
||||
"floatingForeground": "text",
|
||||
"foreground": "fg"
|
||||
"foreground": "fg",
|
||||
"verticalToolbarInsets": "6,6,6,6",
|
||||
"horizontalToolbarInsets": "6,6,6,6"
|
||||
},
|
||||
"ToolbarComboWidget": {
|
||||
"background": "button",
|
||||
@@ -1252,6 +1427,7 @@
|
||||
"description.title.text.color": "fg"
|
||||
},
|
||||
"ToolTip": {
|
||||
"arc": 6,
|
||||
"actions": {
|
||||
"background": "bg"
|
||||
},
|
||||
@@ -1262,8 +1438,10 @@
|
||||
},
|
||||
"background": "notif",
|
||||
"borderColor": "border",
|
||||
"borderCornerRadius": 8,
|
||||
"foreground": "fg",
|
||||
"infoForeground": "text",
|
||||
"linkForeground": "accent",
|
||||
"Learning": {
|
||||
"background": "accent",
|
||||
"borderColor": "accent",
|
||||
@@ -1284,6 +1462,10 @@
|
||||
"background": "hc",
|
||||
"Button": {
|
||||
"hoverBackground": "table",
|
||||
"DragAndDrop": {
|
||||
"stripeBackground": "cs",
|
||||
"buttonDropBackground": "accent70"
|
||||
},
|
||||
"selectedBackground": "cs",
|
||||
"selectedForeground": "activeFg"
|
||||
},
|
||||
@@ -1296,6 +1478,7 @@
|
||||
"tab.selected.background": "cs"
|
||||
},
|
||||
"Header": {
|
||||
"height": 42,
|
||||
"background": "second",
|
||||
"borderColor": "second",
|
||||
"inactiveBackground": "bg"
|
||||
@@ -1308,13 +1491,17 @@
|
||||
"hoverBackground": "hl",
|
||||
"hoverInactiveBackground": "hl",
|
||||
"inactiveUnderlineColor": "accent",
|
||||
"leftRightInsets": "0,12,0,12",
|
||||
"selectedBackground": "cs",
|
||||
"selectedInactiveBackground": "cs",
|
||||
"underlineArc": 4,
|
||||
"underlineColor": "accent",
|
||||
"underlineHeight": 3,
|
||||
"underlinedTabBackground": "table",
|
||||
"underlinedTabForeground": "selFg",
|
||||
"underlinedTabInactiveBackground": "hc",
|
||||
"underlinedTabInactiveForeground": "fg"
|
||||
"underlinedTabInactiveForeground": "fg",
|
||||
"verticalPadding": 6
|
||||
},
|
||||
"inactive": {
|
||||
"Header.background": "bg",
|
||||
@@ -1322,13 +1509,15 @@
|
||||
}
|
||||
},
|
||||
"Tree": {
|
||||
"border": "4,12,4,12",
|
||||
"background": "hc",
|
||||
"foreground": "text",
|
||||
"errorForeground": "red",
|
||||
"hash": "border",
|
||||
"hoverBackground": "tree",
|
||||
"hoverInactiveBackground": "table",
|
||||
"modifiedItemForeground": "accent",
|
||||
"rowHeight": 28,
|
||||
"rowHeight": "28",
|
||||
"selectionBackground": "tree",
|
||||
"selectionForeground": "selFg",
|
||||
"selectionInactiveBackground": "tree",
|
||||
@@ -1355,7 +1544,6 @@
|
||||
"hoverBorderColor": "hl"
|
||||
},
|
||||
"Label.foreground": "text",
|
||||
"List.selectionBackground": "tree",
|
||||
"highStroke.foreground": "fg",
|
||||
"motion": {
|
||||
"AddConstraintColor": "accent",
|
||||
@@ -1392,6 +1580,35 @@
|
||||
"ourML_BarColor.separatorColor": "border",
|
||||
"timeLine.disabledBorderColor": "border"
|
||||
},
|
||||
"PackageDetails": {
|
||||
"border": "accent",
|
||||
"infoBanner": "accent"
|
||||
},
|
||||
"PackageSearch": {
|
||||
"PackagesList.rowHeight": 28,
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
},
|
||||
"PackageTagSelected": {
|
||||
"background": "selBg",
|
||||
"foreground": "selFg"
|
||||
},
|
||||
"SearchResult": {
|
||||
"background": "cs",
|
||||
"hoverBackground": "tree",
|
||||
"PackageTag": {
|
||||
"background": "excl",
|
||||
"foreground": "fg",
|
||||
"hoverBackground": "tree",
|
||||
"selectedBackground": "selBg",
|
||||
"selectedForeground": "selFg"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Panel": {
|
||||
"background": "bg",
|
||||
"borderColor": "border",
|
||||
@@ -1418,7 +1635,7 @@
|
||||
},
|
||||
"VersionControl": {
|
||||
"FileHistory.Commit": {
|
||||
"otherBranchBackground": "bg",
|
||||
"otherBranchBackground": "excl",
|
||||
"selectedBranchBackground": "bg"
|
||||
},
|
||||
"GitCommits": {
|
||||
@@ -1443,9 +1660,15 @@
|
||||
"Commit": {
|
||||
"currentBranchBackground": "cs",
|
||||
"hoveredBackground": "tree",
|
||||
"rowHeight": 28,
|
||||
"unmatchedForeground": "text"
|
||||
}
|
||||
},
|
||||
"MarkerPopup": {
|
||||
"borderColor": "border",
|
||||
"borderInsets": "6,8,6,10",
|
||||
"Toolbar.background": "hl"
|
||||
},
|
||||
"Ref": {
|
||||
"backgroundBase": "hl",
|
||||
"foreground": "activeFg"
|
||||
@@ -1455,6 +1678,11 @@
|
||||
"foreground": "activeFg"
|
||||
}
|
||||
},
|
||||
"UnattendedHostStatus": {
|
||||
"warningBackground": "yellow",
|
||||
"warningForeground": "activeFg",
|
||||
"dangerBackground": "red"
|
||||
},
|
||||
"Viewport": {
|
||||
"background": "hc",
|
||||
"foreground": "fg"
|
||||
|
||||
@@ -126,6 +126,12 @@
|
||||
"matchForeground": "accentColor"
|
||||
},
|
||||
|
||||
"ComplexPopup": {
|
||||
"Header": {
|
||||
"background": "backgroundColor"
|
||||
}
|
||||
},
|
||||
|
||||
"Component": {
|
||||
"errorFocusColor": "#802d43",
|
||||
"inactiveErrorFocusColor": "#522530",
|
||||
@@ -156,7 +162,10 @@
|
||||
"SearchField": {
|
||||
"background": "#282c34"
|
||||
},
|
||||
"shortcutForeground": "accentColor"
|
||||
"shortcutForeground": "accentColor",
|
||||
"ToolTip": {
|
||||
"background": "#323844"
|
||||
}
|
||||
},
|
||||
|
||||
"EditorPane.inactiveBackground": "#282c34",
|
||||
@@ -205,6 +214,19 @@
|
||||
"selectionForeground": "#ffffff"
|
||||
},
|
||||
|
||||
"MainToolbar": {
|
||||
"inactiveBackground": "#282c34",
|
||||
"background": "backgroundColor",
|
||||
"Dropdown": {
|
||||
"hoverBackground": "#3d424b"
|
||||
}
|
||||
},
|
||||
|
||||
"MemoryIndicator": {
|
||||
"allocatedBackground": "#304676",
|
||||
"usedBackground": "#3a5a9c"
|
||||
},
|
||||
|
||||
"Notification": {
|
||||
"background": "notificationBackground",
|
||||
"borderColor": "#53565f",
|
||||
@@ -279,6 +301,7 @@
|
||||
},
|
||||
|
||||
"Popup": {
|
||||
"background": "#282c34",
|
||||
"paintBorder": false,
|
||||
"borderColor": "#21252b",
|
||||
"Toolbar.borderColor": "#3d424b",
|
||||
@@ -293,12 +316,18 @@
|
||||
"ProgressBar": {
|
||||
"trackColor": "#1D1D26",
|
||||
"progressColor": "accentColor",
|
||||
"indeterminateStartColor": "accentColor",
|
||||
"indeterminateEndColor": "#313469",
|
||||
"failedColor": "#bd3c5f",
|
||||
"failedEndColor": "#472c33",
|
||||
"passedColor": "#239E62",
|
||||
"passedEndColor": "#2b4242"
|
||||
"indeterminateStartColor": "#313469",
|
||||
"indeterminateEndColor": "accentColor",
|
||||
"failedColor": "#472c33",
|
||||
"failedEndColor": "#bd3c5f",
|
||||
"passedColor": "#2b4242",
|
||||
"passedEndColor": "#239E62"
|
||||
},
|
||||
|
||||
"RunWidget": {
|
||||
"foreground": "#eef3ff",
|
||||
"separatorColor": "#eef3ff",
|
||||
"background": "accentColor"
|
||||
},
|
||||
|
||||
"SearchEverywhere": {
|
||||
|
||||
@@ -22,6 +22,7 @@ plugins {
|
||||
|
||||
flatlafJniHeaders {
|
||||
headers = listOf(
|
||||
"com_formdev_flatlaf_ui_FlatNativeWindowsLibrary.h",
|
||||
"com_formdev_flatlaf_ui_FlatWindowsNativeWindowBorder.h",
|
||||
"com_formdev_flatlaf_ui_FlatWindowsNativeWindowBorder_WndProc.h"
|
||||
)
|
||||
@@ -74,8 +75,8 @@ tasks {
|
||||
|
||||
linkerArgs.addAll( toolChain.map {
|
||||
when( it ) {
|
||||
is Gcc, is Clang -> listOf( "-l${jawt}", "-lUser32", "-lGdi32", "-lshell32", "-lAdvAPI32", "-lKernel32" )
|
||||
is VisualCpp -> listOf( "${jawt}.lib", "User32.lib", "Gdi32.lib", "shell32.lib", "AdvAPI32.lib", "Kernel32.lib", "/NODEFAULTLIB" )
|
||||
is Gcc, is Clang -> listOf( "-l${jawt}", "-lUser32", "-lGdi32", "-lshell32", "-lAdvAPI32", "-lKernel32", "-lDwmapi" )
|
||||
is VisualCpp -> listOf( "${jawt}.lib", "User32.lib", "Gdi32.lib", "shell32.lib", "AdvAPI32.lib", "Kernel32.lib", "Dwmapi.lib", "/NODEFAULTLIB" )
|
||||
else -> emptyList()
|
||||
}
|
||||
} )
|
||||
|
||||
@@ -29,6 +29,8 @@
|
||||
* @author Karl Tauber
|
||||
*/
|
||||
|
||||
HWND getWindowHandle( JNIEnv* env, jobject window );
|
||||
|
||||
//---- JNI methods ------------------------------------------------------------
|
||||
|
||||
extern "C"
|
||||
@@ -540,7 +542,7 @@ void FlatWndProc::setMenuItemState( HMENU systemMenu, int item, bool enabled ) {
|
||||
::SetMenuItemInfo( systemMenu, item, FALSE, &mii );
|
||||
}
|
||||
|
||||
HWND FlatWndProc::getWindowHandle( JNIEnv* env, jobject window ) {
|
||||
HWND getWindowHandle( JNIEnv* env, jobject window ) {
|
||||
JAWT awt;
|
||||
awt.version = JAWT_VERSION_1_4;
|
||||
if( !JAWT_GetAWT( env, &awt ) )
|
||||
|
||||
@@ -67,6 +67,4 @@ private:
|
||||
void sendMessageToClientArea( HWND hwnd, int uMsg, LPARAM lParam );
|
||||
void openSystemMenu( HWND hwnd, int x, int y );
|
||||
void setMenuItemState( HMENU systemMenu, int item, bool enabled );
|
||||
|
||||
static HWND getWindowHandle( JNIEnv* env, jobject window );
|
||||
};
|
||||
|
||||
@@ -0,0 +1,102 @@
|
||||
/*
|
||||
* Copyright 2022 FormDev Software GmbH
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
// avoid inlining of printf()
|
||||
#define _NO_CRT_STDIO_INLINE
|
||||
|
||||
#include <windows.h>
|
||||
#include <dwmapi.h>
|
||||
#include "com_formdev_flatlaf_ui_FlatNativeWindowsLibrary.h"
|
||||
|
||||
/**
|
||||
* @author Karl Tauber
|
||||
*/
|
||||
|
||||
// see FlatWndProc.cpp
|
||||
HWND getWindowHandle( JNIEnv* env, jobject window );
|
||||
|
||||
//---- Utility ----------------------------------------------------------------
|
||||
|
||||
extern "C"
|
||||
JNIEXPORT jlong JNICALL Java_com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_getOSBuildNumberImpl
|
||||
( JNIEnv* env, jclass cls )
|
||||
{
|
||||
OSVERSIONINFO info;
|
||||
info.dwOSVersionInfoSize = sizeof( info );
|
||||
if( !::GetVersionEx( &info ) )
|
||||
return 0;
|
||||
return info.dwBuildNumber;
|
||||
}
|
||||
|
||||
extern "C"
|
||||
JNIEXPORT jlong JNICALL Java_com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_getHWND
|
||||
( JNIEnv* env, jclass cls, jobject window )
|
||||
{
|
||||
return reinterpret_cast<jlong>( getWindowHandle( env, window ) );
|
||||
}
|
||||
|
||||
//---- Desktop Window Manager (DWM) -------------------------------------------
|
||||
|
||||
// define constants that may not available in older development environments
|
||||
|
||||
#ifndef DWMWA_COLOR_DEFAULT
|
||||
|
||||
#define DWMWA_WINDOW_CORNER_PREFERENCE 33
|
||||
#define DWMWA_BORDER_COLOR 34
|
||||
|
||||
typedef enum {
|
||||
DWMWCP_DEFAULT = 0,
|
||||
DWMWCP_DONOTROUND = 1,
|
||||
DWMWCP_ROUND = 2,
|
||||
DWMWCP_ROUNDSMALL = 3
|
||||
} DWM_WINDOW_CORNER_PREFERENCE;
|
||||
|
||||
// Use this constant to reset any window part colors to the system default behavior
|
||||
#define DWMWA_COLOR_DEFAULT 0xFFFFFFFF
|
||||
|
||||
// Use this constant to specify that a window part should not be rendered
|
||||
#define DWMWA_COLOR_NONE 0xFFFFFFFE
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
extern "C"
|
||||
JNIEXPORT jboolean JNICALL Java_com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_setWindowCornerPreference
|
||||
( JNIEnv* env, jclass cls, jlong hwnd, jint cornerPreference )
|
||||
{
|
||||
if( hwnd == 0 )
|
||||
return FALSE;
|
||||
|
||||
DWM_WINDOW_CORNER_PREFERENCE attr = (DWM_WINDOW_CORNER_PREFERENCE) cornerPreference;
|
||||
return ::DwmSetWindowAttribute( reinterpret_cast<HWND>( hwnd ), DWMWA_WINDOW_CORNER_PREFERENCE, &attr, sizeof( attr ) ) == S_OK;
|
||||
}
|
||||
|
||||
extern "C"
|
||||
JNIEXPORT jboolean JNICALL Java_com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_setWindowBorderColor
|
||||
( JNIEnv* env, jclass cls, jlong hwnd, jint red, jint green, jint blue )
|
||||
{
|
||||
if( hwnd == 0 )
|
||||
return FALSE;
|
||||
|
||||
COLORREF attr;
|
||||
if( red == -1 )
|
||||
attr = DWMWA_COLOR_DEFAULT;
|
||||
else if( red == -2 )
|
||||
attr = DWMWA_COLOR_NONE;
|
||||
else
|
||||
attr = RGB( red, green, blue );
|
||||
return ::DwmSetWindowAttribute( reinterpret_cast<HWND>( hwnd ), DWMWA_BORDER_COLOR, &attr, sizeof( attr ) ) == S_OK;
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
/* DO NOT EDIT THIS FILE - it is machine generated */
|
||||
#include <jni.h>
|
||||
/* Header for class com_formdev_flatlaf_ui_FlatNativeWindowsLibrary */
|
||||
|
||||
#ifndef _Included_com_formdev_flatlaf_ui_FlatNativeWindowsLibrary
|
||||
#define _Included_com_formdev_flatlaf_ui_FlatNativeWindowsLibrary
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#undef com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_DWMWCP_DEFAULT
|
||||
#define com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_DWMWCP_DEFAULT 0L
|
||||
#undef com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_DWMWCP_DONOTROUND
|
||||
#define com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_DWMWCP_DONOTROUND 1L
|
||||
#undef com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_DWMWCP_ROUND
|
||||
#define com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_DWMWCP_ROUND 2L
|
||||
#undef com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_DWMWCP_ROUNDSMALL
|
||||
#define com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_DWMWCP_ROUNDSMALL 3L
|
||||
/*
|
||||
* Class: com_formdev_flatlaf_ui_FlatNativeWindowsLibrary
|
||||
* Method: getOSBuildNumberImpl
|
||||
* Signature: ()J
|
||||
*/
|
||||
JNIEXPORT jlong JNICALL Java_com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_getOSBuildNumberImpl
|
||||
(JNIEnv *, jclass);
|
||||
|
||||
/*
|
||||
* Class: com_formdev_flatlaf_ui_FlatNativeWindowsLibrary
|
||||
* Method: getHWND
|
||||
* Signature: (Ljava/awt/Window;)J
|
||||
*/
|
||||
JNIEXPORT jlong JNICALL Java_com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_getHWND
|
||||
(JNIEnv *, jclass, jobject);
|
||||
|
||||
/*
|
||||
* Class: com_formdev_flatlaf_ui_FlatNativeWindowsLibrary
|
||||
* Method: setWindowCornerPreference
|
||||
* Signature: (JI)Z
|
||||
*/
|
||||
JNIEXPORT jboolean JNICALL Java_com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_setWindowCornerPreference
|
||||
(JNIEnv *, jclass, jlong, jint);
|
||||
|
||||
/*
|
||||
* Class: com_formdev_flatlaf_ui_FlatNativeWindowsLibrary
|
||||
* Method: setWindowBorderColor
|
||||
* Signature: (JIII)Z
|
||||
*/
|
||||
JNIEXPORT jboolean JNICALL Java_com_formdev_flatlaf_ui_FlatNativeWindowsLibrary_setWindowBorderColor
|
||||
(JNIEnv *, jclass, jlong, jint, jint, jint);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
@@ -198,6 +198,7 @@ ColumnControlButton.iconColor #a8a8a8 HSL 0 0 66 javax.swing.plaf.Colo
|
||||
|
||||
ComboBox.background #46494b HSL 204 3 28 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.border [lazy] 1,1,1,1 false com.formdev.flatlaf.ui.FlatRoundBorder [UI]
|
||||
ComboBox.borderCornerRadius 4
|
||||
ComboBox.buttonArrowColor #9b9b9b HSL 0 0 61 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.buttonBackground #46494b HSL 204 3 28 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.buttonDarkShadow #7a7d7f HSL 204 2 49 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -432,7 +433,9 @@ JXDatePicker.border [lazy] 1,1,1,1 false com.formdev.flatlaf.swin
|
||||
#---- JXHeader ----
|
||||
|
||||
JXHeader.background #3c3f41 HSL 204 4 25 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXHeader.descriptionFont [active] $defaultFont [UI]
|
||||
JXHeader.startBackground #4c5052 HSL 200 4 31 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXHeader.titleFont [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
|
||||
|
||||
#---- JXMonthView ----
|
||||
@@ -442,6 +445,7 @@ JXMonthView.background #46494b HSL 204 3 28 javax.swing.plaf.Colo
|
||||
JXMonthView.daysOfTheWeekForeground #aaaaaa HSL 0 0 67 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.disabledArrowColor #8c8c8c HSL 0 0 55 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.flaggedDayForeground #e05555 HSL 0 69 61 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.font [active] $defaultFont [UI]
|
||||
JXMonthView.leadingDayForeground #8c8c8c HSL 0 0 55 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.monthDownFileName [lazy] 20,20 com.formdev.flatlaf.swingx.ui.FlatMonthDownIcon [UI]
|
||||
JXMonthView.monthStringBackground #4c5052 HSL 200 4 31 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -459,6 +463,7 @@ JXMonthView.weekOfTheYearForeground #888888 HSL 0 0 53 javax.swing.plaf
|
||||
JXTitledPanel.borderColor #606263 HSL 200 2 38 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXTitledPanel.captionInsets 4,10,4,10 javax.swing.plaf.InsetsUIResource [UI]
|
||||
JXTitledPanel.titleBackground #4c5052 HSL 200 4 31 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXTitledPanel.titleFont [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
JXTitledPanel.titleForeground #bbbbbb HSL 0 0 73 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
|
||||
@@ -537,15 +542,15 @@ LabelUI com.formdev.flatlaf.ui.FlatLabelUI
|
||||
|
||||
List.background #46494b HSL 204 3 28 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.border [lazy] 0,0,0,0 false com.formdev.flatlaf.ui.FlatEmptyBorder [UI]
|
||||
List.cellFocusColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.cellFocusColor #6d8ac0 HSL 219 40 59 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.cellMargins 1,6,1,6 javax.swing.plaf.InsetsUIResource [UI]
|
||||
List.cellNoFocusBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Default [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.cellNoFocusBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Default [UI] lineColor=#6d8ac0 HSL 219 40 59 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.cellRenderer [active] javax.swing.DefaultListCellRenderer$UIResource [UI]
|
||||
List.dropCellBackground [lazy] #3c588b HSL 219 40 39 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.dropCellForeground [lazy] #bbbbbb HSL 0 0 73 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.dropLineColor [lazy] #6d8ac0 HSL 219 40 59 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.focusCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Focused [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.focusSelectedCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Selected [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.focusCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Focused [UI] lineColor=#6d8ac0 HSL 219 40 59 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.focusSelectedCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Selected [UI] lineColor=#6d8ac0 HSL 219 40 59 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.font [active] $defaultFont [UI]
|
||||
List.foreground #bbbbbb HSL 0 0 73 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.noFocusBorder 1,1,1,1 false javax.swing.plaf.BorderUIResource$EmptyBorderUIResource [UI]
|
||||
@@ -734,6 +739,7 @@ PasswordFieldUI com.formdev.flatlaf.ui.FlatPasswordFieldUI
|
||||
|
||||
#---- Popup ----
|
||||
|
||||
Popup.borderCornerRadius 4
|
||||
Popup.dropShadowColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Popup.dropShadowInsets -4,-4,4,4 javax.swing.plaf.InsetsUIResource [UI]
|
||||
Popup.dropShadowOpacity 0.25
|
||||
@@ -745,6 +751,7 @@ Popup.dropShadowPainted true
|
||||
PopupMenu.background #303234 HSL 210 4 20 javax.swing.plaf.ColorUIResource [UI]
|
||||
PopupMenu.border [lazy] 4,1,4,1 false com.formdev.flatlaf.ui.FlatPopupMenuBorder [UI] lineColor=#5d6061 HSL 195 2 37 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
PopupMenu.borderColor #5d6061 HSL 195 2 37 javax.swing.plaf.ColorUIResource [UI]
|
||||
PopupMenu.borderCornerRadius 4
|
||||
PopupMenu.borderInsets 4,1,4,1 javax.swing.plaf.InsetsUIResource [UI]
|
||||
PopupMenu.consumeEventOnClose false
|
||||
PopupMenu.font [active] $defaultFont [UI]
|
||||
@@ -1088,9 +1095,9 @@ TabbedPaneUI com.formdev.flatlaf.ui.FlatTabbedPaneUI
|
||||
|
||||
Table.ascendingSortIcon [lazy] 10,5 com.formdev.flatlaf.icons.FlatAscendingSortIcon [UI]
|
||||
Table.background #46494b HSL 204 3 28 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.cellFocusColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.cellFocusColor #6d8ac0 HSL 219 40 59 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.cellMargins 2,3,2,3 javax.swing.plaf.InsetsUIResource [UI]
|
||||
Table.cellNoFocusBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Default [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.cellNoFocusBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Default [UI] lineColor=#6d8ac0 HSL 219 40 59 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.consistentHomeEndKeyBehavior true
|
||||
Table.descendingSortIcon [lazy] 10,5 com.formdev.flatlaf.icons.FlatDescendingSortIcon [UI]
|
||||
Table.dropCellBackground [lazy] #3c588b HSL 219 40 39 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1099,8 +1106,8 @@ Table.dropLineColor [lazy] #6d8ac0 HSL 219 40 59 javax.swing.pl
|
||||
Table.dropLineShortColor [lazy] #b4c3df HSL 219 40 79 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.focusCellBackground #46494b HSL 204 3 28 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.focusCellForeground #bbbbbb HSL 0 0 73 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.focusCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Focused [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.focusSelectedCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Selected [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.focusCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Focused [UI] lineColor=#6d8ac0 HSL 219 40 59 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.focusSelectedCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Selected [UI] lineColor=#6d8ac0 HSL 219 40 59 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.font [active] $defaultFont [UI]
|
||||
Table.foreground #bbbbbb HSL 0 0 73 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.gridColor #5a5e60 HSL 200 3 36 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1127,6 +1134,8 @@ TableHeader.focusCellBackground #46494b HSL 204 3 28 javax.swing.plaf.Col
|
||||
TableHeader.font [active] $defaultFont [UI]
|
||||
TableHeader.foreground #bbbbbb HSL 0 0 73 javax.swing.plaf.ColorUIResource [UI]
|
||||
TableHeader.height 25
|
||||
TableHeader.hoverBackground #525658 HSL 200 4 33 com.formdev.flatlaf.util.DerivedColor [UI] lighten(5% autoInverse)
|
||||
TableHeader.pressedBackground #5f6365 HSL 200 3 38 com.formdev.flatlaf.util.DerivedColor [UI] lighten(10% autoInverse)
|
||||
TableHeader.separatorColor #5f6365 HSL 200 3 38 javax.swing.plaf.ColorUIResource [UI]
|
||||
TableHeader.showTrailingVerticalLine false
|
||||
TableHeaderUI com.formdev.flatlaf.ui.FlatTableHeaderUI
|
||||
@@ -1142,6 +1151,7 @@ TableUI com.formdev.flatlaf.ui.FlatTableUI
|
||||
TaskPane.background #3c3f41 HSL 204 4 25 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.borderColor #606263 HSL 200 2 38 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.contentInsets 10,10,10,10 javax.swing.plaf.InsetsUIResource [UI]
|
||||
TaskPane.font [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
TaskPane.specialTitleBackground #afafaf HSL 0 0 69 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.specialTitleForeground #222222 HSL 0 0 13 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.specialTitleOver #666666 HSL 0 0 40 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1345,6 +1355,7 @@ ToolBarUI com.formdev.flatlaf.ui.FlatToolBarUI
|
||||
|
||||
ToolTip.background #1e2021 HSL 200 5 12 javax.swing.plaf.ColorUIResource [UI]
|
||||
ToolTip.border [lazy] 4,6,4,6 false com.formdev.flatlaf.ui.FlatEmptyBorder [UI]
|
||||
ToolTip.borderCornerRadius 4
|
||||
ToolTip.font [active] $defaultFont [UI]
|
||||
ToolTip.foreground #bbbbbb HSL 0 0 73 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
@@ -1370,7 +1381,7 @@ Tree.drawsFocusBorderAroundIcon false
|
||||
Tree.dropCellBackground [lazy] #3c588b HSL 219 40 39 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.dropCellForeground [lazy] #bbbbbb HSL 0 0 73 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.dropLineColor [lazy] #6d8ac0 HSL 219 40 59 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.editorBorder [lazy] 1,1,1,1 false com.formdev.flatlaf.ui.FlatLineBorder [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Tree.editorBorder [lazy] 1,1,1,1 false com.formdev.flatlaf.ui.FlatLineBorder [UI] lineColor=#6d8ac0 HSL 219 40 59 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Tree.expandedIcon [lazy] 11,11 com.formdev.flatlaf.icons.FlatTreeExpandedIcon [UI]
|
||||
Tree.font [active] $defaultFont [UI]
|
||||
Tree.foreground #bbbbbb HSL 0 0 73 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1393,7 +1404,7 @@ Tree.rowHeight 0
|
||||
Tree.scrollsOnExpand true
|
||||
Tree.selectionArc 0
|
||||
Tree.selectionBackground #4b6eaf HSL 219 40 49 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionBorderColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionBorderColor #6d8ac0 HSL 219 40 59 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionForeground #bbbbbb HSL 0 0 73 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionInactiveBackground #0f2a3d HSL 205 61 15 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionInactiveForeground #bbbbbb HSL 0 0 73 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
@@ -202,6 +202,7 @@ ColumnControlButton.iconColor #737373 HSL 0 0 45 javax.swing.plaf.Colo
|
||||
|
||||
ComboBox.background #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.border [lazy] 1,1,1,1 false com.formdev.flatlaf.ui.FlatRoundBorder [UI]
|
||||
ComboBox.borderCornerRadius 4
|
||||
ComboBox.buttonArrowColor #666666 HSL 0 0 40 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.buttonBackground #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.buttonDarkShadow #9c9c9c HSL 0 0 61 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -437,7 +438,9 @@ JXDatePicker.border [lazy] 1,1,1,1 false com.formdev.flatlaf.swin
|
||||
#---- JXHeader ----
|
||||
|
||||
JXHeader.background #f2f2f2 HSL 0 0 95 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXHeader.descriptionFont [active] $defaultFont [UI]
|
||||
JXHeader.startBackground #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXHeader.titleFont [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
|
||||
|
||||
#---- JXMonthView ----
|
||||
@@ -447,6 +450,7 @@ JXMonthView.background #ffffff HSL 0 0 100 javax.swing.plaf.Colo
|
||||
JXMonthView.daysOfTheWeekForeground #444444 HSL 0 0 27 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.disabledArrowColor #8c8c8c HSL 0 0 55 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.flaggedDayForeground #e02222 HSL 0 75 51 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.font [active] $defaultFont [UI]
|
||||
JXMonthView.leadingDayForeground #8c8c8c HSL 0 0 55 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.monthDownFileName [lazy] 20,20 com.formdev.flatlaf.swingx.ui.FlatMonthDownIcon [UI]
|
||||
JXMonthView.monthStringBackground #dfdfdf HSL 0 0 87 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -464,6 +468,7 @@ JXMonthView.weekOfTheYearForeground #666666 HSL 0 0 40 javax.swing.plaf
|
||||
JXTitledPanel.borderColor #c2c2c2 HSL 0 0 76 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXTitledPanel.captionInsets 4,10,4,10 javax.swing.plaf.InsetsUIResource [UI]
|
||||
JXTitledPanel.titleBackground #dfdfdf HSL 0 0 87 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXTitledPanel.titleFont [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
JXTitledPanel.titleForeground #222222 HSL 0 0 13 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
|
||||
@@ -542,15 +547,15 @@ LabelUI com.formdev.flatlaf.ui.FlatLabelUI
|
||||
|
||||
List.background #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.border [lazy] 0,0,0,0 false com.formdev.flatlaf.ui.FlatEmptyBorder [UI]
|
||||
List.cellFocusColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.cellFocusColor #15416a HSL 209 67 25 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.cellMargins 1,6,1,6 javax.swing.plaf.InsetsUIResource [UI]
|
||||
List.cellNoFocusBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Default [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.cellNoFocusBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Default [UI] lineColor=#15416a HSL 209 67 25 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.cellRenderer [active] javax.swing.DefaultListCellRenderer$UIResource [UI]
|
||||
List.dropCellBackground [lazy] #3f8fd9 HSL 209 67 55 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.dropCellForeground [lazy] #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.dropLineColor [lazy] #6aa7e1 HSL 209 66 65 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.focusCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Focused [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.focusSelectedCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Selected [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.focusCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Focused [UI] lineColor=#15416a HSL 209 67 25 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.focusSelectedCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Selected [UI] lineColor=#15416a HSL 209 67 25 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.font [active] $defaultFont [UI]
|
||||
List.foreground #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.noFocusBorder 1,1,1,1 false javax.swing.plaf.BorderUIResource$EmptyBorderUIResource [UI]
|
||||
@@ -739,6 +744,7 @@ PasswordFieldUI com.formdev.flatlaf.ui.FlatPasswordFieldUI
|
||||
|
||||
#---- Popup ----
|
||||
|
||||
Popup.borderCornerRadius 4
|
||||
Popup.dropShadowColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Popup.dropShadowInsets -4,-4,4,4 javax.swing.plaf.InsetsUIResource [UI]
|
||||
Popup.dropShadowOpacity 0.15
|
||||
@@ -750,6 +756,7 @@ Popup.dropShadowPainted true
|
||||
PopupMenu.background #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
PopupMenu.border [lazy] 4,1,4,1 false com.formdev.flatlaf.ui.FlatPopupMenuBorder [UI] lineColor=#aeaeae HSL 0 0 68 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
PopupMenu.borderColor #aeaeae HSL 0 0 68 javax.swing.plaf.ColorUIResource [UI]
|
||||
PopupMenu.borderCornerRadius 4
|
||||
PopupMenu.borderInsets 4,1,4,1 javax.swing.plaf.InsetsUIResource [UI]
|
||||
PopupMenu.consumeEventOnClose false
|
||||
PopupMenu.font [active] $defaultFont [UI]
|
||||
@@ -1093,9 +1100,9 @@ TabbedPaneUI com.formdev.flatlaf.ui.FlatTabbedPaneUI
|
||||
|
||||
Table.ascendingSortIcon [lazy] 10,5 com.formdev.flatlaf.icons.FlatAscendingSortIcon [UI]
|
||||
Table.background #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.cellFocusColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.cellFocusColor #15416a HSL 209 67 25 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.cellMargins 2,3,2,3 javax.swing.plaf.InsetsUIResource [UI]
|
||||
Table.cellNoFocusBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Default [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.cellNoFocusBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Default [UI] lineColor=#15416a HSL 209 67 25 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.consistentHomeEndKeyBehavior true
|
||||
Table.descendingSortIcon [lazy] 10,5 com.formdev.flatlaf.icons.FlatDescendingSortIcon [UI]
|
||||
Table.dropCellBackground [lazy] #3f8fd9 HSL 209 67 55 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1104,8 +1111,8 @@ Table.dropLineColor [lazy] #6aa7e1 HSL 209 66 65 javax.swing.pl
|
||||
Table.dropLineShortColor [lazy] #15416a HSL 209 67 25 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.focusCellBackground #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.focusCellForeground #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.focusCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Focused [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.focusSelectedCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Selected [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.focusCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Focused [UI] lineColor=#15416a HSL 209 67 25 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.focusSelectedCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Selected [UI] lineColor=#15416a HSL 209 67 25 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.font [active] $defaultFont [UI]
|
||||
Table.foreground #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.gridColor #ebebeb HSL 0 0 92 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1132,6 +1139,8 @@ TableHeader.focusCellBackground #ffffff HSL 0 0 100 javax.swing.plaf.Col
|
||||
TableHeader.font [active] $defaultFont [UI]
|
||||
TableHeader.foreground #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
TableHeader.height 25
|
||||
TableHeader.hoverBackground #f2f2f2 HSL 0 0 95 com.formdev.flatlaf.util.DerivedColor [UI] darken(5% autoInverse)
|
||||
TableHeader.pressedBackground #e6e6e6 HSL 0 0 90 com.formdev.flatlaf.util.DerivedColor [UI] darken(10% autoInverse)
|
||||
TableHeader.separatorColor #e6e6e6 HSL 0 0 90 javax.swing.plaf.ColorUIResource [UI]
|
||||
TableHeader.showTrailingVerticalLine false
|
||||
TableHeaderUI com.formdev.flatlaf.ui.FlatTableHeaderUI
|
||||
@@ -1147,6 +1156,7 @@ TableUI com.formdev.flatlaf.ui.FlatTableUI
|
||||
TaskPane.background #f2f2f2 HSL 0 0 95 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.borderColor #c2c2c2 HSL 0 0 76 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.contentInsets 10,10,10,10 javax.swing.plaf.InsetsUIResource [UI]
|
||||
TaskPane.font [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
TaskPane.specialTitleBackground #afafaf HSL 0 0 69 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.specialTitleForeground #222222 HSL 0 0 13 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.specialTitleOver #666666 HSL 0 0 40 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1350,6 +1360,7 @@ ToolBarUI com.formdev.flatlaf.ui.FlatToolBarUI
|
||||
|
||||
ToolTip.background #fafafa HSL 0 0 98 javax.swing.plaf.ColorUIResource [UI]
|
||||
ToolTip.border [lazy] 4,6,4,6 false com.formdev.flatlaf.ui.FlatLineBorder [UI] lineColor=#919191 HSL 0 0 57 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
ToolTip.borderCornerRadius 4
|
||||
ToolTip.font [active] $defaultFont [UI]
|
||||
ToolTip.foreground #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
@@ -1375,7 +1386,7 @@ Tree.drawsFocusBorderAroundIcon false
|
||||
Tree.dropCellBackground [lazy] #3f8fd9 HSL 209 67 55 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.dropCellForeground [lazy] #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.dropLineColor [lazy] #6aa7e1 HSL 209 66 65 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.editorBorder [lazy] 1,1,1,1 false com.formdev.flatlaf.ui.FlatLineBorder [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Tree.editorBorder [lazy] 1,1,1,1 false com.formdev.flatlaf.ui.FlatLineBorder [UI] lineColor=#15416a HSL 209 67 25 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Tree.expandedIcon [lazy] 11,11 com.formdev.flatlaf.icons.FlatTreeExpandedIcon [UI]
|
||||
Tree.font [active] $defaultFont [UI]
|
||||
Tree.foreground #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1398,7 +1409,7 @@ Tree.rowHeight 0
|
||||
Tree.scrollsOnExpand true
|
||||
Tree.selectionArc 0
|
||||
Tree.selectionBackground #2675bf HSL 209 67 45 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionBorderColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionBorderColor #15416a HSL 209 67 25 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionForeground #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionInactiveBackground #d3d3d3 HSL 0 0 83 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionInactiveForeground #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
@@ -202,6 +202,7 @@ ColumnControlButton.iconColor #c7c7c7 HSL 0 0 78 javax.swing.plaf.Colo
|
||||
|
||||
ComboBox.background #565656 HSL 0 0 34 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.border [lazy] 3,3,3,3 false com.formdev.flatlaf.ui.FlatRoundBorder [UI]
|
||||
ComboBox.borderCornerRadius 8
|
||||
ComboBox.buttonArrowColor #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.buttonBackground #007aff HSL 211 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.buttonDarkShadow #ffffff19 10% HSLA 0 0 100 10 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -438,7 +439,9 @@ JXDatePicker.border [lazy] 3,3,3,3 false com.formdev.flatlaf.swin
|
||||
#---- JXHeader ----
|
||||
|
||||
JXHeader.background #1e1e1e HSL 0 0 12 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXHeader.descriptionFont [active] $defaultFont [UI]
|
||||
JXHeader.startBackground #4c5052 HSL 200 4 31 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXHeader.titleFont [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
|
||||
|
||||
#---- JXMonthView ----
|
||||
@@ -448,6 +451,7 @@ JXMonthView.background #282828 HSL 0 0 16 javax.swing.plaf.Colo
|
||||
JXMonthView.daysOfTheWeekForeground #aaaaaa HSL 0 0 67 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.disabledArrowColor #9a9a9a HSL 0 0 60 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.flaggedDayForeground #e05555 HSL 0 69 61 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.font [active] $defaultFont [UI]
|
||||
JXMonthView.leadingDayForeground #9a9a9a HSL 0 0 60 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.monthDownFileName [lazy] 20,20 com.formdev.flatlaf.swingx.ui.FlatMonthDownIcon [UI]
|
||||
JXMonthView.monthStringBackground #4c5052 HSL 200 4 31 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -465,6 +469,7 @@ JXMonthView.weekOfTheYearForeground #888888 HSL 0 0 53 javax.swing.plaf
|
||||
JXTitledPanel.borderColor #676767 HSL 0 0 40 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXTitledPanel.captionInsets 4,10,4,10 javax.swing.plaf.InsetsUIResource [UI]
|
||||
JXTitledPanel.titleBackground #4c5052 HSL 200 4 31 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXTitledPanel.titleFont [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
JXTitledPanel.titleForeground #dddddd HSL 0 0 87 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
|
||||
@@ -543,15 +548,15 @@ LabelUI com.formdev.flatlaf.ui.FlatLabelUI
|
||||
|
||||
List.background #282828 HSL 0 0 16 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.border [lazy] 0,0,0,0 false com.formdev.flatlaf.ui.FlatEmptyBorder [UI]
|
||||
List.cellFocusColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.cellFocusColor #046eff HSL 215 100 51 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.cellMargins 1,6,1,6 javax.swing.plaf.InsetsUIResource [UI]
|
||||
List.cellNoFocusBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Default [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.cellNoFocusBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Default [UI] lineColor=#046eff HSL 215 100 51 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.cellRenderer [active] javax.swing.DefaultListCellRenderer$UIResource [UI]
|
||||
List.dropCellBackground [lazy] #00429d HSL 215 100 31 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.dropCellForeground [lazy] #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.dropLineColor [lazy] #046eff HSL 215 100 51 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.focusCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Focused [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.focusSelectedCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Selected [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.focusCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Focused [UI] lineColor=#046eff HSL 215 100 51 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.focusSelectedCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Selected [UI] lineColor=#046eff HSL 215 100 51 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.font [active] $defaultFont [UI]
|
||||
List.foreground #dddddd HSL 0 0 87 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.noFocusBorder 1,1,1,1 false javax.swing.plaf.BorderUIResource$EmptyBorderUIResource [UI]
|
||||
@@ -742,6 +747,7 @@ PasswordFieldUI com.formdev.flatlaf.ui.FlatPasswordFieldUI
|
||||
|
||||
#---- Popup ----
|
||||
|
||||
Popup.borderCornerRadius 4
|
||||
Popup.dropShadowColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Popup.dropShadowInsets -4,-4,4,4 javax.swing.plaf.InsetsUIResource [UI]
|
||||
Popup.dropShadowOpacity 0.25
|
||||
@@ -753,6 +759,7 @@ Popup.dropShadowPainted true
|
||||
PopupMenu.background #323232 HSL 0 0 20 javax.swing.plaf.ColorUIResource [UI]
|
||||
PopupMenu.border [lazy] 6,1,6,1 false com.formdev.flatlaf.ui.FlatPopupMenuBorder [UI] lineColor=#444444 HSL 0 0 27 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
PopupMenu.borderColor #444444 HSL 0 0 27 javax.swing.plaf.ColorUIResource [UI]
|
||||
PopupMenu.borderCornerRadius 8
|
||||
PopupMenu.borderInsets 6,1,6,1 javax.swing.plaf.InsetsUIResource [UI]
|
||||
PopupMenu.consumeEventOnClose false
|
||||
PopupMenu.font [active] $defaultFont [UI]
|
||||
@@ -1098,9 +1105,9 @@ TabbedPaneUI com.formdev.flatlaf.ui.FlatTabbedPaneUI
|
||||
|
||||
Table.ascendingSortIcon [lazy] 10,5 com.formdev.flatlaf.icons.FlatAscendingSortIcon [UI]
|
||||
Table.background #282828 HSL 0 0 16 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.cellFocusColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.cellFocusColor #046eff HSL 215 100 51 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.cellMargins 2,3,2,3 javax.swing.plaf.InsetsUIResource [UI]
|
||||
Table.cellNoFocusBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Default [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.cellNoFocusBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Default [UI] lineColor=#046eff HSL 215 100 51 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.consistentHomeEndKeyBehavior true
|
||||
Table.descendingSortIcon [lazy] 10,5 com.formdev.flatlaf.icons.FlatDescendingSortIcon [UI]
|
||||
Table.dropCellBackground [lazy] #00429d HSL 215 100 31 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1109,8 +1116,8 @@ Table.dropLineColor [lazy] #046eff HSL 215 100 51 javax.swing.pl
|
||||
Table.dropLineShortColor [lazy] #6aa9ff HSL 215 100 71 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.focusCellBackground #282828 HSL 0 0 16 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.focusCellForeground #dddddd HSL 0 0 87 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.focusCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Focused [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.focusSelectedCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Selected [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.focusCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Focused [UI] lineColor=#046eff HSL 215 100 51 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.focusSelectedCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Selected [UI] lineColor=#046eff HSL 215 100 51 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.font [active] $defaultFont [UI]
|
||||
Table.foreground #dddddd HSL 0 0 87 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.gridColor #3c3c3c HSL 0 0 24 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1137,6 +1144,8 @@ TableHeader.focusCellBackground #282828 HSL 0 0 16 javax.swing.plaf.Col
|
||||
TableHeader.font [active] $defaultFont [UI]
|
||||
TableHeader.foreground #dddddd HSL 0 0 87 javax.swing.plaf.ColorUIResource [UI]
|
||||
TableHeader.height 25
|
||||
TableHeader.hoverBackground #353535 HSL 0 0 21 com.formdev.flatlaf.util.DerivedColor [UI] lighten(5% autoInverse)
|
||||
TableHeader.pressedBackground #424242 HSL 0 0 26 com.formdev.flatlaf.util.DerivedColor [UI] lighten(10% autoInverse)
|
||||
TableHeader.separatorColor #424242 HSL 0 0 26 javax.swing.plaf.ColorUIResource [UI]
|
||||
TableHeader.showTrailingVerticalLine false
|
||||
TableHeaderUI com.formdev.flatlaf.ui.FlatTableHeaderUI
|
||||
@@ -1152,6 +1161,7 @@ TableUI com.formdev.flatlaf.ui.FlatTableUI
|
||||
TaskPane.background #1e1e1e HSL 0 0 12 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.borderColor #676767 HSL 0 0 40 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.contentInsets 10,10,10,10 javax.swing.plaf.InsetsUIResource [UI]
|
||||
TaskPane.font [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
TaskPane.specialTitleBackground #afafaf HSL 0 0 69 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.specialTitleForeground #222222 HSL 0 0 13 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.specialTitleOver #666666 HSL 0 0 40 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1355,6 +1365,7 @@ ToolBarUI com.formdev.flatlaf.ui.FlatToolBarUI
|
||||
|
||||
ToolTip.background #0f0f0f HSL 0 0 6 javax.swing.plaf.ColorUIResource [UI]
|
||||
ToolTip.border [lazy] 4,6,4,6 false com.formdev.flatlaf.ui.FlatEmptyBorder [UI]
|
||||
ToolTip.borderCornerRadius 4
|
||||
ToolTip.font [active] $defaultFont [UI]
|
||||
ToolTip.foreground #dddddd HSL 0 0 87 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
@@ -1380,7 +1391,7 @@ Tree.drawsFocusBorderAroundIcon false
|
||||
Tree.dropCellBackground [lazy] #00429d HSL 215 100 31 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.dropCellForeground [lazy] #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.dropLineColor [lazy] #046eff HSL 215 100 51 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.editorBorder [lazy] 1,1,1,1 false com.formdev.flatlaf.ui.FlatLineBorder [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Tree.editorBorder [lazy] 1,1,1,1 false com.formdev.flatlaf.ui.FlatLineBorder [UI] lineColor=#046eff HSL 215 100 51 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Tree.expandedIcon [lazy] 11,11 com.formdev.flatlaf.icons.FlatTreeExpandedIcon [UI]
|
||||
Tree.font [active] $defaultFont [UI]
|
||||
Tree.foreground #dddddd HSL 0 0 87 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1403,7 +1414,7 @@ Tree.rowHeight 0
|
||||
Tree.scrollsOnExpand true
|
||||
Tree.selectionArc 0
|
||||
Tree.selectionBackground #0058d0 HSL 215 100 41 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionBorderColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionBorderColor #046eff HSL 215 100 51 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionForeground #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionInactiveBackground #464646 HSL 0 0 27 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionInactiveForeground #dddddd HSL 0 0 87 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
@@ -207,6 +207,7 @@ ColumnControlButton.iconColor #888888 HSL 0 0 53 javax.swing.plaf.Colo
|
||||
|
||||
ComboBox.background #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.border [lazy] 3,3,3,3 false com.formdev.flatlaf.ui.FlatRoundBorder [UI]
|
||||
ComboBox.borderCornerRadius 8
|
||||
ComboBox.buttonArrowColor #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.buttonBackground #007aff HSL 211 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.buttonDarkShadow #00000026 15% HSLA 0 0 0 15 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -442,7 +443,9 @@ JXDatePicker.border [lazy] 3,3,3,3 false com.formdev.flatlaf.swin
|
||||
#---- JXHeader ----
|
||||
|
||||
JXHeader.background #f6f6f6 HSL 0 0 96 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXHeader.descriptionFont [active] $defaultFont [UI]
|
||||
JXHeader.startBackground #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXHeader.titleFont [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
|
||||
|
||||
#---- JXMonthView ----
|
||||
@@ -452,6 +455,7 @@ JXMonthView.background #ffffff HSL 0 0 100 javax.swing.plaf.Colo
|
||||
JXMonthView.daysOfTheWeekForeground #444444 HSL 0 0 27 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.disabledArrowColor #b6b6b6 HSL 0 0 71 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.flaggedDayForeground #e02222 HSL 0 75 51 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.font [active] $defaultFont [UI]
|
||||
JXMonthView.leadingDayForeground #b6b6b6 HSL 0 0 71 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.monthDownFileName [lazy] 20,20 com.formdev.flatlaf.swingx.ui.FlatMonthDownIcon [UI]
|
||||
JXMonthView.monthStringBackground #dfdfdf HSL 0 0 87 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -469,6 +473,7 @@ JXMonthView.weekOfTheYearForeground #666666 HSL 0 0 40 javax.swing.plaf
|
||||
JXTitledPanel.borderColor #00000026 15% HSLA 0 0 0 15 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXTitledPanel.captionInsets 4,10,4,10 javax.swing.plaf.InsetsUIResource [UI]
|
||||
JXTitledPanel.titleBackground #dfdfdf HSL 0 0 87 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXTitledPanel.titleFont [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
JXTitledPanel.titleForeground #222222 HSL 0 0 13 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
|
||||
@@ -547,15 +552,15 @@ LabelUI com.formdev.flatlaf.ui.FlatLabelUI
|
||||
|
||||
List.background #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.border [lazy] 0,0,0,0 false com.formdev.flatlaf.ui.FlatEmptyBorder [UI]
|
||||
List.cellFocusColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.cellFocusColor #00367b HSL 214 100 24 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.cellMargins 1,6,1,6 javax.swing.plaf.InsetsUIResource [UI]
|
||||
List.cellNoFocusBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Default [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.cellNoFocusBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Default [UI] lineColor=#00367b HSL 214 100 24 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.cellRenderer [active] javax.swing.DefaultListCellRenderer$UIResource [UI]
|
||||
List.dropCellBackground [lazy] #157cff HSL 214 100 54 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.dropCellForeground [lazy] #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.dropLineColor [lazy] #4899ff HSL 213 100 64 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.focusCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Focused [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.focusSelectedCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Selected [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.focusCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Focused [UI] lineColor=#00367b HSL 214 100 24 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.focusSelectedCellHighlightBorder [lazy] 1,6,1,6 false com.formdev.flatlaf.ui.FlatListCellBorder$Selected [UI] lineColor=#00367b HSL 214 100 24 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
List.font [active] $defaultFont [UI]
|
||||
List.foreground #262626 HSL 0 0 15 javax.swing.plaf.ColorUIResource [UI]
|
||||
List.noFocusBorder 1,1,1,1 false javax.swing.plaf.BorderUIResource$EmptyBorderUIResource [UI]
|
||||
@@ -746,6 +751,7 @@ PasswordFieldUI com.formdev.flatlaf.ui.FlatPasswordFieldUI
|
||||
|
||||
#---- Popup ----
|
||||
|
||||
Popup.borderCornerRadius 4
|
||||
Popup.dropShadowColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Popup.dropShadowInsets -4,-4,4,4 javax.swing.plaf.InsetsUIResource [UI]
|
||||
Popup.dropShadowOpacity 0.15
|
||||
@@ -757,6 +763,7 @@ Popup.dropShadowPainted true
|
||||
PopupMenu.background #ececec HSL 0 0 93 javax.swing.plaf.ColorUIResource [UI]
|
||||
PopupMenu.border [lazy] 6,1,6,1 false com.formdev.flatlaf.ui.FlatPopupMenuBorder [UI] lineColor=#b1b1b1 HSL 0 0 69 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
PopupMenu.borderColor #b1b1b1 HSL 0 0 69 javax.swing.plaf.ColorUIResource [UI]
|
||||
PopupMenu.borderCornerRadius 8
|
||||
PopupMenu.borderInsets 6,1,6,1 javax.swing.plaf.InsetsUIResource [UI]
|
||||
PopupMenu.consumeEventOnClose false
|
||||
PopupMenu.font [active] $defaultFont [UI]
|
||||
@@ -1102,9 +1109,9 @@ TabbedPaneUI com.formdev.flatlaf.ui.FlatTabbedPaneUI
|
||||
|
||||
Table.ascendingSortIcon [lazy] 10,5 com.formdev.flatlaf.icons.FlatAscendingSortIcon [UI]
|
||||
Table.background #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.cellFocusColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.cellFocusColor #00367b HSL 214 100 24 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.cellMargins 2,3,2,3 javax.swing.plaf.InsetsUIResource [UI]
|
||||
Table.cellNoFocusBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Default [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.cellNoFocusBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Default [UI] lineColor=#00367b HSL 214 100 24 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.consistentHomeEndKeyBehavior true
|
||||
Table.descendingSortIcon [lazy] 10,5 com.formdev.flatlaf.icons.FlatDescendingSortIcon [UI]
|
||||
Table.dropCellBackground [lazy] #157cff HSL 214 100 54 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1113,8 +1120,8 @@ Table.dropLineColor [lazy] #4899ff HSL 213 100 64 javax.swing.pl
|
||||
Table.dropLineShortColor [lazy] #00367b HSL 214 100 24 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.focusCellBackground #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.focusCellForeground #262626 HSL 0 0 15 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.focusCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Focused [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.focusSelectedCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Selected [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.focusCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Focused [UI] lineColor=#00367b HSL 214 100 24 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.focusSelectedCellHighlightBorder [lazy] 2,3,2,3 false com.formdev.flatlaf.ui.FlatTableCellBorder$Selected [UI] lineColor=#00367b HSL 214 100 24 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Table.font [active] $defaultFont [UI]
|
||||
Table.foreground #262626 HSL 0 0 15 javax.swing.plaf.ColorUIResource [UI]
|
||||
Table.gridColor #ebebeb HSL 0 0 92 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1141,6 +1148,8 @@ TableHeader.focusCellBackground #ffffff HSL 0 0 100 javax.swing.plaf.Col
|
||||
TableHeader.font [active] $defaultFont [UI]
|
||||
TableHeader.foreground #262626 HSL 0 0 15 javax.swing.plaf.ColorUIResource [UI]
|
||||
TableHeader.height 25
|
||||
TableHeader.hoverBackground #f2f2f2 HSL 0 0 95 com.formdev.flatlaf.util.DerivedColor [UI] darken(5% autoInverse)
|
||||
TableHeader.pressedBackground #e6e6e6 HSL 0 0 90 com.formdev.flatlaf.util.DerivedColor [UI] darken(10% autoInverse)
|
||||
TableHeader.separatorColor #e6e6e6 HSL 0 0 90 javax.swing.plaf.ColorUIResource [UI]
|
||||
TableHeader.showTrailingVerticalLine false
|
||||
TableHeaderUI com.formdev.flatlaf.ui.FlatTableHeaderUI
|
||||
@@ -1156,6 +1165,7 @@ TableUI com.formdev.flatlaf.ui.FlatTableUI
|
||||
TaskPane.background #f6f6f6 HSL 0 0 96 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.borderColor #00000026 15% HSLA 0 0 0 15 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.contentInsets 10,10,10,10 javax.swing.plaf.InsetsUIResource [UI]
|
||||
TaskPane.font [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
TaskPane.specialTitleBackground #afafaf HSL 0 0 69 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.specialTitleForeground #222222 HSL 0 0 13 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.specialTitleOver #666666 HSL 0 0 40 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1359,6 +1369,7 @@ ToolBarUI com.formdev.flatlaf.ui.FlatToolBarUI
|
||||
|
||||
ToolTip.background #fefefe HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
ToolTip.border [lazy] 4,6,4,6 false com.formdev.flatlaf.ui.FlatLineBorder [UI] lineColor=#949494 HSL 0 0 58 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
ToolTip.borderCornerRadius 4
|
||||
ToolTip.font [active] $defaultFont [UI]
|
||||
ToolTip.foreground #262626 HSL 0 0 15 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
@@ -1384,7 +1395,7 @@ Tree.drawsFocusBorderAroundIcon false
|
||||
Tree.dropCellBackground [lazy] #157cff HSL 214 100 54 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.dropCellForeground [lazy] #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.dropLineColor [lazy] #4899ff HSL 213 100 64 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.editorBorder [lazy] 1,1,1,1 false com.formdev.flatlaf.ui.FlatLineBorder [UI] lineColor=#000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Tree.editorBorder [lazy] 1,1,1,1 false com.formdev.flatlaf.ui.FlatLineBorder [UI] lineColor=#00367b HSL 214 100 24 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
Tree.expandedIcon [lazy] 11,11 com.formdev.flatlaf.icons.FlatTreeExpandedIcon [UI]
|
||||
Tree.font [active] $defaultFont [UI]
|
||||
Tree.foreground #262626 HSL 0 0 15 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1407,7 +1418,7 @@ Tree.rowHeight 0
|
||||
Tree.scrollsOnExpand true
|
||||
Tree.selectionArc 0
|
||||
Tree.selectionBackground #0063e1 HSL 214 100 44 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionBorderColor #000000 HSL 0 0 0 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionBorderColor #00367b HSL 214 100 24 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionForeground #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionInactiveBackground #dcdcdc HSL 0 0 86 javax.swing.plaf.ColorUIResource [UI]
|
||||
Tree.selectionInactiveForeground #262626 HSL 0 0 15 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
@@ -220,6 +220,7 @@ ColumnControlButton.actionIcon [lazy] 10,10 com.formdev.flatlaf.swingx.icons.
|
||||
|
||||
ComboBox.background #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.border [lazy] 1,1,1,1 false com.formdev.flatlaf.ui.FlatRoundBorder [UI]
|
||||
ComboBox.borderCornerRadius 4
|
||||
ComboBox.buttonArrowColor #666666 HSL 0 0 40 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.buttonBackground #f0f0f0 HSL 0 0 94 javax.swing.plaf.ColorUIResource [UI]
|
||||
ComboBox.buttonDarkShadow #696969 HSL 0 0 41 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -451,8 +452,10 @@ JXDatePicker.border [lazy] 1,1,1,1 false com.formdev.flatlaf.swin
|
||||
#---- JXHeader ----
|
||||
|
||||
JXHeader.background #ff8888 HSL 0 100 77 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXHeader.descriptionFont [active] $defaultFont [UI]
|
||||
JXHeader.descriptionForeground #ff0000 HSL 0 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXHeader.startBackground #ffcccc HSL 0 100 90 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXHeader.titleFont [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
JXHeader.titleForeground #0000ff HSL 240 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
|
||||
@@ -463,6 +466,7 @@ JXMonthView.background #ffffff HSL 0 0 100 javax.swing.plaf.Colo
|
||||
JXMonthView.daysOfTheWeekForeground #00ff00 HSL 120 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.disabledArrowColor #ababab HSL 0 0 67 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.flaggedDayForeground #00ffff HSL 180 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.font [active] $defaultFont [UI]
|
||||
JXMonthView.leadingDayForeground #c0c0c0 HSL 0 0 75 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXMonthView.monthDownFileName [lazy] 20,20 com.formdev.flatlaf.swingx.ui.FlatMonthDownIcon [UI]
|
||||
JXMonthView.monthStringBackground #00ff00 HSL 120 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -480,6 +484,7 @@ JXMonthView.weekOfTheYearForeground #0000ff HSL 240 100 50 javax.swing.plaf
|
||||
JXTitledPanel.borderColor #0000ff HSL 240 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXTitledPanel.captionInsets 4,10,4,10 javax.swing.plaf.InsetsUIResource [UI]
|
||||
JXTitledPanel.titleBackground #ffff00 HSL 60 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
JXTitledPanel.titleFont [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
JXTitledPanel.titleForeground #ff00ff HSL 300 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
|
||||
@@ -765,6 +770,7 @@ PasswordFieldUI com.formdev.flatlaf.ui.FlatPasswordFieldUI
|
||||
|
||||
#---- Popup ----
|
||||
|
||||
Popup.borderCornerRadius 4
|
||||
Popup.dropShadowColor #00ff00 HSL 120 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
Popup.dropShadowInsets -6,6,6,6 javax.swing.plaf.InsetsUIResource [UI]
|
||||
Popup.dropShadowOpacity 0.5
|
||||
@@ -776,6 +782,7 @@ Popup.dropShadowPainted true
|
||||
PopupMenu.background #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
PopupMenu.border [lazy] 4,1,4,1 false com.formdev.flatlaf.ui.FlatPopupMenuBorder [UI] lineColor=#0000ff HSL 240 100 50 javax.swing.plaf.ColorUIResource [UI] lineThickness=1.000000
|
||||
PopupMenu.borderColor #0000ff HSL 240 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
PopupMenu.borderCornerRadius 4
|
||||
PopupMenu.borderInsets 4,1,4,1 javax.swing.plaf.InsetsUIResource [UI]
|
||||
PopupMenu.consumeEventOnClose false
|
||||
PopupMenu.font [active] $defaultFont [UI]
|
||||
@@ -1081,12 +1088,14 @@ TabbedPane.disabledForeground #777777 HSL 0 0 47 javax.swing.plaf.Colo
|
||||
TabbedPane.disabledUnderlineColor #7a7a7a HSL 0 0 48 javax.swing.plaf.ColorUIResource [UI]
|
||||
TabbedPane.focus #ff0000 HSL 0 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
TabbedPane.focusColor #dddddd HSL 0 0 87 javax.swing.plaf.ColorUIResource [UI]
|
||||
TabbedPane.focusForeground #ffff00 HSL 60 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
TabbedPane.font [active] $defaultFont [UI]
|
||||
TabbedPane.foreground #ff0000 HSL 0 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
TabbedPane.hasFullBorder false
|
||||
TabbedPane.hiddenTabsNavigation moreTabsButton
|
||||
TabbedPane.highlight #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
TabbedPane.hoverColor #eeeeee HSL 0 0 93 javax.swing.plaf.ColorUIResource [UI]
|
||||
TabbedPane.hoverForeground #00ffff HSL 180 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
TabbedPane.inactiveUnderlineColor #ff00ff HSL 300 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
TabbedPane.labelShift 1
|
||||
TabbedPane.light #e3e3e3 HSL 0 0 89 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1161,6 +1170,10 @@ TableHeader.focusCellBackground #4444ff HSL 240 100 63 javax.swing.plaf.Col
|
||||
TableHeader.font [active] $defaultFont [UI]
|
||||
TableHeader.foreground #ffffff HSL 0 0 100 javax.swing.plaf.ColorUIResource [UI]
|
||||
TableHeader.height 25
|
||||
TableHeader.hoverBackground #1111ff HSL 240 100 53 com.formdev.flatlaf.util.DerivedColor [UI] darken(10% autoInverse)
|
||||
TableHeader.hoverForeground #e6e6e6 HSL 0 0 90 com.formdev.flatlaf.util.DerivedColor [UI] lighten(10% autoInverse)
|
||||
TableHeader.pressedBackground #0000dd HSL 240 100 43 com.formdev.flatlaf.util.DerivedColor [UI] darken(20% autoInverse)
|
||||
TableHeader.pressedForeground #cccccc HSL 0 0 80 com.formdev.flatlaf.util.DerivedColor [UI] lighten(20% autoInverse)
|
||||
TableHeader.separatorColor #00ff00 HSL 120 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
TableHeader.showTrailingVerticalLine false
|
||||
TableHeaderUI com.formdev.flatlaf.ui.FlatTableHeaderUI
|
||||
@@ -1176,6 +1189,7 @@ TableUI com.formdev.flatlaf.ui.FlatTableUI
|
||||
TaskPane.background #00ff00 HSL 120 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.borderColor #0000ff HSL 240 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.contentInsets 10,10,10,10 javax.swing.plaf.InsetsUIResource [UI]
|
||||
TaskPane.font [active] Segoe UI bold 12 javax.swing.plaf.FontUIResource [UI]
|
||||
TaskPane.specialTitleBackground #00ffff HSL 180 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.specialTitleForeground #444444 HSL 0 0 27 javax.swing.plaf.ColorUIResource [UI]
|
||||
TaskPane.specialTitleOver #dd0000 HSL 0 100 43 javax.swing.plaf.ColorUIResource [UI]
|
||||
@@ -1395,6 +1409,7 @@ ToolBarUI com.formdev.flatlaf.ui.FlatToolBarUI
|
||||
|
||||
ToolTip.background #eeeeff HSL 240 100 97 javax.swing.plaf.ColorUIResource [UI]
|
||||
ToolTip.border [lazy] line: #000000 HSL 0 0 0 java.awt.Color 1 false 1,1,1,1 true javax.swing.plaf.BorderUIResource$LineBorderUIResource [UI]
|
||||
ToolTip.borderCornerRadius 4
|
||||
ToolTip.font [active] $defaultFont [UI]
|
||||
ToolTip.foreground #ff0000 HSL 0 100 50 javax.swing.plaf.ColorUIResource [UI]
|
||||
|
||||
|
||||
@@ -439,6 +439,16 @@ public class FlatComponents2Test
|
||||
tree.setCellRenderer( new TestDefaultTreeCellRenderer() );
|
||||
break;
|
||||
|
||||
case "defaultWithIcons":
|
||||
for( JTree tree : trees )
|
||||
tree.setCellRenderer( new TestDefaultWithIconsTreeCellRenderer() );
|
||||
break;
|
||||
|
||||
case "defaultWithIcon":
|
||||
for( JTree tree : trees )
|
||||
tree.setCellRenderer( new TestDefaultWithIconTreeCellRenderer() );
|
||||
break;
|
||||
|
||||
case "label":
|
||||
for( JTree tree : trees )
|
||||
tree.setCellRenderer( new TestLabelTreeCellRenderer() );
|
||||
@@ -495,11 +505,13 @@ public class FlatComponents2Test
|
||||
tree.setEditable( editable );
|
||||
}
|
||||
|
||||
private void showDefaultIcons() {
|
||||
boolean showDefaultIcons = showDefaultIconsCheckBox.isSelected();
|
||||
private void treeShowDefaultIconsChanged() {
|
||||
boolean showDefaultIcons = treeShowDefaultIconsCheckBox.isSelected();
|
||||
UIManager.put( "Tree.showDefaultIcons", showDefaultIcons ? true : null );
|
||||
for( JTree tree : allTrees )
|
||||
tree.updateUI();
|
||||
|
||||
treeRendererChanged();
|
||||
}
|
||||
|
||||
private void treeMouseClicked( MouseEvent e ) {
|
||||
@@ -601,7 +613,7 @@ public class FlatComponents2Test
|
||||
treePaintLinesCheckBox = new JCheckBox();
|
||||
treeRedLinesCheckBox = new JCheckBox();
|
||||
treeEditableCheckBox = new JCheckBox();
|
||||
showDefaultIconsCheckBox = new JCheckBox();
|
||||
treeShowDefaultIconsCheckBox = new JCheckBox();
|
||||
JPanel tableOptionsPanel = new JPanel();
|
||||
JLabel autoResizeModeLabel = new JLabel();
|
||||
autoResizeModeField = new JComboBox<>();
|
||||
@@ -953,6 +965,8 @@ public class FlatComponents2Test
|
||||
treeRendererComboBox.setModel(new DefaultComboBoxModel<>(new String[] {
|
||||
"default",
|
||||
"defaultSubclass",
|
||||
"defaultWithIcons",
|
||||
"defaultWithIcon",
|
||||
"label",
|
||||
"swingxDefault",
|
||||
"jideCheckBox",
|
||||
@@ -988,10 +1002,10 @@ public class FlatComponents2Test
|
||||
treeEditableCheckBox.addActionListener(e -> treeEditableChanged());
|
||||
treeOptionsPanel.add(treeEditableCheckBox, "cell 0 4");
|
||||
|
||||
//---- showDefaultIconsCheckBox ----
|
||||
showDefaultIconsCheckBox.setText("show default icons");
|
||||
showDefaultIconsCheckBox.addActionListener(e -> showDefaultIcons());
|
||||
treeOptionsPanel.add(showDefaultIconsCheckBox, "cell 0 4");
|
||||
//---- treeShowDefaultIconsCheckBox ----
|
||||
treeShowDefaultIconsCheckBox.setText("show default icons");
|
||||
treeShowDefaultIconsCheckBox.addActionListener(e -> treeShowDefaultIconsChanged());
|
||||
treeOptionsPanel.add(treeShowDefaultIconsCheckBox, "cell 0 4");
|
||||
}
|
||||
add(treeOptionsPanel, "cell 0 4 4 1");
|
||||
|
||||
@@ -1128,7 +1142,7 @@ public class FlatComponents2Test
|
||||
private JCheckBox treePaintLinesCheckBox;
|
||||
private JCheckBox treeRedLinesCheckBox;
|
||||
private JCheckBox treeEditableCheckBox;
|
||||
private JCheckBox showDefaultIconsCheckBox;
|
||||
private JCheckBox treeShowDefaultIconsCheckBox;
|
||||
private JComboBox<String> autoResizeModeField;
|
||||
private JComboBox<String> sortIconPositionComboBox;
|
||||
private JCheckBox showHorizontalLinesCheckBox;
|
||||
@@ -1604,6 +1618,38 @@ public class FlatComponents2Test
|
||||
}
|
||||
}
|
||||
|
||||
//---- class TestDefaultWithIconsTreeCellRenderer -------------------------
|
||||
|
||||
private static class TestDefaultWithIconsTreeCellRenderer
|
||||
extends TestDefaultTreeCellRenderer
|
||||
{
|
||||
public TestDefaultWithIconsTreeCellRenderer() {
|
||||
setLeafIcon( UIManager.getIcon( "FileView.floppyDriveIcon" ) );
|
||||
setClosedIcon( UIManager.getIcon( "FileView.hardDriveIcon" ) );
|
||||
setOpenIcon( UIManager.getIcon( "FileView.computerIcon" ) );
|
||||
}
|
||||
}
|
||||
|
||||
//---- class TestDefaultWithIconTreeCellRenderer --------------------------
|
||||
|
||||
private static class TestDefaultWithIconTreeCellRenderer
|
||||
extends TestDefaultTreeCellRenderer
|
||||
{
|
||||
@Override
|
||||
public Component getTreeCellRendererComponent( JTree tree, Object value, boolean sel, boolean expanded,
|
||||
boolean leaf, int row, boolean hasFocus )
|
||||
{
|
||||
super.getTreeCellRendererComponent( tree, value, sel, expanded, leaf, row, hasFocus );
|
||||
|
||||
// set icon for enabled state, but not for disabled state,
|
||||
// which allows testing whether tree node layout is updated correctly
|
||||
// when enabled state changes
|
||||
setIcon( UIManager.getIcon( "FileView.floppyDriveIcon" ) );
|
||||
|
||||
return this;
|
||||
}
|
||||
}
|
||||
|
||||
//---- class TestLabelTreeCellRenderer ------------------------------------
|
||||
|
||||
private static class TestLabelTreeCellRenderer
|
||||
|
||||
@@ -411,6 +411,8 @@ new FormModel {
|
||||
selectedItem: "default"
|
||||
addElement( "default" )
|
||||
addElement( "defaultSubclass" )
|
||||
addElement( "defaultWithIcons" )
|
||||
addElement( "defaultWithIcon" )
|
||||
addElement( "label" )
|
||||
addElement( "swingxDefault" )
|
||||
addElement( "jideCheckBox" )
|
||||
@@ -476,12 +478,12 @@ new FormModel {
|
||||
"value": "cell 0 4"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
||||
name: "showDefaultIconsCheckBox"
|
||||
name: "treeShowDefaultIconsCheckBox"
|
||||
"text": "show default icons"
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "showDefaultIcons", false ) )
|
||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "treeShowDefaultIconsChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 4"
|
||||
} )
|
||||
|
||||
@@ -40,10 +40,13 @@ public class FlatPaintingHiDPITest
|
||||
|
||||
FlatPaintingHiDPITest() {
|
||||
initComponents();
|
||||
reset();
|
||||
sliderChanged();
|
||||
}
|
||||
|
||||
private void sliderChanged() {
|
||||
painter.originX = originXSlider.getValue();
|
||||
painter.originY = originYSlider.getValue();
|
||||
painter.translateX = translateXSlider.getValue();
|
||||
painter.translateY = translateYSlider.getValue();
|
||||
painter.scaleX = scaleXSlider.getValue();
|
||||
@@ -78,15 +81,23 @@ public class FlatPaintingHiDPITest
|
||||
}
|
||||
|
||||
private void reset() {
|
||||
AffineTransform t = getGraphicsConfiguration().getDefaultTransform();
|
||||
|
||||
originXSlider.setValue( 20 );
|
||||
originYSlider.setValue( 10 );
|
||||
translateXSlider.setValue( 100 );
|
||||
translateYSlider.setValue( 100 );
|
||||
scaleXSlider.setValue( 100 );
|
||||
scaleYSlider.setValue( 100 );
|
||||
scaleXSlider.setValue( (int) (t.getScaleX() * 100) );
|
||||
scaleYSlider.setValue( (int) (t.getScaleY() * 100) );
|
||||
rotateSlider.setValue( 0 );
|
||||
}
|
||||
|
||||
private void initComponents() {
|
||||
// JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
|
||||
JLabel originXLabel = new JLabel();
|
||||
originXSlider = new JSlider();
|
||||
JLabel originYLabel = new JLabel();
|
||||
originYSlider = new JSlider();
|
||||
JLabel translateXLabel = new JLabel();
|
||||
translateXSlider = new JSlider();
|
||||
JLabel translateYLabel = new JLabel();
|
||||
@@ -128,30 +139,58 @@ public class FlatPaintingHiDPITest
|
||||
"[400,fill]para" +
|
||||
"[grow,fill]",
|
||||
// rows
|
||||
"[fill]" +
|
||||
"[]" +
|
||||
"[]" +
|
||||
"[]" +
|
||||
"[]" +
|
||||
"[]" +
|
||||
"[]" +
|
||||
"[]" +
|
||||
"[grow]"));
|
||||
|
||||
//---- originXLabel ----
|
||||
originXLabel.setText("OriginX:");
|
||||
add(originXLabel, "cell 0 0");
|
||||
|
||||
//---- originXSlider ----
|
||||
originXSlider.setMaximum(500);
|
||||
originXSlider.setMajorTickSpacing(100);
|
||||
originXSlider.setMinorTickSpacing(25);
|
||||
originXSlider.setValue(20);
|
||||
originXSlider.setPaintTicks(true);
|
||||
originXSlider.addChangeListener(e -> sliderChanged());
|
||||
add(originXSlider, "cell 1 0");
|
||||
|
||||
//---- originYLabel ----
|
||||
originYLabel.setText("OriginY:");
|
||||
add(originYLabel, "cell 0 1");
|
||||
|
||||
//---- originYSlider ----
|
||||
originYSlider.setMaximum(500);
|
||||
originYSlider.setPaintLabels(true);
|
||||
originYSlider.setPaintTicks(true);
|
||||
originYSlider.setMajorTickSpacing(100);
|
||||
originYSlider.setMinorTickSpacing(25);
|
||||
originYSlider.setValue(10);
|
||||
originYSlider.addChangeListener(e -> sliderChanged());
|
||||
add(originYSlider, "cell 1 1");
|
||||
|
||||
//---- translateXLabel ----
|
||||
translateXLabel.setText("TranslateX:");
|
||||
add(translateXLabel, "cell 0 0");
|
||||
add(translateXLabel, "cell 0 2");
|
||||
|
||||
//---- translateXSlider ----
|
||||
translateXSlider.setMaximum(500);
|
||||
translateXSlider.setPaintLabels(true);
|
||||
translateXSlider.setPaintTicks(true);
|
||||
translateXSlider.setMajorTickSpacing(100);
|
||||
translateXSlider.setMinorTickSpacing(25);
|
||||
translateXSlider.setValue(100);
|
||||
translateXSlider.addChangeListener(e -> sliderChanged());
|
||||
add(translateXSlider, "cell 1 0");
|
||||
add(translateXSlider, "cell 1 2");
|
||||
|
||||
//---- translateYLabel ----
|
||||
translateYLabel.setText("TranslateY:");
|
||||
add(translateYLabel, "cell 0 1");
|
||||
add(translateYLabel, "cell 0 3");
|
||||
|
||||
//---- translateYSlider ----
|
||||
translateYSlider.setMaximum(500);
|
||||
@@ -161,30 +200,29 @@ public class FlatPaintingHiDPITest
|
||||
translateYSlider.setMinorTickSpacing(25);
|
||||
translateYSlider.setValue(100);
|
||||
translateYSlider.addChangeListener(e -> sliderChanged());
|
||||
add(translateYSlider, "cell 1 1");
|
||||
add(translateYSlider, "cell 1 3");
|
||||
|
||||
//---- scaleXLabel ----
|
||||
scaleXLabel.setText("ScaleX:");
|
||||
add(scaleXLabel, "cell 0 2");
|
||||
add(scaleXLabel, "cell 0 4");
|
||||
|
||||
//---- scaleXSlider ----
|
||||
scaleXSlider.setMaximum(300);
|
||||
scaleXSlider.setMaximum(400);
|
||||
scaleXSlider.setValue(100);
|
||||
scaleXSlider.setPaintTicks(true);
|
||||
scaleXSlider.setPaintLabels(true);
|
||||
scaleXSlider.setMajorTickSpacing(50);
|
||||
scaleXSlider.setSnapToTicks(true);
|
||||
scaleXSlider.setMinorTickSpacing(10);
|
||||
scaleXSlider.setMinimum(-100);
|
||||
scaleXSlider.addChangeListener(e -> sliderChanged());
|
||||
add(scaleXSlider, "cell 1 2");
|
||||
add(scaleXSlider, "cell 1 4");
|
||||
|
||||
//---- scaleYLabel ----
|
||||
scaleYLabel.setText("ScaleY:");
|
||||
add(scaleYLabel, "cell 0 3");
|
||||
add(scaleYLabel, "cell 0 5");
|
||||
|
||||
//---- scaleYSlider ----
|
||||
scaleYSlider.setMaximum(300);
|
||||
scaleYSlider.setMaximum(400);
|
||||
scaleYSlider.setValue(100);
|
||||
scaleYSlider.setPaintTicks(true);
|
||||
scaleYSlider.setPaintLabels(true);
|
||||
@@ -193,11 +231,11 @@ public class FlatPaintingHiDPITest
|
||||
scaleYSlider.setMinorTickSpacing(10);
|
||||
scaleYSlider.setMinimum(-100);
|
||||
scaleYSlider.addChangeListener(e -> sliderChanged());
|
||||
add(scaleYSlider, "cell 1 3");
|
||||
add(scaleYSlider, "cell 1 5");
|
||||
|
||||
//---- rotateLabel ----
|
||||
rotateLabel.setText("Rotate:");
|
||||
add(rotateLabel, "cell 0 4");
|
||||
add(rotateLabel, "cell 0 6");
|
||||
|
||||
//---- rotateSlider ----
|
||||
rotateSlider.setMaximum(360);
|
||||
@@ -207,7 +245,7 @@ public class FlatPaintingHiDPITest
|
||||
rotateSlider.setPaintLabels(true);
|
||||
rotateSlider.setPaintTicks(true);
|
||||
rotateSlider.addChangeListener(e -> sliderChanged());
|
||||
add(rotateSlider, "cell 1 4");
|
||||
add(rotateSlider, "cell 1 6");
|
||||
|
||||
//======== panel1 ========
|
||||
{
|
||||
@@ -298,17 +336,19 @@ public class FlatPaintingHiDPITest
|
||||
cRotationDegreesLabel.setText("text");
|
||||
panel1.add(cRotationDegreesLabel, "cell 1 6");
|
||||
}
|
||||
add(panel1, "cell 2 0 1 4");
|
||||
add(panel1, "cell 2 2 1 4,growy");
|
||||
|
||||
//---- resetButton ----
|
||||
resetButton.setText("Reset");
|
||||
resetButton.addActionListener(e -> reset());
|
||||
add(resetButton, "cell 2 4,align left bottom,grow 0 0");
|
||||
add(painter, "cell 0 5 3 1,grow,width 600,height 400");
|
||||
add(resetButton, "cell 2 6,align left bottom,grow 0 0");
|
||||
add(painter, "cell 0 7 3 1,grow,width 600,height 400");
|
||||
// JFormDesigner - End of component initialization //GEN-END:initComponents
|
||||
}
|
||||
|
||||
// JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
|
||||
private JSlider originXSlider;
|
||||
private JSlider originYSlider;
|
||||
private JSlider translateXSlider;
|
||||
private JSlider translateYSlider;
|
||||
private JSlider scaleXSlider;
|
||||
@@ -331,6 +371,8 @@ public class FlatPaintingHiDPITest
|
||||
public static class HiDPI1xPainter
|
||||
extends JComponent
|
||||
{
|
||||
int originX;
|
||||
int originY;
|
||||
int translateX;
|
||||
int translateY;
|
||||
int scaleX;
|
||||
@@ -361,10 +403,10 @@ public class FlatPaintingHiDPITest
|
||||
g2.rotate( Math.toRadians( rotate ) );
|
||||
|
||||
g2.setColor( Color.red );
|
||||
g2.fillRect( 0, 0, 100, 50 );
|
||||
g2.fillRect( originX, originY, 100, 50 );
|
||||
|
||||
g2.setColor( Color.green );
|
||||
HiDPIUtils.paintAtScale1x( g2, 0, 0, 100, 50,
|
||||
HiDPIUtils.paintAtScale1x( g2, originX, originY, 100, 50,
|
||||
(g2d, x2, y2, width2, height2, scaleFactor) -> {
|
||||
g2d.fillRect( x2 + 10, y2 + 10, width2 - 20, height2 - 20 );
|
||||
} );
|
||||
|
||||
@@ -9,36 +9,76 @@ new FormModel {
|
||||
add( new FormContainer( "javax.swing.JPanel", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
||||
"$layoutConstraints": "hidemode 3"
|
||||
"$columnConstraints": "[fill][400,fill]para[grow,fill]"
|
||||
"$rowConstraints": "[fill][][][][][grow]"
|
||||
"$rowConstraints": "[][][][][][][][grow]"
|
||||
} ) {
|
||||
name: "this"
|
||||
"border": sfield com.jformdesigner.model.FormObject NULL_VALUE
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "translateXLabel"
|
||||
"text": "TranslateX:"
|
||||
name: "originXLabel"
|
||||
"text": "OriginX:"
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 0"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JSlider" ) {
|
||||
name: "translateXSlider"
|
||||
name: "originXSlider"
|
||||
"maximum": 500
|
||||
"majorTickSpacing": 100
|
||||
"minorTickSpacing": 25
|
||||
"value": 20
|
||||
"paintTicks": true
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
addEvent( new FormEvent( "javax.swing.event.ChangeListener", "stateChanged", "sliderChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 1 0"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "originYLabel"
|
||||
"text": "OriginY:"
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 1"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JSlider" ) {
|
||||
name: "originYSlider"
|
||||
"maximum": 500
|
||||
"paintLabels": true
|
||||
"paintTicks": true
|
||||
"majorTickSpacing": 100
|
||||
"minorTickSpacing": 25
|
||||
"value": 10
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
addEvent( new FormEvent( "javax.swing.event.ChangeListener", "stateChanged", "sliderChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 1 1"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "translateXLabel"
|
||||
"text": "TranslateX:"
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 2"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JSlider" ) {
|
||||
name: "translateXSlider"
|
||||
"maximum": 500
|
||||
"paintTicks": true
|
||||
"majorTickSpacing": 100
|
||||
"minorTickSpacing": 25
|
||||
"value": 100
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
addEvent( new FormEvent( "javax.swing.event.ChangeListener", "stateChanged", "sliderChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 1 0"
|
||||
"value": "cell 1 2"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "translateYLabel"
|
||||
"text": "TranslateY:"
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 1"
|
||||
"value": "cell 0 3"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JSlider" ) {
|
||||
name: "translateYSlider"
|
||||
@@ -53,20 +93,19 @@ new FormModel {
|
||||
}
|
||||
addEvent( new FormEvent( "javax.swing.event.ChangeListener", "stateChanged", "sliderChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 1 1"
|
||||
"value": "cell 1 3"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "scaleXLabel"
|
||||
"text": "ScaleX:"
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 2"
|
||||
"value": "cell 0 4"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JSlider" ) {
|
||||
name: "scaleXSlider"
|
||||
"maximum": 300
|
||||
"maximum": 400
|
||||
"value": 100
|
||||
"paintTicks": true
|
||||
"paintLabels": true
|
||||
"majorTickSpacing": 50
|
||||
"snapToTicks": true
|
||||
"minorTickSpacing": 10
|
||||
@@ -76,17 +115,17 @@ new FormModel {
|
||||
}
|
||||
addEvent( new FormEvent( "javax.swing.event.ChangeListener", "stateChanged", "sliderChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 1 2"
|
||||
"value": "cell 1 4"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "scaleYLabel"
|
||||
"text": "ScaleY:"
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 3"
|
||||
"value": "cell 0 5"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JSlider" ) {
|
||||
name: "scaleYSlider"
|
||||
"maximum": 300
|
||||
"maximum": 400
|
||||
"value": 100
|
||||
"paintTicks": true
|
||||
"paintLabels": true
|
||||
@@ -99,13 +138,13 @@ new FormModel {
|
||||
}
|
||||
addEvent( new FormEvent( "javax.swing.event.ChangeListener", "stateChanged", "sliderChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 1 3"
|
||||
"value": "cell 1 5"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "rotateLabel"
|
||||
"text": "Rotate:"
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 4"
|
||||
"value": "cell 0 6"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JSlider" ) {
|
||||
name: "rotateSlider"
|
||||
@@ -120,7 +159,7 @@ new FormModel {
|
||||
}
|
||||
addEvent( new FormEvent( "javax.swing.event.ChangeListener", "stateChanged", "sliderChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 1 4"
|
||||
"value": "cell 1 6"
|
||||
} )
|
||||
add( new FormContainer( "javax.swing.JPanel", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
||||
"$layoutConstraints": "hidemode 3"
|
||||
@@ -264,14 +303,14 @@ new FormModel {
|
||||
"value": "cell 1 6"
|
||||
} )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 2 0 1 4"
|
||||
"value": "cell 2 2 1 4,growy"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JButton" ) {
|
||||
name: "resetButton"
|
||||
"text": "Reset"
|
||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "reset", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 2 4,align left bottom,grow 0 0"
|
||||
"value": "cell 2 6,align left bottom,grow 0 0"
|
||||
} )
|
||||
add( new FormComponent( "com.formdev.flatlaf.testing.FlatPaintingHiDPITest$HiDPI1xPainter" ) {
|
||||
name: "painter"
|
||||
@@ -279,11 +318,11 @@ new FormModel {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 5 3 1,grow,width 600,height 400"
|
||||
"value": "cell 0 7 3 1,grow,width 600,height 400"
|
||||
} )
|
||||
}, new FormLayoutConstraints( null ) {
|
||||
"location": new java.awt.Point( 0, 0 )
|
||||
"size": new java.awt.Dimension( 685, 680 )
|
||||
"size": new java.awt.Dimension( 840, 680 )
|
||||
} )
|
||||
}
|
||||
}
|
||||
|
||||
@@ -647,6 +647,10 @@ public class FlatTestFrame
|
||||
Component view = ((JScrollPane)c).getViewport().getView();
|
||||
if( view != null )
|
||||
action.accept( view, "view" );
|
||||
|
||||
JViewport columnHeader = ((JScrollPane)c).getColumnHeader();
|
||||
if( columnHeader != null )
|
||||
action.accept( columnHeader.getView(), "columnHeader" );
|
||||
} else if( c instanceof JTabbedPane ) {
|
||||
JTabbedPane tabPane = (JTabbedPane)c;
|
||||
int tabCount = tabPane.getTabCount();
|
||||
|
||||
@@ -0,0 +1,56 @@
|
||||
package com.formdev.flatlaf.testing;
|
||||
|
||||
import java.awt.FlowLayout;
|
||||
import java.awt.Frame;
|
||||
import javax.swing.JButton;
|
||||
import javax.swing.JFrame;
|
||||
import javax.swing.JLabel;
|
||||
import javax.swing.JPanel;
|
||||
import javax.swing.SwingUtilities;
|
||||
import com.formdev.flatlaf.FlatLightLaf;
|
||||
import com.formdev.flatlaf.util.SystemInfo;
|
||||
|
||||
public class SwingFrameStateTest
|
||||
{
|
||||
public static void main( String[] args ) {
|
||||
SwingUtilities.invokeLater( () -> {
|
||||
FlatLightLaf.setup();
|
||||
|
||||
if( SystemInfo.isLinux )
|
||||
JFrame.setDefaultLookAndFeelDecorated( true );
|
||||
|
||||
JFrame frame = new JFrame( "SwingFrameStateTest" );
|
||||
|
||||
JButton restoreButton = new JButton( "Restore" );
|
||||
JButton vertButton = new JButton( "Max. Vert." );
|
||||
JButton horizButton = new JButton( "Max. Horiz." );
|
||||
JButton bothButton = new JButton( "Max. Both" );
|
||||
restoreButton.addActionListener( e -> frame.setExtendedState( 0 ) );
|
||||
vertButton.addActionListener( e -> frame.setExtendedState( Frame.MAXIMIZED_VERT ) );
|
||||
horizButton.addActionListener( e -> frame.setExtendedState( Frame.MAXIMIZED_HORIZ ) );
|
||||
bothButton.addActionListener( e -> frame.setExtendedState( Frame.MAXIMIZED_BOTH ) );
|
||||
|
||||
JPanel panel = new JPanel( new FlowLayout() );
|
||||
panel.add( restoreButton );
|
||||
panel.add( vertButton );
|
||||
panel.add( horizButton );
|
||||
panel.add( bothButton );
|
||||
|
||||
JLabel stateInfo = new JLabel();
|
||||
frame.addWindowStateListener( e -> {
|
||||
int state = frame.getExtendedState();
|
||||
stateInfo.setText( " state "
|
||||
+ ((state & Frame.MAXIMIZED_VERT) != 0 ? "VERT " : "")
|
||||
+ ((state & Frame.MAXIMIZED_HORIZ) != 0 ? "HORIZ " : "")
|
||||
);
|
||||
} );
|
||||
panel.add( stateInfo );
|
||||
|
||||
frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
|
||||
frame.getContentPane().add( panel );
|
||||
frame.setSize( 700, 300 );
|
||||
frame.setLocationRelativeTo( null );
|
||||
frame.setVisible( true );
|
||||
} );
|
||||
}
|
||||
}
|
||||
@@ -377,7 +377,9 @@ TabbedPane.underlineColor = #ff0
|
||||
TabbedPane.inactiveUnderlineColor = #f0f
|
||||
TabbedPane.disabledUnderlineColor = #7a7a7a
|
||||
TabbedPane.hoverColor = #eee
|
||||
TabbedPane.hoverForeground = #0ff
|
||||
TabbedPane.focusColor = #ddd
|
||||
TabbedPane.focusForeground = #ff0
|
||||
TabbedPane.tabSeparatorColor = #00f
|
||||
TabbedPane.contentAreaColor = #f00
|
||||
|
||||
@@ -409,6 +411,10 @@ Table.gridColor = #0ff
|
||||
|
||||
TableHeader.background = #44f
|
||||
TableHeader.foreground = #fff
|
||||
TableHeader.hoverBackground = darken($TableHeader.background,10%,derived)
|
||||
TableHeader.hoverForeground = lighten($TableHeader.foreground,10%,derived)
|
||||
TableHeader.pressedBackground = darken($TableHeader.background,20%,derived)
|
||||
TableHeader.pressedForeground = lighten($TableHeader.foreground,20%,derived)
|
||||
TableHeader.separatorColor = #0f0
|
||||
TableHeader.bottomSeparatorColor = #0f0
|
||||
|
||||
|
||||
@@ -41,7 +41,8 @@ public class FlatLafThemeEditor
|
||||
// - "system": use current macOS appearance (light or dark)
|
||||
// - "NSAppearanceNameAqua": use light appearance
|
||||
// - "NSAppearanceNameDarkAqua": use dark appearance
|
||||
// (needs to be set on main thread; setting it on AWT thread does not work)
|
||||
// (must be set on main thread and before AWT/Swing is initialized;
|
||||
// setting it on AWT thread does not work)
|
||||
System.setProperty( "apple.awt.application.appearance", "system" );
|
||||
}
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user