-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (51 loc) · 1.2 KB
/
tailwind.config.js
File metadata and controls
51 lines (51 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ['selector', '[class~="dark"]'],
content: [
'./layouts/**/*.html',
'./content/**/*.md',
'./assets/js/**/*.js',
'./static/js/**/*.js',
],
theme: {
extend: {
fontFamily: {
sans: ['Plus Jakarta Sans', 'Inter', 'sans-serif'],
display: ['Plus Jakarta Sans', 'Inter', 'sans-serif'],
},
colors: {
primary: {
DEFAULT: '#4F46E5',
50: '#EEF2FF',
100: '#E0E7FF',
200: '#C7D2FE',
300: '#A5B4FC',
400: '#818CF8',
500: '#6366F1',
600: '#4F46E5',
700: '#4338CA',
800: '#3730A3',
900: '#312E81',
950: '#1E1B4B',
},
secondary: '#10B981',
accent: '#F59E0B',
neutral: '#374151',
brand: {
soft: '#F8FAFF',
muted: '#64748B',
dark: '#0F172A',
},
},
borderRadius: {
'2xl': '1rem',
'3xl': '1.5rem',
'4xl': '2rem',
},
transitionDuration: {
4000: '4000ms',
},
},
},
plugins: [require('tailwindcss-animate'), require('@tailwindcss/typography')],
};