naive-ui/styles/themes/light/components/Alert.scss

38 lines
1.3 KiB
SCSS
Raw Normal View History

2019-10-12 14:23:40 +08:00
@mixin setup-light-alert {
$--alert-border-color: (
2019-12-09 19:16:03 +08:00
'default': $--n-border-color,
'success': mix($--success-6, rgb(255, 255, 255), 35%),
'info': mix($--info-6, rgb(255, 255, 255), 35%),
'warning': mix($--warning-6, rgb(255, 255, 255), 35%),
'error': mix($--error-6, rgb(255, 255, 255), 35%),
2019-10-12 14:23:40 +08:00
) !global;
$--alert-background-color: (
2019-12-09 19:16:03 +08:00
'default': $--overlay-8,
'success': mix($--success-6, rgb(255, 255, 255), 20%),
'info': mix($--info-6, rgb(255, 255, 255), 20%),
'warning': mix($--warning-6, rgb(255, 255, 255), 20%),
'error': mix($--error-6, rgb(255, 255, 255), 20%)
2019-10-12 14:23:40 +08:00
) !global;
$--alert-title-text-color: (
'default': $--n-text-color,
'success': $--n-text-color,
'info': $--n-text-color,
'warning': $--n-text-color,
'error': $--n-text-color
) !global;
$--alert-icon-color: (
2019-12-09 19:16:03 +08:00
'default': $--n-secondary-text-color,
2019-10-12 14:23:40 +08:00
'success': $--success-6,
'info': $--info-6,
'warning': $--warning-6,
'error': $--error-6
) !global;
$--alert-content-text-color: (
'default': $--n-secondary-text-color,
'success': $--n-secondary-text-color,
'info': $--n-secondary-text-color,
'warning': $--n-secondary-text-color,
'error': $--n-secondary-text-color,
) !global;
2019-12-09 19:16:03 +08:00
$--alert-color-fill: $--n-close-color !global;
2019-10-12 14:23:40 +08:00
}