-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtalwind.config.js
More file actions
64 lines (64 loc) · 1.48 KB
/
talwind.config.js
File metadata and controls
64 lines (64 loc) · 1.48 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
64
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['var(--font-geist-sans)'],
mono: ['var(--font-geist-mono)'],
},
fontSize: {
'2xs': '0.625rem', // Extra small font size for addresses
},
colors: {
primary: {
50: '#f5eefa',
100: '#e9d5f5',
200: '#d4abeb',
300: '#bc82e2',
400: '#a558d8',
500: '#8e2fd0',
600: '#7524a6',
700: '#5a1b7c',
800: '#3d1153',
900: '#200829',
},
background: 'var(--background)',
foreground: 'var(--foreground)',
},
spacing: {
'72': '18rem',
'84': '21rem',
'96': '24rem',
},
maxWidth: {
'8xl': '88rem',
'9xl': '96rem',
},
borderRadius: {
'xl': '1rem',
'2xl': '1.5rem',
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
transitionProperty: {
'height': 'height',
'spacing': 'margin, padding',
},
height: {
'screen-75': '75vh',
'screen-80': '80vh',
},
boxShadow: {
'inner-lg': 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.15)',
},
},
},
plugins: [],
}