mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
13 lines
486 B
SCSS
13 lines
486 B
SCSS
|
@mixin setup-dark-timeline {
|
||
|
$--timeline-item-circle-border-color: (
|
||
|
'default': $--n-primary-color,
|
||
|
'info': $--info-6,
|
||
|
'error': $--error-6,
|
||
|
'success': $--success-6,
|
||
|
'warning': $--warning-6
|
||
|
) !global;
|
||
|
$--timeline-item-title-color: $--n-text-color !global;
|
||
|
$--timeline-item-content-color: $--n-secondary-text-color !global;
|
||
|
$--timeline-item-meta-color: rgba(255, 255, 255, .45) !global;
|
||
|
$--timeline-line-background-color: rgba(255, 255, 255, .2) !global;
|
||
|
}
|