-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
76 lines (73 loc) · 1.74 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
import forms from '@tailwindcss/forms';
import defaultTheme from 'tailwindcss/defaultTheme';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.tsx',
],
theme: {
extend: {
colors: {
'black': '#000000',
primary: {
600: '#2b6cb0',
700: '#2c5282',
},
warning: {
50: '#fff8f1',
100: '#feecdc',
200: '#fcd9bd',
300: '#fdba8c',
400: '#ff8a4c',
500: '#ff5a1f',
600: '#d03801',
700: '#b43403',
800: '#8a2c0d',
900: '#73230d',
},
danger: {
100: '#fff5f5',
200: '#fed7d7',
300: '#feb2b2',
400: '#fc8181',
500: '#f56565',
600: '#e53e3e',
700: '#c53030',
800: '#9b2c2c',
900: '#742a2a',
},
neutral: {
50: '#f9fafb',
100: '#f4f5f7',
200: '#e5e7eb',
300: '#d2d6dc',
400: '#9fa6b2',
500: '#6b7280',
600: '#4b5563',
700: '#374151',
800: '#252f3f',
900: '#161e2e',
},
indigo: {
100: '#e6e8ff',
300: '#b2b7ff',
400: '#7886d7',
500: '#6574cd',
600: '#5661b3',
800: '#2f365f',
900: '#191e38'
}
},
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
animation: {
'spin-slow': 'spin 7s linear infinite',
},
},
},
plugins: [forms],
};