-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtailwind.config.cjs
45 lines (44 loc) · 1.38 KB
/
tailwind.config.cjs
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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
"./storage/framework/views/*.php",
"./resources/views/**/*.blade.php",
"./custom/**/*.blade.php",
],
theme: {
extend: {
fontFamily: {
sans: ["sans", ...defaultTheme.fontFamily.sans],
},
width: {
30: "7.5rem", // 120px
40: "10rem", // 160px
50: "12.5rem", // 200px
60: "15rem", // 240px
70: "17.5rem", // 280px
80: "20rem", // 320px
90: "22.5rem", // 360px
100: "25rem", // 400px
},
spacing: {
10: "2.5rem", // 40px
20: "5rem", // 80px
30: "7.5rem", // 120px
40: "10rem", // 160px
50: "12.5rem", // 200px
60: "15rem", // 240px
70: "17.5rem", // 280px
80: "20rem", // 320px
90: "22.5rem", // 360px
100: "25rem", // 400px
},
},
},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
],
};