Files
wehub-resource-sync 3a28426bf4
Lint and Format Check / lint-and-format (push) Failing after 0s
Check Migrations / Check for duplicate migration numbers (push) Failing after 1s
CI Pre-merge Check / CI Pre-merge Check (push) Failing after 2m17s
chore: import upstream snapshot with attribution
2026-07-13 12:23:40 +08:00

26 lines
759 B
JavaScript

/** @type {import('tailwindcss').Config} */
const tailwindPreset = {
theme: {
extend: {
colors: {
border: 'var(--border)',
'alpha-4': 'var(--alpha-4)',
'alpha-8': 'var(--alpha-8)',
'alpha-12': 'var(--alpha-12)',
'alpha-16': 'var(--alpha-16)',
foreground: 'rgb(var(--foreground))',
'muted-foreground': 'rgb(var(--muted-foreground))',
primary: 'rgb(var(--primary))',
destructive: 'rgb(var(--destructive))',
'semantic-0': 'rgb(var(--semantic-0))',
'semantic-1': 'rgb(var(--semantic-1))',
'semantic-2': 'rgb(var(--semantic-2))',
card: 'rgb(var(--card))',
toast: 'rgb(var(--toast))',
},
},
},
};
export default tailwindPreset;