-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (57 loc) · 1.41 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
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./application/views/admin/*.php",
"./application/views/admin/**/*.php",
"./application/views/authentication/*.php",
"./application/views/authentication/**/*.php",
"./application/views/themes/**/*.php",
"./application/views/themes/**/**/*.php",
"./application/views/**/*.php",
"./modules/**/views/*.php",
"./modules/**/views/**/*.php",
"./assets/js/main.js",
"./assets/js/projects.js",
"./assets/js/tickets.js",
"./assets/js/app.js",
"./assets/js/map.js",
"./install/*.php",
],
safelist: [
{
pattern:
/^panel|btn-|bg-|text-|label-|badge-|bg-|dropdown|nav-|nav-tabs|pagination-|fc-|alert-.*/,
},
],
prefix: "tw-",
theme: {
extend: {
fontSize: {
sm: "0.8rem",
base: "0.9rem",
normal: "0.84375rem",
},
animation: {
"spin-slow": "spin 3s linear infinite",
},
},
colors: {
transparent: "transparent",
inherit: colors.inherit,
current: "currentColor",
black: colors.black,
white: colors.white,
neutral: colors.slate,
danger: colors.red,
warning: colors.yellow,
success: colors.green,
info: colors.sky,
primary: colors.blue,
},
},
plugins: [],
corePlugins: {
preflight: false,
},
};