-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
64 lines (62 loc) · 1.18 KB
/
tailwind.config.ts
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
import { Config } from 'tailwindcss';
import { nextui } from '@nextui-org/react';
export const config: Config = {
content: [
'src/**/*.{html,tsx}',
'node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}'
],
darkMode: 'class',
theme: {
extend: {
animation: {
'bounce-fast': 'bounce 0.5s infinite'
},
borderRadius: {
huge: '2rem',
giga: '3rem'
},
colors: {
yellow: '#FEF32A',
white: '#FEFEFE',
purple: '#9D57D2',
'purple-light': '#c49ae4',
black: '#010101',
green: '#A3E557'
},
width: {
'25c': '25em',
'50c': '50em'
}
},
fontFamily: {
sans: ['Poppins', 'Ubuntu', 'Inter', 'Roboto', 'sans-serif'],
mono: ['Ubuntu Mono', 'Roboto Mono', 'monospace'],
'press-start': ['"Press Start 2P"', 'monospace']
},
scale: {
175: '1.75',
200: '2',
250: '2.5'
}
},
plugins: [
nextui({
defaultTheme: 'dark',
defaultExtendTheme: 'dark',
themes: {
dark: {
colors: {
background: '#010101',
foreground: '#FEFEFE',
secondary: '#9D57D2',
success: '#A3E557',
primary: '#cbc101'
},
layout: {},
extend: 'dark'
}
}
})
]
};
export default config;