chore: generate

This commit is contained in:
opencode-agent[bot] 2026-06-05 00:54:49 +00:00
commit 9211ef7e95
3 changed files with 14 additions and 10 deletions

View file

@ -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 }),
}
}

View file

@ -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)
}