summaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: 74b3d31f8b0e4a60ed1b8df286e5d72c3cfe58c0 (plain)
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
const defaultTheme = require('tailwindcss/defaultTheme')

module.exports = {
    future: {
    },
    purge: [],
    theme: {
        extend: {
            colors: {
                blue: {
                    light: '#f4f7fb',
                    DEFAULT: '#99c1f1',
                    dark: '#1b5eb4',
                }
            },
            fontFamily: {
                sans: ['Inter var', ...defaultTheme.fontFamily.sans],
            },
        },
    },
    variants: {},
    plugins: [
        require('@tailwindcss/forms'),
    ],
}