Class TintColorScheme
- java.lang.Object
-
- org.pushingpixels.radiance.theming.api.colorscheme.BaseColorScheme
-
- org.pushingpixels.radiance.theming.internal.colorscheme.ShiftColorScheme
-
- org.pushingpixels.radiance.theming.internal.colorscheme.TintColorScheme
-
- All Implemented Interfaces:
RadianceColorScheme
,SchemeBaseColors
,SchemeDerivedColors
,RadianceTrait
public class TintColorScheme extends ShiftColorScheme
Tinted color scheme. A tinted color scheme is a color scheme that is shifted towards white color.- See Also:
ShiftColorScheme
-
-
Field Summary
-
Fields inherited from class org.pushingpixels.radiance.theming.api.colorscheme.BaseColorScheme
displayName, isDark
-
-
Constructor Summary
Constructors Constructor Description TintColorScheme(RadianceColorScheme origColorScheme, double tintFactor)
Creates a new tinted color scheme.
-
Method Summary
-
Methods inherited from class org.pushingpixels.radiance.theming.internal.colorscheme.ShiftColorScheme
getDarkColor, getExtraLightColor, getForegroundColor, getLightColor, getMidColor, getOrigScheme, getShiftFactor, getUltraDarkColor, getUltraLightColor
-
Methods inherited from class org.pushingpixels.radiance.theming.api.colorscheme.BaseColorScheme
blendWith, getAccentedBackgroundFillColor, getBackgroundFillColor, getDisplayName, getEchoColor, getFocusRingColor, getLineColor, getMarkColor, getSelectionBackgroundColor, getSelectionForegroundColor, getSeparatorPrimaryColor, getSeparatorSecondaryColor, getTextBackgroundFillColor, hueShift, invert, isDark, named, negate, saturate, shade, shift, shiftBackground, tint, tone, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.pushingpixels.radiance.theming.api.colorscheme.RadianceColorScheme
getColorFilter
-
Methods inherited from interface org.pushingpixels.radiance.theming.api.colorscheme.SchemeBaseColors
toImage
-
-
-
-
Constructor Detail
-
TintColorScheme
public TintColorScheme(RadianceColorScheme origColorScheme, double tintFactor)
Creates a new tinted color scheme.- Parameters:
origColorScheme
- The original color scheme.tintFactor
- The tint factor. Should be in 0.0-1.0 range.
-
-