-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (47 loc) · 1.45 KB
/
tailwind.config.js
File metadata and controls
48 lines (47 loc) · 1.45 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
// Or if using `src` directory:
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontSize: {
'xxs': '.6rem',
},
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
width: {
"10xl": "50rem",
}
},
colors: {
'bright': '#f8f7ff',
'loading': '#DBDBE2',
},
},
plugins: [require('daisyui')],
daisyui: {
themes: [
{
// i don't appreciate DaisyUI's lack of communication regarding how they use colors, so I'm just over-riding everything to be dark grey and utilizing colors on my own beyond that.
// for example, i don't know what they use and where, and i dont' want to spend time chasing the information down, since my style is fundamentally different than what DaisyUI prescribes.
mytheme: {
primary: '#323031', // daisy requires, currently dark grey
secondary: '#323031', // daisy requires, currently dark grey
accent: '#323031', //daisy requires, currently dark grey
'base-100': '#323031', // daisy requires, currently dark grey
neutral: '#323031', // daisy requires
error: '#EC6466', // daisy requires
},
},
],
},
};