-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
59 lines (52 loc) · 1.39 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'media',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
colors: {
'text': '#0c070d',
'background': '#f3e5f5',
'primary': '#97569f',
'secondary': '#e1cde4',
'accent': '#8a5095',
'highlight': '#dfc8e3',
'darktext': '#f7f2f8',
'darkbackground': '#180a1a',
'darkprimary': '#a160a9',
'darksecondary': '#2f1b32',
'darkaccent': '#a36aaf',
'darkhighlight':'#462d4b',
},
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
boxShadow: {
'3xl': '0 20px 80px -10px rgba(0, 0, 0, 0.1)',
},
animation: {
'spin-slow': 'spin 3s linear infinite',
'twinkle': 'twinkle 1.5s linear infinite',
},
keyframes: {
twinkle: {
'0%, 100%': { opacity: 0 },
'50%': { opacity: 1 }
}
},
// animation: {
// twinkle: 'twinkle 1.5s linear infinite',
// },
},
// animationspin: {
// 'spin-slow': 'spin 3000 linear infinite',
// },
},
plugins: [],
}