-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
92 lines (90 loc) · 2.56 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
let colors = require('tailwindcss/colors');
module.exports = {
content: [
'./**/*.php',
'./src/resources/**/**/*.js',
'./src/resources/**/*.blade.php',
],
darkMode: 'class',
theme: {
extend: {
colors: {
blue: colors.blue,
secondary: colors.slate,
gray: colors.gray,
dark: colors.slate,
danger: {
50: '#fef2f2',
100: '#fee2e2',
200: '#fecaca',
300: '#fca5a5',
400: '#f87171',
500: '#ef4444',
600: '#dc2626',
700: '#b91c1c',
800: '#991b1b',
900: '#7f1d1d',
},
yellow: colors.yellow,
primary: {
'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',
},
},
},
},
safelist: [
'tox',
'tox-tinymce',
{
pattern: /(ct|chart|chartist)-.*/,
},
'!overflow-hidden',
'z-0',
'bg-opacity-10',
'backdrop-blur-sm',
'z-10',
'z-20',
'z-30',
'z-40',
'z-50',
'z-[100]',
'z-auto',
'sm:max-w-xs',
'sm:max-w-sm',
'sm:max-w-md',
'sm:max-w-lg',
'sm:max-w-xl',
'sm:max-w-2xl',
'sm:max-w-3xl',
'sm:max-w-4xl',
'sm:max-w-5xl',
'sm:max-w-6xl',
'sm:max-w-7xl',
'sm:max-w-full',
'sm:max-w-sm',
'sm:max-w-md',
'sm:max-w-md md:max-w-lg',
'sm:max-w-md md:max-w-xl',
'sm:max-w-md md:max-w-xl lg:max-w-2xl',
'sm:max-w-md md:max-w-xl lg:max-w-3xl',
'sm:max-w-md md:max-w-xl lg:max-w-3xl xl:max-w-4xl',
'sm:max-w-md md:max-w-xl lg:max-w-3xl xl:max-w-5xl',
'sm:max-w-md md:max-w-xl lg:max-w-3xl xl:max-w-5xl 2xl:max-w-6xl',
'sm:max-w-md md:max-w-xl lg:max-w-3xl xl:max-w-5xl 2xl:max-w-7xl',
'focus-within:ring-primary focus-within:ring-2'
],
plugins: [
require('@tailwindcss/forms')
],
};