2019-09-24 12:43:56 +08:00
|
|
|
@import 'lightColors.scss';
|
|
|
|
@import "components/Button.scss";
|
|
|
|
@import "components/Divider.scss";
|
|
|
|
@import "components/NimbusServiceLayout.scss";
|
|
|
|
@import "components/Scrollbar.scss";
|
2019-09-25 14:24:53 +08:00
|
|
|
@import "components/BaseSelectMenu.scss";
|
2019-09-27 16:02:20 +08:00
|
|
|
@import "components/BasePicker.scss";
|
|
|
|
@import "components/BaseCancelMark.scss";
|
|
|
|
@import "components/Tag.scss";
|
2019-09-29 08:41:49 +08:00
|
|
|
@import "components/Table.scss";
|
|
|
|
@import "components/AdvanceTable.scss";
|
2019-09-27 22:27:01 +08:00
|
|
|
@import "components/Popover.scss";
|
2019-09-28 13:47:54 +08:00
|
|
|
@import "components/Tooltip.scss";
|
2019-09-28 18:50:56 +08:00
|
|
|
@import "components/Confirm.scss";
|
2019-09-29 16:02:28 +08:00
|
|
|
@import "components/CheckBox.scss";
|
2019-09-29 19:07:16 +08:00
|
|
|
@import "components/Switch.scss";
|
2019-10-08 13:34:34 +08:00
|
|
|
@import "components/Message.scss";
|
2019-10-08 14:14:30 +08:00
|
|
|
@import "components/LoadingBar.scss";
|
2019-10-09 17:38:08 +08:00
|
|
|
@import "components/Badge.scss";
|
2019-10-08 18:01:39 +08:00
|
|
|
@import "components/Dropdown.scss";
|
2019-10-10 18:24:51 +08:00
|
|
|
@import "components/Input.scss";
|
2019-10-12 14:23:40 +08:00
|
|
|
@import "components/Alert.scss";
|
|
|
|
@import "components/Anchor.scss";
|
2019-09-24 12:43:56 +08:00
|
|
|
|
|
|
|
@mixin setup-light-theme () {
|
|
|
|
@include setup-light-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-09-27 16:02:20 +08:00
|
|
|
|
2019-09-24 12:43:56 +08:00
|
|
|
$n-selected-color: $neutral-7 !global;
|
2019-09-27 16:02:20 +08:00
|
|
|
$--n-divider-color: $neutral-7 !global;
|
|
|
|
$--n-border-color: $neutral-6 !global;
|
|
|
|
|
|
|
|
$--n-secondary-text-color: $neutral-3 !global;
|
2019-09-28 13:47:54 +08:00
|
|
|
$--n-text-color: $neutral-2 !global;
|
2019-09-27 16:02:20 +08:00
|
|
|
$--n-disabled-text-color: $neutral-5 !global;
|
2019-09-29 17:54:20 +08:00
|
|
|
$--n-card-color: $neutral-10 !global;
|
|
|
|
$--n-dialog-color: $neutral-10 !global;
|
|
|
|
$--n-background-color: $neutral-10 !global;
|
2019-09-24 12:43:56 +08:00
|
|
|
|
|
|
|
@include setup-light-nimbus-service-layout;
|
|
|
|
@include setup-light-divider;
|
|
|
|
@include setup-light-scrollbar;
|
|
|
|
@include setup-light-button;
|
2019-09-27 16:02:20 +08:00
|
|
|
@include setup-light-base-select-menu;
|
|
|
|
@include setup-light-base-picker;
|
|
|
|
@include setup-light-base-cancel-mark;
|
|
|
|
@include setup-light-tag;
|
2019-09-29 08:41:49 +08:00
|
|
|
@include setup-light-table;
|
|
|
|
@include setup-light-advance-table;
|
2019-09-27 22:27:01 +08:00
|
|
|
@include setup-light-popover;
|
2019-09-28 13:47:54 +08:00
|
|
|
@include setup-light-tooltip;
|
2019-09-28 18:50:56 +08:00
|
|
|
@include setup-light-confirm;
|
2019-09-29 16:02:28 +08:00
|
|
|
@include setup-light-checkbox;
|
2019-09-29 19:07:16 +08:00
|
|
|
@include setup-light-switch;
|
2019-10-08 13:34:34 +08:00
|
|
|
@include setup-light-message;
|
2019-10-08 14:14:30 +08:00
|
|
|
@include setup-light-loading-bar;
|
2019-10-09 17:38:08 +08:00
|
|
|
@include setup-light-badge;
|
2019-10-08 18:01:39 +08:00
|
|
|
@include setup-light-dropdown;
|
2019-10-10 18:24:51 +08:00
|
|
|
@include setup-light-input;
|
2019-10-12 14:23:40 +08:00
|
|
|
@include setup-light-anchor;
|
|
|
|
@include setup-light-alert;
|
2019-09-24 12:43:56 +08:00
|
|
|
}
|