-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
83 lines (78 loc) · 2.13 KB
/
tailwind.config.js
File metadata and controls
83 lines (78 loc) · 2.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
const { tailwindcssOriginSafelist } = require("@headlessui-float/vue");
/** @type {import("tailwindcss").Config} */
module.exports = {
important: true,
content: [
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
"./storage/framework/views/*.php",
"./resources/views/**/*.blade.php",
"./resources/js/**/*.vue"
],
safelist: [
{
pattern:
/bg-(blue|cyan|gray|green|indigo|orange|pink|purple|red|rose|sky|teal|yellow)-(50|100|200|300|400|500|600|700|800|900)/
},
{
pattern:
/border-b-(blue|cyan|gray|green|indigo|orange|pink|purple|red|rose|sky|teal|yellow)-(50|100|200|300|400|500|600|700|800|900)/
},
{
pattern:
/border-(blue|cyan|gray|green|indigo|orange|pink|purple|red|rose|sky|teal|yellow)-(50|100|200|300|400|500|600|700|800|900)/
},
{
pattern:
/text-(blue|cyan|gray|green|indigo|orange|pink|purple|red|rose|sky|teal|yellow)-(50|100|200|300|400|500|600|700|800|900)/
},
...tailwindcssOriginSafelist
],
theme: {
container: {
center: true
},
extend: {
padding: {
"1/3": "33.33333%",
"2/3": "66.66667%"
},
colors: {
primary: colors.violet,
danger: colors.red,
secondary: "#151b26",
success: colors.green,
warning: colors.orange,
zinc: colors.zinc,
link: colors.blue,
rose: colors.rose,
cyan: colors.cyan,
dark: colors.slate
},
scale: {
101: "1.01",
102: "1.02"
},
fontFamily: {
sans: [
"Figtree",
"Roboto",
"Nunito",
"Helvetica",
"Proxima Nova",
...defaultTheme.fontFamily.sans
],
poppins: ["Poppins", "sans-serif"],
safira: ["SAFIRA", "Poppins", "Proxima Nova"]
},
fontSize: {
xxs: ["0.65rem", { lineHeight: "1.1rem" }]
}
}
},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/aspect-ratio")
]
};