-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
64 lines (63 loc) · 1.52 KB
/
tailwind.config.js
File metadata and controls
64 lines (63 loc) · 1.52 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
night: {
50: '#f7f7f8',
100: '#eeeef0',
200: '#d9d9de',
300: '#b8b8c1',
400: '#91919f',
500: '#737384',
600: '#5d5d6c',
700: '#4c4c58',
800: '#41414b',
900: '#1a1a1f',
950: '#0d0d10',
},
volt: {
50: '#f0fff4',
100: '#d1ffe0',
200: '#a6ffc5',
300: '#64ff9a',
400: '#21f56d',
500: '#00d94e',
600: '#00b33f',
700: '#008c34',
800: '#066e2c',
900: '#085a26',
950: '#003313',
}
},
fontFamily: {
sans: ['Sora', 'system-ui', 'sans-serif'],
mono: ['IBM Plex Mono', 'monospace'],
},
animation: {
'fade-in': 'fadeIn 0.5s ease-out forwards',
'slide-up': 'slideUp 0.5s ease-out forwards',
'pulse-subtle': 'pulseSubtle 2s ease-in-out infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
pulseSubtle: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0.7' },
},
},
},
},
plugins: [],
}