naive-ui/styles/themes/dark/components/Dropdown.scss
2020-01-15 13:00:43 +08:00

10 lines
306 B
SCSS

@mixin setup-dark-dropdown {
$--dropdown-item-suffix-fill: $--n-secondary-text-color !global;
$--dropdown-item-text-color: (
'hover': $--primary-6,
'selected': $--primary-6
) !global;
$--dropdown-item-background-color: (
'selected': change-color($--primary-6, $alpha: .15)
) !global
}