forked from Xyphyn/photon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 937 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
'src/**/*.{js,ts,svelte,html}',
'node_modules/mono-svelte/**/*.{js,ts,svelte,html}',
],
darkMode: 'class',
theme: {
fontFamily: {
sans: ['sans-serif'],
system: ['system-ui'],
serif: ['serif'],
inter: ['Inter', 'system-ui', 'sans-serif'],
},
extend: {
animation: {
'pop-in': 'pop-in 0.25s ease-out forwards',
},
keyframes: {
'pop-in': {
'0%, 100%': { transform: 'translateX(8px)', opacity: 0 },
},
},
colors: {
slate: {
200: '#e8edf4',
25: 'rgb(252,253,254)',
},
zinc: {
700: '#34343b',
800: '#1f1f24',
900: '#121215',
925: '#0c0c0e',
},
primary: {
100: '#f1f5f9',
900: '#0f172a',
},
},
},
},
plugins: [],
}