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: { }, purge: [ "./templates/**/*.html" ], theme: { extend: { colors: { transparent: 'transparent', current: 'currentColor', blue: { light: '#f4f7fb', DEFAULT: '#99c1f1', dark: '#1b5eb4', } }, fontFamily: { sans: ['Rubik'], }, }, }, variants: {}, plugins: [], }