-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
72 lines (72 loc) · 1.71 KB
/
tailwind.config.js
File metadata and controls
72 lines (72 loc) · 1.71 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
65
66
67
68
69
70
71
72
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,jsx}',
'./components/**/*.{js,jsx}',
],
theme: {
container: {
center: true,
padding: '1.5rem',
screens: {
'2xl': '1200px',
},
},
extend: {
colors: {
background: '#050505',
surface: '#0A0A0A',
card: {
DEFAULT: '#0D0D0D',
hover: '#121212',
},
line: {
DEFAULT: '#1A1A1A',
hover: '#2A2A2A',
},
accent: {
DEFAULT: '#7C3AED',
light: '#9F6FFF',
dim: '#4F46E5',
glow: 'rgba(124,58,237,0.15)',
},
content: {
DEFAULT: '#F0F0F0',
muted: '#888888',
dim: '#444444',
},
},
fontFamily: {
sans: ['var(--font-inter)', 'system-ui', 'sans-serif'],
mono: ['var(--font-mono)', 'monospace'],
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'hero-glow': 'radial-gradient(ellipse at 50% -10%, rgba(124,58,237,0.18) 0%, transparent 65%)',
},
animation: {
'fade-in': 'fadeIn 0.4s ease forwards',
'slide-up': 'slideUp 0.4s ease forwards',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { opacity: '0', transform: 'translateY(12px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
},
typography: {
DEFAULT: {
css: {
color: '#888888',
maxWidth: 'none',
},
},
},
},
},
plugins: [],
}