-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
48 lines (47 loc) · 1.08 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
import flowbite from 'flowbite-react/tailwind';
import type { Config } from 'tailwindcss';
import colors from 'tailwindcss/colors';
import { nextui } from '@nextui-org/react';
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
flowbite.content(),
],
theme: {
colors: {
primary: '#38318b',
secondary: '#27183e',
accent: '#df6552',
background: '#f6f1ed',
white: colors.white,
black: colors.black,
zinc: colors.zinc,
gray: '#ADAAA7',
// red: '#ff1411',
transparent: 'transparent',
},
},
plugins: [
nextui({
themes: {
light: {
colors: {
primary: '#38318b',
secondary: '#27183e',
},
},
dark: {
colors: {
primary: '#38318b',
secondary: '#27183e',
},
},
},
}),
flowbite.plugin(),
],
};
export default config;