mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
13 lines
544 B
SCSS
13 lines
544 B
SCSS
@mixin setup-light-descriptions {
|
|
$--descriptions-header-background-color: mix-color-with-alpha-color(
|
|
$--n-card-background-color,
|
|
$--n-table-header-overlay-background-color
|
|
) !global;
|
|
$--descriptions-header-text-color: $--n-primary-text-color !global;
|
|
$--descriptions-content-text-color: $--n-secondary-text-color !global;
|
|
$--descriptions-content-background-color: (
|
|
'default': $--n-card-background-color,
|
|
'modal': $--n-modal-background-color
|
|
) !global;
|
|
$--descriptions-border-color: $--n-divider-color !global;
|
|
} |