summaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: 4b5befa9f6354b0c36dc456187c16c1ee38cc46d (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
26
27
const defaultTheme = require('tailwindcss/defaultTheme')

module.exports = {
    future: {
    },
    content: [
        "./templates/**/*.html"
      ],
    theme: {
        extend: {
            colors: {
                transparent: 'transparent',
                current: 'currentColor',
                blue: {
                    light: '#f4f7fb',
                    DEFAULT: '#99c1f1',
                    dark: '#1b5eb4',
                }
            },
            fontFamily: {
                sans: ['Rubik'],
            },
        },
    },
    variants: {},
    plugins: [],
}