mirror of https://github.com/ghostfolio/ghostfolio
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.
63 lines
2.3 KiB
63 lines
2.3 KiB
@use 'sass:map';
|
|
@use '../core/theming/theming';
|
|
@use '../core/tokens/m2-utils';
|
|
|
|
@function get-tokens($theme) {
|
|
$system: m2-utils.get-system($theme);
|
|
$density-scale: theming.clamp-density(map.get($system, density-scale), -4);
|
|
|
|
@return (
|
|
base: (
|
|
table-row-item-outline-width: 1px,
|
|
),
|
|
color: (
|
|
table-background-color: map.get($system, surface),
|
|
table-header-headline-color: map.get($system, on-surface),
|
|
table-row-item-label-text-color: map.get($system, on-surface),
|
|
table-row-item-outline-color: map.get($system, outline),
|
|
),
|
|
typography: (
|
|
table-header-headline-font: map.get($system, label-medium-font),
|
|
table-header-headline-line-height: map.get($system, label-medium-line-height),
|
|
table-header-headline-size: map.get($system, label-medium-size),
|
|
table-header-headline-weight: map.get($system, label-medium-weight),
|
|
table-header-headline-tracking: map.get($system, label-medium-tracking),
|
|
|
|
// Plain cells and footer cells have the same typography.
|
|
table-row-item-label-text-font: map.get($system, body-medium-font),
|
|
table-row-item-label-text-line-height: map.get($system, body-medium-line-height),
|
|
table-row-item-label-text-size: map.get($system, body-medium-size),
|
|
table-row-item-label-text-weight: map.get($system, body-medium-weight),
|
|
table-row-item-label-text-tracking: map.get($system, body-medium-tracking),
|
|
|
|
table-footer-supporting-text-font: map.get($system, body-medium-font),
|
|
table-footer-supporting-text-line-height: map.get($system, body-medium-line-height),
|
|
table-footer-supporting-text-size: map.get($system, body-medium-size),
|
|
table-footer-supporting-text-weight: map.get($system, body-medium-weight),
|
|
table-footer-supporting-text-tracking: map.get($system, body-medium-tracking),
|
|
),
|
|
density: (
|
|
table-header-container-height: map.get((
|
|
0: 56px,
|
|
-1: 52px,
|
|
-2: 48px,
|
|
-3: 44px,
|
|
-4: 40px
|
|
), $density-scale),
|
|
table-footer-container-height: map.get((
|
|
0: 52px,
|
|
-1: 48px,
|
|
-2: 44px,
|
|
-3: 40px,
|
|
-4: 36px
|
|
), $density-scale),
|
|
table-row-item-container-height: map.get((
|
|
0: 52px,
|
|
-1: 48px,
|
|
-2: 44px,
|
|
-3: 40px,
|
|
-4: 36px
|
|
), $density-scale),
|
|
),
|
|
);
|
|
}
|
|
|