forked from bradrevans/myrient-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
57 lines (57 loc) · 1.23 KB
/
Copy pathtailwind.config.js
File metadata and controls
57 lines (57 loc) · 1.23 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
module.exports = {
content: [
'./src/renderer/index.html',
'./src/**/*.{js,ts,jsx,tsx,html}',
],
theme: {
extend: {
colors: {
primary: '#171717',
secondary: '#d4d4d4',
neutral: {
700: '#404040',
800: '#262626',
900: '#171717',
},
accent: {
500: '#f97316',
600: '#ea580c',
},
success: {
500: '#22c55e',
600: '#16a34a',
},
danger: {
500: '#ef4444',
600: '#dc2626',
},
'snowflake-accent': '#00BCD4',
'firework-accent': '#FFB100',
},
zIndex: {
'60': '60',
'70': '70',
'80': '80',
'90': '90',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
keyframes: {
'fade-in': {
'from': { opacity: '0' },
'to': { opacity: '1' },
},
'slide-up-fast': {
'from': { transform: 'translateY(0)' },
'to': { transform: 'translateY(-20px)' },
},
},
animation: {
'fade-in': 'fade-in 0.5s ease-in-out',
'slide-up-fast': 'slide-up-fast 0.5s ease-in-out forwards',
},
},
},
plugins: [],
}