-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (42 loc) · 986 Bytes
/
tailwind.config.js
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
const { nextui } = require('@nextui-org/theme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,ts,jsx,tsx}',
// './node_modules/@nextui-org/theme/dist/components/(button|input|ripple|spinner).js',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
// default: {
// DEFAULT: "#F3F4F6",
// foreground: "#fff",
// }
primary: {
DEFAULT: '#000',
foreground: '#fff',
}
},
aspectRatio: {
mobile: '9 / 16',
tablet: '3 / 4',
desktop: '16 / 9',
},
},
},
darkMode: 'class',
plugins: [nextui({
layout: {
// radius: {
// small: "0.125rem",
// medium: "0.25rem",
// large: "0.5rem",
// xlarge: "0.75rem",
// xxlarge: "1rem",
// xxxlarge: "1.5rem",
// full: "9999px",
// },
},
})],
};