-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (45 loc) · 1.52 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
import defaultTheme from 'tailwindcss/defaultTheme'
import forms from '@tailwindcss/forms'
import colors from 'tailwindcss/colors'
/** @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/**/*.vue',
],
theme: {
extend: {
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
colors: {
primary: {
50: colors.teal[50],
100: colors.teal[100],
200: colors.teal[200],
300: colors.teal[300],
400: colors.teal[400],
500: colors.teal[500],
600: colors.teal[600],
700: colors.teal[700],
800: colors.teal[800],
900: colors.teal[900],
},
secondary: {
100: colors.gray[100],
200: colors.gray[200],
300: colors.gray[300],
400: colors.gray[400],
500: colors.gray[500],
600: colors.gray[600],
700: colors.gray[700],
800: colors.gray[800],
900: colors.gray[900],
},
},
},
},
plugins: [forms],
}