chore: generate
This commit is contained in:
@@ -13,12 +13,8 @@ export function mapV2Foreground(
|
||||
})
|
||||
|
||||
return {
|
||||
"v2-text-text-base": isDark
|
||||
? blend("#ffffff", body, 0.9)
|
||||
: shift(body, { l: -0.07, c: 1.04 }),
|
||||
"v2-text-text-muted":
|
||||
overrides["text-weak"] ??
|
||||
shift(body, { l: isDark ? -0.11 : 0.11, c: 0.9 }),
|
||||
"v2-text-text-base": isDark ? blend("#ffffff", body, 0.9) : shift(body, { l: -0.07, c: 1.04 }),
|
||||
"v2-text-text-muted": overrides["text-weak"] ?? shift(body, { l: isDark ? -0.11 : 0.11, c: 0.9 }),
|
||||
"v2-text-text-faint": shift(body, { l: isDark ? -0.2 : 0.21, c: isDark ? 0.78 : 0.72 }),
|
||||
}
|
||||
}
|
||||
|
||||
@@ -143,8 +143,6 @@ export function mapV2Semantics(isDark: boolean): Record<string, V2ColorValue> {
|
||||
return isDark ? dark : light
|
||||
}
|
||||
|
||||
export function mergeV2Tokens(
|
||||
...layers: Record<string, V2ColorValue>[]
|
||||
): Record<string, V2ColorValue> {
|
||||
export function mergeV2Tokens(...layers: Record<string, V2ColorValue>[]): Record<string, V2ColorValue> {
|
||||
return Object.assign({}, ...layers)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user