Java Code Examples for com.intellij.ui.JBColor#DARK_GRAY
The following examples show how to use
com.intellij.ui.JBColor#DARK_GRAY .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TestVisualization.java From jetbrains-plugin-graph-database-support with Apache License 2.0 | 4 votes |
private static LookAndFeelService mockLook() { return new LookAndFeelService() { @Override public Color getBackgroundColor() { return JBColor.BLACK; } @Override public Color getBorderColor() { return JBColor.RED; } @Override public Color getNodeStrokeColor() { return JBColor.GREEN; } @Override public Color getNodeStrokeHoverColor() { return JBColor.ORANGE; } @Override public Color getNodeFillColor() { return JBColor.CYAN; } @Override public Color getNodeFillHoverColor() { return JBColor.DARK_GRAY; } @Override public Color getEdgeStrokeColor() { return JBColor.LIGHT_GRAY; } @Override public Color getEdgeFillColor() { return JBColor.MAGENTA; } @Override public Color getTextColor() { return JBColor.WHITE; } @Override public boolean isGraphViewZoomInverted() { return true; } }; }
Example 2
Source File: UnknownContentFolderTypeProvider.java From consulo with Apache License 2.0 | 4 votes |
@Nonnull @Override public Color getGroupColor() { return JBColor.DARK_GRAY; }
Example 3
Source File: MultiScopeSeverityIcon.java From consulo with Apache License 2.0 | 4 votes |
private static JBColor getMixedSeverityColor() { return JBColor.DARK_GRAY; }