Passed
Push — main ( 1a2e2c...1283a0 )
by Usama
04:16
created

tailwind.config.js (1 issue)

Severity
1
const defaultTheme = require('tailwindcss/defaultTheme');
0 ignored issues
show
The constant defaultTheme seems to be never used. Consider removing it.
Loading history...
2
3
/** @type {import('tailwindcss').Config} */
4
module.exports = {
5
    content: [
6
        './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
7
        './storage/framework/views/*.php',
8
        './resources/views/**/*.blade.php',
9
    ],
10
11
    theme: {
12
        extend: {
13
            colors: {
14
                primary: {
15
                    "50": "#eff6ff",
16
                    "100": "#dbeafe",
17
                    "200": "#bfdbfe",
18
                    "300": "#93c5fd",
19
                    "400": "#60a5fa",
20
                    "500": "#3b82f6",
21
                    "600": "#2563eb",
22
                    "700": "#1d4ed8",
23
                    "800": "#1e40af",
24
                    "900": "#1e3a8a"
25
                }
26
            }
27
        },
28
        fontFamily: {
29
            'body': [
30
                'Open Sans',
31
                'ui-sans-serif',
32
                'system-ui',
33
                '-apple-system',
34
                'system-ui',
35
                'Segoe UI',
36
                'Roboto',
37
                'Helvetica Neue',
38
                'Arial',
39
                'Noto Sans',
40
                'sans-serif',
41
                'Apple Color Emoji',
42
                'Segoe UI Emoji',
43
                'Segoe UI Symbol',
44
                'Noto Color Emoji'
45
            ],
46
            'sans': [
47
                'Open Sans',
48
                'ui-sans-serif',
49
                'system-ui',
50
                '-apple-system',
51
                'system-ui',
52
                'Segoe UI',
53
                'Roboto',
54
                'Helvetica Neue',
55
                'Arial',
56
                'Noto Sans',
57
                'sans-serif',
58
                'Apple Color Emoji',
59
                'Segoe UI Emoji',
60
                'Segoe UI Symbol',
61
                'Noto Color Emoji'
62
            ]
63
        }
64
    },
65
66
    plugins: [require('@tailwindcss/forms')],
67
};
68