UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

419 lines (417 loc) • 10.6 kB
/** * DevExtreme (viz/core/themes/material.js) * Version: 18.2.18 * Build date: Tue Oct 18 2022 * * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; var themeModule = require("../../themes"), registerTheme = themeModule.registerTheme, FONT_FAMILY = "'Roboto', 'RobotoFallback', 'Helvetica', 'Arial', sans-serif", LIGHT_TITLE_COLOR = "rgba(0,0,0,0.87)", LIGHT_LABEL_COLOR = "rgba(0,0,0,0.54)", DARK_TITLE_COLOR = "rgba(255,255,255,0.87)", DARK_LABEL_COLOR = "rgba(255,255,255,0.54)", DARK_BACKGROUND_COLOR = "#363640", WHITE = "#ffffff", BLACK = "#000000", RANGE_COLOR = "#b5b5b5", AREA_LAYER_COLOR = "#686868", LINE_COLOR = "#c7c7c7", TARGET_COLOR = "#8e8e8e", POSITIVE_COLOR = "#b8b8b8", LABEL_BORDER_COLOR = "#494949", BREAK_STYLE_COLOR = "#818181"; registerTheme({ name: "material", defaultPalette: "Material", font: { family: FONT_FAMILY }, title: { margin: { top: 20, bottom: 20, left: 0, right: 0 }, font: { size: 20, family: FONT_FAMILY, weight: 500 }, horizontalAlignment: "left", subtitle: { font: { size: 14 }, horizontalAlignment: "left" } }, tooltip: { shadow: { opacity: 0 }, border: { visible: false }, paddingLeftRight: 8, paddingTopBottom: 6, arrowLength: 0, location: "edge", color: "#616161", font: { color: "#fff" } }, chart: { commonAxisSettings: { label: { font: { size: 11 } } } }, pie: { title: { horizontalAlignment: "center", subtitle: { horizontalAlignment: "center" } } }, polar: { title: { horizontalAlignment: "center", subtitle: { horizontalAlignment: "center" } } }, funnel: { title: { horizontalAlignment: "center", subtitle: { horizontalAlignment: "center" } } }, gauge: { title: { horizontalAlignment: "center", subtitle: { horizontalAlignment: "center" } } }, barGauge: { title: { horizontalAlignment: "center", subtitle: { horizontalAlignment: "center" } } }, rangeSelector: { sliderHandle: { opacity: .5 } }, treeMap: { group: { label: { font: { weight: 500 } } } } }, "generic.light"); registerTheme({ name: "material.light", axisColor: "#e0e0e0", axisLabelColor: LIGHT_LABEL_COLOR, primaryTitleColor: LIGHT_TITLE_COLOR, legend: { font: { color: LIGHT_LABEL_COLOR } }, chart: { scrollBar: { color: "#bfbfbf", opacity: .7 } }, gauge: { rangeContainer: { backgroundColor: "rgba(0,0,0,0.2)" } }, barGauge: { backgroundColor: "#efefef" } }, "material"); registerTheme({ name: "material.dark", axisColor: "#515159", backgroundColor: DARK_BACKGROUND_COLOR, axisLabelColor: DARK_LABEL_COLOR, font: { color: DARK_LABEL_COLOR }, primaryTitleColor: DARK_TITLE_COLOR, secondaryTitleColor: DARK_TITLE_COLOR, tooltip: { color: "#000" }, "export": { backgroundColor: DARK_BACKGROUND_COLOR, font: { color: "#dbdbdb" }, button: { "default": { color: "#dedede", borderColor: "#4d4d4d", backgroundColor: DARK_BACKGROUND_COLOR }, hover: { color: "#dedede", borderColor: "#6c6c6c", backgroundColor: "#3f3f4b" }, focus: { color: "#dedede", borderColor: "#8d8d8d", backgroundColor: "#494956" }, active: { color: "#dedede", borderColor: "#8d8d8d", backgroundColor: "#494956" } }, shadowColor: "#292929" }, "chart:common": { commonSeriesSettings: { label: { border: { color: LABEL_BORDER_COLOR } }, valueErrorBar: { color: WHITE } } }, "chart:common:axis": { constantLineStyle: { color: WHITE } }, chart: { commonPaneSettings: { border: { color: LABEL_BORDER_COLOR } }, commonAxisSettings: { breakStyle: { color: BREAK_STYLE_COLOR } }, zoomAndPan: { dragBoxStyle: { color: WHITE } } }, gauge: { rangeContainer: { backgroundColor: RANGE_COLOR }, valueIndicators: { _default: { color: RANGE_COLOR }, rangebar: { color: "#84788b" }, twocolorneedle: { secondColor: "#ba544d" }, trianglemarker: { color: "#b7918f" }, textcloud: { color: "#ba544d" } } }, barGauge: { backgroundColor: "#3c3c3c" }, rangeSelector: { scale: { tick: { color: WHITE, opacity: .32 }, minorTick: { color: WHITE, opacity: .1 }, breakStyle: { color: BREAK_STYLE_COLOR } }, selectedRangeColor: RANGE_COLOR, sliderMarker: { color: RANGE_COLOR, font: { color: DARK_BACKGROUND_COLOR } }, sliderHandle: { color: WHITE, opacity: .2 }, shutter: { color: WHITE, opacity: .1 } }, map: { background: { borderColor: "#3f3f3f" }, layer: { label: { stroke: BLACK, font: { color: WHITE } } }, "layer:area": { borderColor: DARK_BACKGROUND_COLOR, color: AREA_LAYER_COLOR, hoveredBorderColor: WHITE, selectedBorderColor: WHITE }, "layer:line": { color: "#c77244", hoveredColor: "#ff5d04", selectedColor: "#ff784f" }, "layer:marker:bubble": { hoveredBorderColor: WHITE, selectedBorderColor: WHITE }, "layer:marker:pie": { hoveredBorderColor: WHITE, selectedBorderColor: WHITE }, legend: { border: { color: "#3f3f3f" }, font: { color: WHITE } }, controlBar: { borderColor: LINE_COLOR, color: DARK_BACKGROUND_COLOR } }, treeMap: { group: { color: "#4c4c4c", label: { font: { color: "#a3a3a3" } } } }, sparkline: { lineColor: LINE_COLOR, firstLastColor: LINE_COLOR, barPositiveColor: POSITIVE_COLOR, barNegativeColor: TARGET_COLOR, winColor: POSITIVE_COLOR, lossColor: TARGET_COLOR, pointColor: DARK_BACKGROUND_COLOR }, bullet: { targetColor: TARGET_COLOR }, funnel: { item: { border: { color: DARK_BACKGROUND_COLOR } } }, sankey: { label: { font: { color: WHITE } } } }, "material"); function registerMaterialColorScheme(accentName, themeName, accentColor) { registerTheme({ name: "material." + accentName + "." + themeName, rangeSelector: { selectedRangeColor: accentColor, sliderMarker: { color: accentColor }, sliderHandle: { color: accentColor } }, map: { "layer:marker:dot": { color: accentColor }, "layer:marker:bubble": { color: accentColor }, legend: { markerColor: accentColor } }, bullet: { color: accentColor }, gauge: { valueIndicators: { rangebar: { color: accentColor }, textcloud: { color: accentColor } } } }, "material." + themeName) } registerMaterialColorScheme("blue", "light", "#03a9f4"); registerMaterialColorScheme("lime", "light", "#cddc39"); registerMaterialColorScheme("orange", "light", "#ff5722"); registerMaterialColorScheme("purple", "light", "#9c27b0"); registerMaterialColorScheme("teal", "light", "#009688"); registerMaterialColorScheme("blue", "dark", "#03a9f4"); registerMaterialColorScheme("lime", "dark", "#cddc39"); registerMaterialColorScheme("orange", "dark", "#ff5722"); registerMaterialColorScheme("purple", "dark", "#9c27b0"); registerMaterialColorScheme("teal", "dark", "#009688");