-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
57 lines (57 loc) · 1.76 KB
/
tailwind.config.js
File metadata and controls
57 lines (57 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
// tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif'],
'display': ['Poppins', 'system-ui', 'sans-serif'],
},
fontSize: {
'xs': ['0.75rem', { lineHeight: '1.5' }],
'sm': ['0.875rem', { lineHeight: '1.5715' }],
'base': ['1rem', { lineHeight: '1.5' }],
'lg': ['1.125rem', { lineHeight: '1.5' }],
'xl': ['1.25rem', { lineHeight: '1.5' }],
'2xl': ['1.5rem', { lineHeight: '1.415' }],
'3xl': ['1.875rem', { lineHeight: '1.333' }],
'4xl': ['2.25rem', { lineHeight: '1.277' }],
'5xl': ['3rem', { lineHeight: '1.2' }],
'6xl': ['3.75rem', { lineHeight: '1.1' }],
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
mytheme: {
"primary": "#1e40af",
"primary-focus": "#1e3a8a",
"primary-content": "#ffffff",
"secondary": "#f59e0b",
"secondary-focus": "#d97706",
"secondary-content": "#ffffff",
"accent": "#37cdbe",
"accent-focus": "#2aa79b",
"accent-content": "#ffffff",
"neutral": "#3d4451",
"neutral-focus": "#2a2e37",
"neutral-content": "#ffffff",
"base-100": "#ffffff",
"base-200": "#f9fafb",
"base-300": "#d1d5db",
"base-content": "#1f2937",
"info": "#2094f3",
"success": "#009485",
"warning": "#ff9900",
"error": "#ff5724",
},
},
],
},
};