devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
34 lines (33 loc) • 2.53 kB
JavaScript
import { ColorUtils } from '@devexpress/utils/lib/utils/color';
export class DXSystemColors {
static { this.control = ColorUtils.fromArgbNumber(255, 240, 240, 240); }
static { this.controlDark = ColorUtils.fromArgbNumber(255, 160, 160, 160); }
static { this.window = ColorUtils.fromArgbNumber(255, 255, 255, 255); }
static { this.activeBorder = ColorUtils.fromArgbNumber(255, 180, 180, 180); }
static { this.activeCaption = ColorUtils.fromArgbNumber(255, 153, 180, 209); }
static { this.activeCaptionText = ColorUtils.fromArgbNumber(255, 0, 0, 0); }
static { this.appWorkspace = ColorUtils.fromArgbNumber(255, 171, 171, 171); }
static { this.controlDarkDark = ColorUtils.fromArgbNumber(255, 105, 105, 105); }
static { this.controlLight = ColorUtils.fromArgbNumber(255, 227, 227, 227); }
static { this.controlLightLight = ColorUtils.fromArgbNumber(255, 255, 255, 255); }
static { this.controlText = ColorUtils.fromArgbNumber(255, 0, 0, 0); }
static { this.desktop = ColorUtils.fromArgbNumber(255, 0, 0, 0); }
static { this.grayText = ColorUtils.fromArgbNumber(255, 109, 109, 109); }
static { this.highlight = ColorUtils.fromArgbNumber(255, 0, 120, 215); }
static { this.highlightText = ColorUtils.fromArgbNumber(255, 255, 255, 255); }
static { this.hotTrack = ColorUtils.fromArgbNumber(255, 0, 102, 204); }
static { this.inactiveBorder = ColorUtils.fromArgbNumber(255, 244, 247, 252); }
static { this.inactiveCaption = ColorUtils.fromArgbNumber(255, 191, 205, 219); }
static { this.inactiveCaptionText = ColorUtils.fromArgbNumber(255, 0, 0, 0); }
static { this.info = ColorUtils.fromArgbNumber(255, 255, 255, 225); }
static { this.infoText = ColorUtils.fromArgbNumber(255, 0, 0, 0); }
static { this.menu = ColorUtils.fromArgbNumber(255, 240, 240, 240); }
static { this.menuText = ColorUtils.fromArgbNumber(255, 0, 0, 0); }
static { this.scrollBar = ColorUtils.fromArgbNumber(255, 200, 200, 200); }
static { this.windowFrame = ColorUtils.fromArgbNumber(255, 100, 100, 100); }
static { this.windowText = ColorUtils.fromArgbNumber(255, 0, 0, 0); }
static { this.gradientActiveCaption = ColorUtils.fromArgbNumber(255, 185, 209, 234); }
static { this.gradientInactiveCaption = ColorUtils.fromArgbNumber(255, 215, 228, 242); }
static { this.menuBar = ColorUtils.fromArgbNumber(255, 240, 240, 240); }
static { this.menuHighlight = ColorUtils.fromArgbNumber(255, 51, 153, 255); }
}