当前位置: 首页>>代码示例>>Java>>正文


Java ColorUtil.darker方法代码示例

本文整理汇总了Java中com.intellij.ui.ColorUtil.darker方法的典型用法代码示例。如果您正苦于以下问题:Java ColorUtil.darker方法的具体用法?Java ColorUtil.darker怎么用?Java ColorUtil.darker使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.intellij.ui.ColorUtil的用法示例。


在下文中一共展示了ColorUtil.darker方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: VcsLogColorManagerImpl

import com.intellij.ui.ColorUtil; //导入方法依赖的package包/类
public VcsLogColorManagerImpl(@Nonnull Collection<VirtualFile> roots) {
  myRoots = new ArrayList<>(roots);
  Collections.sort(myRoots, Comparator.comparing(VirtualFile::getName));
  myRoots2Colors = ContainerUtil.newHashMap();
  int i = 0;
  for (VirtualFile root : myRoots) {
    Color color;
    if (i >= ROOT_COLORS.length) {
      double balance = ((double)(i / ROOT_COLORS.length)) / (roots.size() / ROOT_COLORS.length);
      Color mix = ColorUtil.mix(ROOT_COLORS[i % ROOT_COLORS.length], ROOT_COLORS[(i + 1) % ROOT_COLORS.length], balance);
      int tones = (int)(Math.abs(balance - 0.5) * 2 * (roots.size() / ROOT_COLORS.length) + 1);
      color = new JBColor(ColorUtil.darker(mix, tones), ColorUtil.brighter(mix, 2 * tones));
    }
    else {
      color = ROOT_COLORS[i];
    }
    i++;
    myRoots2Colors.put(root, color);
  }
}
 
开发者ID:consulo,项目名称:consulo,代码行数:21,代码来源:VcsLogColorManagerImpl.java

示例2: getIndicatorColor

import com.intellij.ui.ColorUtil; //导入方法依赖的package包/类
@NotNull
public static JBColor getIndicatorColor(@NotNull final Color baseRootColor) {
  if (Registry.is("vcs.log.square.labels")) return getBackgroundColor(baseRootColor);
  return new JBColor(new NotNullProducer<Color>() {
    @NotNull
    @Override
    public Color produce() {
      if (UIUtil.isUnderDarcula()) return baseRootColor;
      return ColorUtil.darker(ColorUtil.softer(baseRootColor), 2);
    }
  });
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:13,代码来源:VcsLogColorManagerImpl.java

示例3: buttonSelectColor2

import com.intellij.ui.ColorUtil; //导入方法依赖的package包/类
@NotNull
private Color buttonSelectColor2() {
  final Color color = MTUiUtils.getColor(UIManager.getColor("Button.mt.selection.color1"),
      ObjectUtils.notNull(UIManager.getColor("Button.darcula.selection.color1"), new ColorUIResource(0x233143)),
      ObjectUtils.notNull(UIManager.getColor("Button.darcula.selection.color1"), new ColorUIResource(0x4074c9)));
  return ColorUtil.darker(color, 2);
}
 
开发者ID:ChrisRM,项目名称:material-theme-jetbrains,代码行数:8,代码来源:MTButtonUI.java

示例4: getLabelColor

import com.intellij.ui.ColorUtil; //导入方法依赖的package包/类
@Nonnull
public static Color getLabelColor(@Nonnull Color color) {
  if (UIUtil.isUnderDarcula()) {
    color = ColorUtil.darker(color, 6);
  }
  else {
    color = ColorUtil.brighter(color, 6);
  }
  return ColorUtil.desaturate(color, 3);
}
 
开发者ID:consulo,项目名称:consulo,代码行数:11,代码来源:RectangleReferencePainter.java


注:本文中的com.intellij.ui.ColorUtil.darker方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。