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.
 
 
 
 
 

19 lines
433 B

@use '../core/style/elevation';
@use '../core/tokens/m2-utils';
@use 'sass:map';
@function get-tokens($theme) {
$system: m2-utils.get-system($theme);
@return (
base: (
timepicker-container-shape: 4px,
timepicker-container-elevation-shadow: elevation.get-box-shadow(8),
),
color: (
timepicker-container-background-color: map.get($system, surface)
),
typography: (),
density: (),
);
}