-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (53 loc) · 1.54 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
export default {
darkMode: 'selector',
content: [
//,
'./app/Filament/**/*.php',
'./app/Livewire/**/*.php',
'./app/View/Components/**/*.php',
'./resources/views/**/*.blade.php',
'./vendor/filament/**/*.blade.php',
'./vendor/livewire/**/*.blade.php',
],
theme: {
container: ({ theme }) => ({
center: true,
padding: {
DEFAULT: '1rem',
sm: '1.5rem',
lg: '2rem',
},
}),
extend: {
colors: {
primary: {
50: '#EBF1FF',
100: '#D1E0FF',
200: '#A8C5FF',
300: '#7AA7FF',
400: '#4D88FF',
500: '#1F69FF',
600: '#0052F5',
700: '#0042C7',
800: '#003399',
900: '#001A4D',
950: '#000E29',
},
secondary: {
50: '#fffef2',
100: '#fffce6',
200: '#fff8bf',
300: '#fff199',
400: '#ffe14d',
500: '#ffcc00',
600: '#e6b000',
700: '#bf8600',
800: '#996100',
900: '#734300',
950: '#4a2600',
},
},
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
};