UNPKG

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.26 kB
import { ColorUtils } from '@devexpress/utils/lib/utils/color'; export class DXSystemColors { static control = ColorUtils.fromArgbNumber(255, 240, 240, 240); static controlDark = ColorUtils.fromArgbNumber(255, 160, 160, 160); static window = ColorUtils.fromArgbNumber(255, 255, 255, 255); static activeBorder = ColorUtils.fromArgbNumber(255, 180, 180, 180); static activeCaption = ColorUtils.fromArgbNumber(255, 153, 180, 209); static activeCaptionText = ColorUtils.fromArgbNumber(255, 0, 0, 0); static appWorkspace = ColorUtils.fromArgbNumber(255, 171, 171, 171); static controlDarkDark = ColorUtils.fromArgbNumber(255, 105, 105, 105); static controlLight = ColorUtils.fromArgbNumber(255, 227, 227, 227); static controlLightLight = ColorUtils.fromArgbNumber(255, 255, 255, 255); static controlText = ColorUtils.fromArgbNumber(255, 0, 0, 0); static desktop = ColorUtils.fromArgbNumber(255, 0, 0, 0); static grayText = ColorUtils.fromArgbNumber(255, 109, 109, 109); static highlight = ColorUtils.fromArgbNumber(255, 0, 120, 215); static highlightText = ColorUtils.fromArgbNumber(255, 255, 255, 255); static hotTrack = ColorUtils.fromArgbNumber(255, 0, 102, 204); static inactiveBorder = ColorUtils.fromArgbNumber(255, 244, 247, 252); static inactiveCaption = ColorUtils.fromArgbNumber(255, 191, 205, 219); static inactiveCaptionText = ColorUtils.fromArgbNumber(255, 0, 0, 0); static info = ColorUtils.fromArgbNumber(255, 255, 255, 225); static infoText = ColorUtils.fromArgbNumber(255, 0, 0, 0); static menu = ColorUtils.fromArgbNumber(255, 240, 240, 240); static menuText = ColorUtils.fromArgbNumber(255, 0, 0, 0); static scrollBar = ColorUtils.fromArgbNumber(255, 200, 200, 200); static windowFrame = ColorUtils.fromArgbNumber(255, 100, 100, 100); static windowText = ColorUtils.fromArgbNumber(255, 0, 0, 0); static gradientActiveCaption = ColorUtils.fromArgbNumber(255, 185, 209, 234); static gradientInactiveCaption = ColorUtils.fromArgbNumber(255, 215, 228, 242); static menuBar = ColorUtils.fromArgbNumber(255, 240, 240, 240); static menuHighlight = ColorUtils.fromArgbNumber(255, 51, 153, 255); }