-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (37 loc) · 1.02 KB
/
tailwind.config.js
File metadata and controls
40 lines (37 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
spacing: {
'1.5': '0.375rem', // 1.5 * 0.25rem (default spacing scale)
// Add more custom gutter spacing values if needed
},
colors: {
primary: "#6EC1E4",
secondary: "#54595F",
text: "#7A7A7A",
accent: "#61CE70",
},
fontFamily: {
primary: ["Roboto", "sans-serif"],
secondary: ["Roboto Slab", "serif"],
text: ["Roboto", "sans-serif"],
accent: ["Roboto", "sans-serif"],
},
fontWeight: {
primary: 600,
secondary: 400,
text: 400,
accent: 500,
},
zIndex: {
'999': 999,
},
},
},
plugins: [],
}