-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
51 lines (50 loc) · 1.14 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
import type { Config } from 'tailwindcss'
import { nextui } from '@nextui-org/react'
import typography from '@tailwindcss/typography'
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./assets/**/*.{css,scss}',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
container: {
center: true,
},
},
},
darkMode: 'class',
plugins: [
typography,
nextui({
// addCommonColors: true,
themes: {
light: {
colors: {
primary: {
50: '#F0F4FF',
100: '#F0F4FF',
200: '#D9E6FF',
300: '#A6C1FF',
400: '#598BFF',
500: '#3366FF',
600: '#274BDB',
700: '#1A34B8',
800: '#102694',
900: '#091A7A',
DEFAULT: '#598BFF',
foreground: '#fff',
},
},
},
dark: {
extend: 'light',
},
},
}),
],
}
export default config