-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 910 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (35 loc) · 910 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
/** @type {import('tailwindcss').Config} */
export const content = [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
];
export const theme = {
extend: {},
};
export const darkMode = 'class';
export const plugins = [];
// heroui({
// themes: {
// light: {
// colors: {
// primary: {
// DEFAULT: '#5d2452', // purple
// foreground: '#f3f3f2', // white
// },
// secondary: '#b6b6b6', // light gray
// background: '#f3f3f2', // white
// },
// },
// // dark: {
// // colors: {
// // primary: {
// // DEFAULT: '#d8b4fe', // light purple
// // foreground: '#595858', // dark gray
// // },
// // secondary: '#808080', // gray
// // background: '#595858', // dark gray
// // },
// // },
// }
// })];