naive-ui/styles/themes/dark/components/Confirm.scss
2020-02-19 21:08:31 +08:00

12 lines
442 B
SCSS

@mixin setup-dark-confirm {
$--confirm-title-text-color: $--n-primary-text-color !global;
$--confirm-text-color: $--n-secondary-text-color !global;
$--confirm-background-color: $--n-modal-background-color !global;
$--confirm-close-color: $--n-close-color !global;
$--confirm-icon-color: (
'info': $--n-info-color,
'success': $--n-success-color,
'warning': $--n-warning-color,
'error': $--n-error-color
) !global;
}