-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (41 loc) · 1022 Bytes
/
tailwind.config.js
File metadata and controls
42 lines (41 loc) · 1022 Bytes
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
// tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./node_modules/@heroui/theme/dist/components/(alert|toggle|button|ripple|spinner).js"
],
theme: {
extend: {
fontFamily: {
main: ["var(--font-main)", "sans-serif"],
},
colors: {
folder: {
blue: "#A5D8FF",
green: "#B2F2BB",
peach: "#FFD8A8",
lavender: "#D0BFFF",
beige: "#FFE8CC",
pink: "#F3C0C6",
yellow: "#FFF3BF",
teal: "#96E6B3",
gray: "#C5D8E8",
},
},
fontSize: {
'xs': 'var(--font-xs)',
'sm': 'var(--font-sm)',
'base': 'var(--font-base)',
'lg': 'var(--font-lg)',
'xl': 'var(--font-xl)',
'2xl': 'var(--font-2xl)',
'3xl': 'var(--font-3xl)',
'4xl': 'var(--font-4xl)',
'5xl': 'var(--font-5xl)',
'6xl': 'var(--font-6xl)',
},
},
},
darkMode: "class",
plugins: [heroui()],
};