forked from sec-o-simple/sec-o-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (37 loc) · 793 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (37 loc) · 793 Bytes
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
import { heroui } from '@heroui/react'
export default {
content: [
'index.html',
'./src/**/*.{js,jsx,ts,tsx,html}',
'./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {},
},
plugins: [
heroui({
themes: {
light: {
layout: {
radius: {
small: '0.25rem',
medium: '0.35rem',
large: '0.5rem',
},
},
colors: {
primary: '#2563eb',
secondary: '#da9c14',
['primary-foreground']: '#ffffff',
['neutral-foreground']: '#64748b',
['neutral-border']: '#cad5e2',
},
},
dark: {
layout: {},
colors: {},
},
},
}),
],
}