-
Notifications
You must be signed in to change notification settings - Fork 11
/
tailwind.config.js
100 lines (97 loc) · 3.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
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
93
94
95
96
97
98
99
100
import defaultTheme from 'tailwindcss/defaultTheme';
import colors from 'tailwindcss/colors';
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./vendor/filament/**/*.blade.php',
],
theme: {
extend: {
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
colors: {
danger: colors.red,
primary: colors.blue,
success: colors.emerald,
warning: colors.orange,
buttercup: {
'50': '#fdfde9',
'100': '#fdfbc4',
'200': '#fbf38d',
'300': '#f9e54b',
'400': '#f5d31a',
'500': '#f1c40f',
'600': '#c59009',
'700': '#9d670b',
'800': '#825211',
'900': '#6f4314',
'950': '#412307',
},
jade: {
'50': '#eefff5',
'100': '#d7ffea',
'200': '#b2ffd7',
'300': '#76ffb9',
'400': '#33f593',
'500': '#09de73',
'600': '#00cc66',
'700': '#04914b',
'800': '#0a713f',
'900': '#0a5d36',
'950': '#00341c',
},
matisse: {
'50': '#f2f9fd',
'100': '#e5f0f9',
'200': '#c5e1f2',
'300': '#92c9e7',
'400': '#58add8',
'500': '#3292c5',
'600': '#2274a5',
'700': '#1d5d87',
'800': '#1c5070',
'900': '#1c445e',
'950': '#132c3e',
},
voodoo: {
transparent: 'transparent',
current: 'currentColor',
'50': '#faf8fb',
'100': '#f5f1f6',
'200': '#ebe1ed',
'300': '#dcc9de',
'400': '#c6a9c9',
'500': '#ac85b0',
'600': '#906792',
'700': '#775378',
'800': '#5c415d',
'900': '#533c53',
'950': '#322032',
},
pumpkin: {
transparent: 'transparent',
current: 'currentColor',
'50': '#fff6ed',
'100': '#ffebd4',
'200': '#ffd2a9',
'300': '#ffb272',
'400': '#fe7f2d',
'500': '#fd6412',
'600': '#ee4a08',
'700': '#c53509',
'800': '#9c2b10',
'900': '#7e2610',
'950': '#440f06',
}
},
},
},
plugins: [forms, typography],
};