-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
46 lines (45 loc) · 2.08 KB
/
tailwind.config.ts
File metadata and controls
46 lines (45 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import type { Config } from 'tailwindcss';
const defaultTheme = require('tailwindcss/defaultTheme');
export default {
content: ['./app/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
background: 'rgb(var(--background) / <alpha-value>)',
foreground: 'rgba(var(--foreground) / <alpha-value>)',
card: 'rgba(var(--card) / <alpha-value>)',
'card-foreground': 'rgba(var(--card-foreground) / <alpha-value>)',
popover: 'rgba(var(--popover) / <alpha-value>)',
'popover-foreground': 'rgba(var(--popover-foreground) / <alpha-value>)',
primary: 'rgba(var(--primary) / <alpha-value>)',
'primary-foreground': 'rgba(var(--primary-foreground) / <alpha-value>)',
'primary-accent': 'rgba(var(--primary-accent) / <alpha-value>)',
secondary: 'rgba(var(--secondary) / <alpha-value>)',
'secondary-foreground':
'rgba(var(--secondary-foreground) / <alpha-value>)',
muted: 'rgba(var(--muted) / <alpha-value>)',
'muted-foreground': 'rgba(var(--muted-foreground) / <alpha-value>)',
accent: 'rgba(var(--accent) / <alpha-value>)',
'accent-foreground': 'rgba(var(--accent-foreground) / <alpha-value>)',
success: 'rgba(var(--success) / <alpha-value>)',
'success-foreground': 'rgba(var(--success-foreground) / <alpha-value>)',
warning: 'rgba(var(--warning) / <alpha-value>)',
'warning-foreground': 'rgba(var(--warning-foreground) / <alpha-value>)',
destructive: 'rgba(var(--destructive) / <alpha-value>)',
'destructive-foreground':
'rgba(var(--destructive-foreground) / <alpha-value>)',
border: 'rgba(var(--border) / <alpha-value>)',
input: 'rgba(var(--input) / <alpha-value>)',
},
fontFamily: {
sans: ['"NotoSans"', ...defaultTheme.fontFamily.sans],
serif: ['"AntiqueOliveBold"', ...defaultTheme.fontFamily.serif],
},
animation: {
wave: 'wave 1.5s ease-in-out 2 0.3s',
'rotate-and-scale': 'rotateAndScale 4s linear infinite',
},
},
},
plugins: [],
} satisfies Config;