-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathtailwind.config.js
66 lines (66 loc) · 1.54 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}'
],
daisyui: {
themes: [
{
light: {
'background-color': '#f2f2f2',
accent: '#7e5a6c',
'base-100': 'white',
error: '#D14D3D',
info: '#00c9ff',
neutral: '#0c0700',
primary: '#6AB7C6',
secondary: '#8697BE',
success: '#00946b',
warning: '#E5963B'
},
dark: {
'background-color': '#222222',
accent: '#7e5a6c',
'base-100': 'white',
error: '#D14D3D',
info: '#00c9ff',
neutral: '#0c0700',
primary: '#6AB7C6',
secondary: '#8697BE',
success: '#00946b',
warning: '#E5963B'
}
}
],
darkTheme: 'dark'
},
theme: {
extend: {
colors: {
'body-color': 'var(--body-color)',
'body-solid-color': 'var(--body-solid-color)',
highlight: 'var(--highlight)',
'input-color': 'var(--input-text)',
main: 'var(--main-color)',
'text-dark': '#f3f3ef',
'text-light': '#344c50'
},
keyframes: {
fill: {
'0%': { width: `0%` },
'100%': { width: '100%' }
}
},
screens: {
adCol: '900px',
tablet: '640px',
'2xl': '1440px',
'3xl': '1536px',
'4xl': '1920px'
}
}
},
plugins: [require('daisyui')]
}