-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (41 loc) · 1.14 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
import defaultTheme from "tailwindcss/defaultTheme";
import forms from "@tailwindcss/forms";
export default {
darkMode: "class",
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./app/Livewire/**/**/*.php",
"./app/View/Components/**/**/*.php",
"./vendor/developermithu/tallcraftui/src/View/Components/**/*.php",
],
theme: {
container: {
center: true,
padding: {
DEFAULT: "1rem",
// sm: "2rem",
// lg: "3rem",
// xl: "3rem",
// "2xl": "3rem",
},
},
screens: {
xxs: "375px",
xs: "475px",
...defaultTheme.screens,
},
extend: {
fontFamily: {
inter: ["Inter", ...defaultTheme.fontFamily.sans],
lato: ["Lato", ...defaultTheme.fontFamily.sans],
},
colors: {
primary: "#23B9AD",
secondary: "#6167EF",
},
},
},
plugins: [forms],
};