forked from tallstackui/tallstackui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
62 lines (61 loc) · 1.35 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
import colors from 'tailwindcss/colors';
import forms from '@tailwindcss/forms';
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.php',
'./js/**/*.js',
// ignoring
'!./src/resources/views/components/icon/google/',
'!./src/resources/views/components/icon/phosphoricons/',
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: colors.indigo,
secondary: colors.slate,
dark: colors.slate,
black: {
'DEFAULT': colors.black,
'50': '#f6f6f6',
'100': '#e7e7e7',
'200': '#d1d1d1',
'300': '#b0b0b0',
'400': '#888888',
'500': '#6d6d6d',
'600': '#5d5d5d',
'700': '#4f4f4f',
'800': '#454545',
'900': '#3d3d3d',
'950': '#000000',
},
},
keyframes: {
progress: {
'0%': {width: '0%'},
'100%': {width: '100%'},
},
},
animation: {
progress: 'progress 2s linear infinite',
},
},
},
safelist: [
'!overflow-hidden',
'z-0',
'z-10',
'z-20',
'z-30',
'z-40',
'z-50',
'z-auto',
],
plugins: [
forms,
require('./js/plugins/customScrollbar'),
require('./js/plugins/softScrollbar'),
require('./js/plugins/numberAppearanceNone'),
],
};