2019-10-18 17:14:47 +08:00
|
|
|
@import 'darkColors.scss';
|
|
|
|
@import 'components/Button.scss';
|
|
|
|
@import 'components/Divider.scss';
|
|
|
|
@import 'components/Scrollbar.scss';
|
|
|
|
@import 'components/BaseLoading.scss';
|
|
|
|
@import 'components/BaseSelectMenu.scss';
|
|
|
|
@import 'components/BasePicker.scss';
|
2020-02-14 22:42:53 +08:00
|
|
|
@import 'components/BaseSuffix.scss';
|
2019-10-18 17:14:47 +08:00
|
|
|
@import 'components/Tag.scss';
|
|
|
|
@import 'components/Table.scss';
|
2019-09-29 08:41:49 +08:00
|
|
|
@import 'components/AdvanceTable.scss';
|
2020-02-11 18:11:51 +08:00
|
|
|
@import 'components/Popover.scss';
|
|
|
|
@import 'components/Tooltip.scss';
|
|
|
|
@import 'components/Confirm.scss';
|
|
|
|
@import 'components/CheckBox.scss';
|
|
|
|
@import 'components/Switch.scss';
|
|
|
|
@import 'components/Message.scss';
|
|
|
|
@import 'components/LoadingBar.scss';
|
|
|
|
@import 'components/Badge.scss';
|
|
|
|
@import 'components/Dropdown.scss';
|
|
|
|
@import 'components/Input.scss';
|
|
|
|
@import 'components/Alert.scss';
|
|
|
|
@import 'components/Anchor.scss';
|
|
|
|
@import 'components/Pagination.scss';
|
|
|
|
@import 'components/GradientText.scss';
|
|
|
|
@import 'components/DatePicker.scss';
|
|
|
|
@import 'components/TimePicker.scss';
|
|
|
|
@import 'components/Progress.scss';
|
|
|
|
@import 'components/Timeline.scss';
|
|
|
|
@import 'components/BackTop.scss';
|
|
|
|
@import 'components/Notification.scss';
|
|
|
|
@import 'components/Radio.scss';
|
|
|
|
@import 'components/Steps.scss';
|
|
|
|
@import 'components/InputNumber.scss';
|
|
|
|
@import 'components/Slider.scss';
|
|
|
|
@import 'components/Cascader.scss';
|
|
|
|
@import 'components/Tabs.scss';
|
|
|
|
@import 'components/Statistic.scss';
|
|
|
|
@import 'components/Breadcrumb.scss';
|
|
|
|
@import 'components/Modal.scss';
|
|
|
|
@import 'components/Transfer.scss';
|
|
|
|
@import 'components/Menu.scss';
|
|
|
|
@import 'components/Thing.scss';
|
|
|
|
@import 'components/List.scss';
|
|
|
|
@import 'components/Layout.scss';
|
|
|
|
@import 'components/Form.scss';
|
|
|
|
@import 'components/Empty.scss';
|
|
|
|
@import 'components/Drawer.scss';
|
|
|
|
@import 'components/Descriptions.scss';
|
|
|
|
@import 'components/Card.scss';
|
|
|
|
@import 'components/AutoComplete.scss';
|
|
|
|
@import 'components/Affix.scss';
|
|
|
|
@import 'components/Avatar.scss';
|
|
|
|
@import 'components/Collapse.scss';
|
|
|
|
@import 'components/Result.scss';
|
|
|
|
@import 'components/Tree.scss';
|
2020-02-14 15:46:57 +08:00
|
|
|
@import 'components/Typography.scss';
|
2019-09-24 12:43:56 +08:00
|
|
|
|
2019-12-16 19:00:14 +08:00
|
|
|
@mixin setup-dark-theme($in-js-env: false) {
|
2019-09-24 12:43:56 +08:00
|
|
|
@include setup-dark-colors();
|
2019-10-12 14:23:40 +08:00
|
|
|
$--n-primary-color: $--primary-6 !global;
|
|
|
|
$--n-primary-hover-color: $--primary-5 !global;
|
|
|
|
$--n-primary-active-color: $--primary-7 !global;
|
|
|
|
$--n-info-color: $--info-6 !global;
|
|
|
|
$--n-success-color: $--success-6 !global;
|
|
|
|
$--n-warning-color: $--warning-6 !global;
|
|
|
|
$--n-error-color: $--error-6 !global;
|
2019-12-08 20:47:14 +08:00
|
|
|
$--n-close-color: $--text-3 !global;
|
2019-09-29 17:54:20 +08:00
|
|
|
$--n-text-color: $--text-1 !global;
|
2019-12-08 20:47:14 +08:00
|
|
|
$--n-secondary-text-color: $--text-2 !global;
|
|
|
|
$--n-meta-text-color: $--text-3 !global;
|
2019-09-29 17:54:20 +08:00
|
|
|
$--n-popover-color: $--neutral-1 !global;
|
|
|
|
$--n-divider-color: $--neutral-6 !global;
|
|
|
|
$--n-alpha-divider-color: $--overlay-6 !global;
|
|
|
|
$--n-border-color: $--neutral-7 !global;
|
|
|
|
$--n-alpha-border-color: $--overlay-7 !global;
|
|
|
|
$--n-table-header-color: $--neutral-8 !global;
|
|
|
|
$--n-alpha-table-header-color: $--overlay-8 !global;
|
|
|
|
$--n-table-body-color: $--neutral-9 !global;
|
|
|
|
$--n-alpha-table-body-color: $--overlay-9 !global;
|
|
|
|
$--n-card-color: $--neutral-9 !global;
|
2019-10-18 17:14:47 +08:00
|
|
|
$--n-disabled-text-color: rgba(255, 255, 255, 0.3) !global;
|
2019-09-29 17:54:20 +08:00
|
|
|
$--n-dialog-color: $--neutral-3 !global;
|
|
|
|
$--n-background-color: $--neutral-10 !global;
|
2019-12-20 16:59:37 +08:00
|
|
|
$--n-alpha-input-color: rgba(255, 255, 255, .12) !global;
|
2020-02-09 19:21:31 +08:00
|
|
|
$--n-action-panel-color: $--neutral-8 !global;
|
|
|
|
$--n-alpha-action-panel-color: $--overlay-8 !global;
|
2019-12-16 19:00:14 +08:00
|
|
|
@if ($in-js-env != true) {
|
|
|
|
@include setup-dark-divider;
|
|
|
|
@include setup-dark-scrollbar;
|
|
|
|
@include setup-dark-base-loading;
|
|
|
|
@include setup-dark-button;
|
|
|
|
@include setup-dark-base-select-menu;
|
|
|
|
@include setup-dark-base-picker;
|
2020-02-14 22:42:53 +08:00
|
|
|
@include setup-dark-base-suffix;
|
2019-12-16 19:00:14 +08:00
|
|
|
@include setup-dark-tag;
|
|
|
|
@include setup-dark-table;
|
2019-12-31 21:01:24 +08:00
|
|
|
@include setup-dark-data-table;
|
2019-12-16 19:00:14 +08:00
|
|
|
@include setup-dark-popover;
|
|
|
|
@include setup-dark-tooltip;
|
|
|
|
@include setup-dark-confirm;
|
|
|
|
@include setup-dark-checkbox;
|
|
|
|
@include setup-dark-switch;
|
|
|
|
@include setup-dark-message;
|
|
|
|
@include setup-dark-loading-bar;
|
|
|
|
@include setup-dark-badge;
|
|
|
|
@include setup-dark-dropdown;
|
|
|
|
@include setup-dark-input;
|
|
|
|
@include setup-dark-anchor;
|
|
|
|
@include setup-dark-alert;
|
|
|
|
@include setup-dark-pagination;
|
|
|
|
@include setup-dark-gradient-text;
|
|
|
|
@include setup-dark-date-picker;
|
|
|
|
@include setup-dark-time-picker;
|
|
|
|
@include setup-dark-progress;
|
|
|
|
@include setup-dark-timeline;
|
|
|
|
@include setup-dark-back-top;
|
|
|
|
@include setup-dark-notification;
|
|
|
|
@include setup-dark-radio;
|
|
|
|
@include setup-dark-step;
|
|
|
|
@include setup-dark-input-number;
|
|
|
|
@include setup-dark-slider;
|
|
|
|
@include setup-dark-cascader;
|
|
|
|
@include setup-dark-tabs;
|
|
|
|
@include setup-dark-statistic;
|
|
|
|
@include setup-dark-breadcrumb;
|
|
|
|
@include setup-dark-modal;
|
|
|
|
@include setup-dark-transfer;
|
|
|
|
@include setup-dark-menu;
|
|
|
|
@include setup-dark-thing;
|
|
|
|
@include setup-dark-list;
|
|
|
|
@include setup-dark-layout;
|
|
|
|
@include setup-dark-form;
|
|
|
|
@include setup-dark-empty;
|
|
|
|
@include setup-dark-drawer;
|
|
|
|
@include setup-dark-descriptions;
|
|
|
|
@include setup-dark-card;
|
|
|
|
@include setup-dark-auto-complete;
|
|
|
|
@include setup-dark-affix;
|
|
|
|
@include setup-dark-avatar;
|
|
|
|
@include setup-dark-collapse;
|
|
|
|
@include setup-dark-result;
|
2019-12-24 21:50:28 +08:00
|
|
|
@include setup-dark-tree;
|
2020-02-14 15:46:57 +08:00
|
|
|
@include setup-dark-typography;
|
2019-12-16 19:00:14 +08:00
|
|
|
}
|
2019-10-18 17:14:47 +08:00
|
|
|
}
|