mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
15 lines
507 B
SCSS
15 lines
507 B
SCSS
@mixin setup-dark-progress {
|
|
$--progress-rail-color: rgba(255, 255, 255, .1) !global;
|
|
$--progress-fill-color: (
|
|
'default': $--info-6,
|
|
'info': $--info-6,
|
|
'error': $--error-6,
|
|
'warning': $--warning-6,
|
|
'success': $--success-6
|
|
) !global;
|
|
$--progress-indicator-color: (
|
|
'outside': $--n-secondary-text-color,
|
|
'inside': black
|
|
) !global;
|
|
$--progress-line-processing-background-image: linear-gradient(90deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, .5) 100%) !global;
|
|
} |