dm-web-react
Version:
The DM web client with React.
183 lines • 6.44 kB
JavaScript
import { revoke, checkbox, input_condition, arrowUpCircle, arrowRightCircle, arrowDownCircle, arrowLeftCircle, chart, dealType_trd, dealType_gvn, dealType_tkn, } from "./imageBase64Data";
var icons = {
icon_checkbox: {
default_color: "#909299",
active_color: "#33A7FF",
},
icon_search: {
default_color: "#909299",
active_color: "#33A7FF",
},
};
var imgs = {
img_revoke: {
default: revoke.black,
},
img_checkbox: {
default_unchecked: checkbox.black_unchecked_default,
default_indeterminate: checkbox.black_indeterminate_default,
default_checked: checkbox.black_checked_default,
disabled_indeterminate: checkbox.black_indeterminate_disabled,
},
img_input_condition: {
default: input_condition.black,
disabled: input_condition.black_disabled,
},
img_arrowUpCircle: {
default: arrowUpCircle.black,
},
img_arrowRightCircle: {
default: arrowRightCircle.black,
},
img_arrowDownCircle: {
default: arrowDownCircle.black,
},
img_arrowLeftCircle: {
default: arrowLeftCircle.black,
},
img_chart: {
default: chart.black,
},
img_dealType_trd: {
default: dealType_trd.black,
},
img_dealType_gvn: {
default: dealType_gvn.black,
},
img_dealType_tkn: {
default: dealType_tkn.black,
},
};
/**
* 主题对象结构描述:
* {
* 模块名: {
* 状态_[子模块名]_css属性: css值,
* ...,
* }
* }
*/
var blackTheme = {
themeName: "black",
main: {
default_background: "#212329",
},
panel: {
default_background: "#2D2F38",
default_borderColor: "#565B6B",
default_title_color: "#fff",
},
select: {
default_color: "#B6B9C2",
default_background: "#1E2129",
default_borderColor: "#1E2129",
default_placeholder_color: "#73757a",
default_indicator_color: "#999",
default_menu_background: "#3D414D",
default_menu_borderColor: "#3D414D",
default_menu_boxShadowColor: "rgba(0,0,0,0.30)",
default_option_color: "#D8DBE6",
hover_background: "rgba(51,167,255,0.20)",
hover_borderColor: "#33A7FF",
hover_indicator_color: "#fff",
hover_option_background: "#494E5C",
active_background: "rgba(51,167,255,0.20)",
active_borderColor: "#33A7FF",
active_indicator_color: "#fff",
},
button: {
default_primary_color: "#fff",
default_primary_background: "#2E96E6",
default_primary_borderColor: "#2E96E6",
default_secondary_color: "#33A7FF",
default_secondary_background: "rgba(51,167,255,0.20)",
default_secondary_borderColor: "rgba(51,167,255,0.20)",
default_text_color: "#33A7FF",
default_text_background: "transparent",
default_text_borderColor: "transparent",
hover_primary_color: "#fff",
hover_primary_background: "#4CB2FF",
hover_primary_borderColor: "#2E96E6",
hover_secondary_color: "#33A7FF",
hover_secondary_background: "rgba(51,167,255,0.32)",
hover_secondary_borderColor: "rgba(51,167,255,0.32)",
hover_text_color: "#33A7FF",
hover_text_background: "rgba(51,167,255,0.32)",
hover_text_borderColor: "rgba(51,167,255,0.32)",
disabled_secondary_color: "#65666B",
disabled_secondary_background: "transparent",
disabled_secondary_borderColor: "#565B6B",
},
input: {
default_color: "#D8DBE6",
default_background: "#212329",
default_borderColor: "#212329",
default_label_color: "#B6B9C2",
default_condition_color: "#B6B9C2",
default_condition_background: "#565B6B",
default_unit_color: "#B6B9C2",
hover_color: "#D8DBE6",
hover_background: "#212329",
hover_borderColor: "#2E96E6",
active_color: "#D8DBE6",
active_background: "#212329",
active_borderColor: "#2E96E6",
disabled_color: "#65666B",
disabled_background: "#3D414D",
disabled_borderColor: "#3D414D",
disabled_label_color: "#65666B",
disabled_condition_color: "#65666B",
disabled_condition_background: "#3D414D",
},
checkbox: {
default_color: "#A3A5AD",
hover_color: "#D8DBE6",
},
checkbox_button: {
default_color: "#A3A5AD",
default_background: "transparent",
default_borderColor: "transparent",
hover_color: "#A3A5AD",
hover_background: "#3D414D",
hover_borderColor: "#3D414D",
active_color: "#D8DBE6",
active_background: "rgba(51,167,255,0.20)",
active_borderColor: "#33A7FF",
disabled_color: "#65666B",
disabled_background: "transparent",
disabled_borderColor: "transparent",
},
checkbox_popover: {
default_label_color: "#B6B9C2",
default_label_background: "#1E2129",
default_label_borderColor: "#1E2129",
default_tip_color: "#3d414d",
default_body_background: "#3D414D",
default_body_borderColor: "#3d414d",
default_body_boxShadowColor: "rgba(0,0,0,0.30)",
indeterminate_label_color: "#D8DBE6",
indeterminate_label_background: "transparent",
indeterminate_label_borderColor: "#1F6499",
active_label_color: "#D8DBE6",
active_label_background: "rgba(51,167,255,0.20)",
active_label_borderColor: "#33A7FF",
},
table: {
default_color: "#B6B9C2",
default_background: "#2D2F38",
default_headerRow_color: "#909299",
default_headerRow_background: "#3D414D",
default_headerRow_separate_borderColor: "#909299",
default_bodyRow_background: "#2D2F38",
default_bodyRow_boxShadowColor: "#494E5C",
hover_bodyRow_background: "#3C3F42",
active_bodyRow_background: "#1F6499",
highlight_bodyRow_background: "#294B66",
flicker1_bodyRow_background: "rgba(41,75,102,0.60)",
flicker2_bodyRow_background: "#294B66",
},
icons: icons,
imgs: imgs,
};
export default blackTheme;
//# sourceMappingURL=black.js.map