forked from lightningpixel/modly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 854 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (37 loc) · 854 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{ts,tsx,html}'],
theme: {
extend: {
colors: {
surface: {
50: '#f4f4f5',
100: '#e4e4e7',
200: '#27272a',
300: '#1e1e21',
400: '#18181b',
500: '#111113',
},
accent: {
DEFAULT: '#7c3aed',
light: '#a78bfa',
dark: '#5b21b6',
}
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
keyframes: {
slide: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(400%)' },
},
},
animation: {
slide: 'slide 1.5s ease-in-out infinite',
},
}
},
plugins: []
}