-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
60 lines (59 loc) · 1.38 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
52
53
54
55
56
57
58
59
60
import type { Config } from 'tailwindcss';
import { nextui } from '@nextui-org/react';
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
ovo: ['Ovo', 'sans-serif'],
playfair: ['Playfair Display', 'serif'],
tilt: ['Tilt Warp', 'cursive'],
inter: ['Innter', 'sans-serif'],
},
colors: {
connote_orange: '#F9844A',
connote_green: '#43AA8B',
connote_pastel_blue: '#0CA1E2',
connote_pastel_yellow: '#ECBC0F',
connote_pastel_purple: '#783697',
connote_white: '#F9FEFE',
connote_dark: '#242230',
},
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
md: '1.5rem',
lg: '3rem',
},
},
},
plugins: [
nextui({
themes: {
light: {
colors: {
background: '#FFF7F3',
primary: '#242230',
secondary: '#F9FEFE',
},
},
dark: {
colors: {
background: '#210230',
primary: '#F9FEFE',
secondary: '#451952',
},
},
},
}),
],
};
export default config;