naive-ui/styles/themes/light/components/Descriptions.scss
2020-03-05 22:31:20 +08:00

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;
}