You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

58 lines
2.3 KiB

@use '../core/tokens/m3-utils';
@use 'sass:map';
@use 'sass:list';
@use '../core/theming/theming';
@use '../core/tokens/m3';
/// Generates the tokens for MDC tab
/// @param {String} $color-variant The color variant to use for the component
@function get-tokens($theme: m3.$sys-theme, $color-variant: null) {
$system: m3-utils.get-system($theme);
@if $color-variant {
$system: m3-utils.replace-colors-with-variant($system, primary, $color-variant);
}
@return (
base: (
tab-active-indicator-height: 2px,
tab-active-indicator-shape: 0,
tab-divider-height: 1px,
),
color: (
tab-active-focus-indicator-color: map.get($system, primary),
tab-active-focus-label-text-color: map.get($system, on-surface),
tab-active-hover-indicator-color: map.get($system, primary),
tab-active-hover-label-text-color: map.get($system, on-surface),
tab-active-indicator-color: map.get($system, primary),
tab-active-label-text-color: map.get($system, on-surface),
tab-active-ripple-color: map.get($system, on-surface),
tab-divider-color: map.get($system, surface-variant),
tab-inactive-focus-label-text-color: map.get($system, on-surface),
tab-inactive-hover-label-text-color: map.get($system, on-surface),
tab-inactive-label-text-color: map.get($system, on-surface),
tab-inactive-ripple-color: map.get($system, on-surface),
tab-pagination-icon-color: map.get($system, on-surface),
tab-disabled-ripple-color: map.get($system, on-surface-variant),
tab-background-color: null,
tab-foreground-color: null,
),
typography: (
tab-label-text-font: map.get($system, title-small-font),
tab-label-text-line-height: map.get($system, title-small-line-height),
tab-label-text-size: map.get($system, title-small-size),
tab-label-text-tracking: map.get($system, title-small-tracking),
tab-label-text-weight: map.get($system, title-small-weight),
),
density: get-density-tokens(map.get($system, density-scale)),
);
}
// Tokens that can be configured through Angular Material's density theming API.
@function get-density-tokens($scale) {
$scale: theming.clamp-density($scale, -4);
$index: ($scale * -1) + 1;
@return (
tab-container-height: list.nth((48px, 44px, 40px, 36px, 32px), $index),
);
}