-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
92 lines (87 loc) · 2.42 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
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
84
85
86
87
88
89
90
91
92
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require("tailwindcss/colors");
module.exports = {
darkMode: null,
theme: {
container: {
screens: {
'print': {'raw': 'print'},
sm: "100%",
md: "100%",
lg: "1024px",
xl: "1280px"
}
},
extend: {
fontSize: {
'2xs': '.5rem'
},
spacing: {
'4.5': '1.13rem'
},
colors: {
blueGray: colors.slate,
primary: colors.indigo,
secondary: colors.gray,
positive: colors.emerald,
negative: colors.red,
warning: colors.amber,
info: colors.blue,
},
animation: {
blob: "blob 4s infinite",
},
transitionDuration: {
'2000': '2000ms',
'3000': '3000ms',
},
keyframes: {
blob: {
"0%": {
transform: "translate(0px, 0px) scale(1)",
},
"33%": {
transform: "translate(30px, -50px) scale(1.1)",
},
"66%": {
transform: "translate(-20px, 20px) scale(0.9)",
},
"100%": {
transform: "tranlate(0px, 0px) scale(1)",
},
},
},
scale: {
'200': '2',
'300': '3',
'400': '4',
},
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
transitionProperty: {
'width': 'max-width'
},
},
},
variants: {
extend: {
backgroundColor: ['active'],
}
},
content: [
'./vendor/wireui/wireui/resources/**/*.blade.php',
'./vendor/wireui/wireui/ts/**/*.ts',
'./vendor/wireui/wireui/src/View/**/*.php',
'./app/**/*.php',
'./config/*.php',
'./resources/**/*.js',
'./resources/**/*.php',
],
plugins: [
require("@tailwindcss/forms")({
strategy: 'class',
}),
require('@tailwindcss/typography'),
],
};