-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 1.05 KB
/
Copy pathtailwind.config.js
File metadata and controls
40 lines (40 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Manrope', 'sans-serif'],
heading: ['Manrope', 'sans-serif'],
body: ['Manrope', 'sans-serif'],
},
colors: {
primary: '#ffbf00',
'primary-hover': '#ffbf00',
'primary-light': '#ffbf00',
'primary-dark': '#ffbf00',
secondary: '#6366F1',
'secondary-hover': '#5856EB',
'secondary-light': '#818CF8',
'secondary-dark': '#4F46E5',
accent: '#FF8C00',
'accent-hover': '#E67E00',
// shadcn/ui compatibility
background: '#ffffff',
foreground: '#000000',
'primary-foreground': '#000000',
},
animation: {
'border-beam': 'border-beam calc(var(--duration)*1s) infinite linear',
},
keyframes: {
'border-beam': {
'100%': {
'offset-distance': '100%',
},
},
},
},
},
plugins: [],
};