theme/tailwind.config.js

25 lines
560 B
JavaScript
Raw Normal View History

2022-01-29 17:53:15 +00:00
const defaultTheme = require('tailwindcss/defaultTheme');
2022-01-26 21:49:09 +00:00
2022-01-26 20:58:18 +00:00
module.exports = {
2022-01-29 17:53:15 +00:00
content: ['./src/*.css', './layouts/**/*.html'],
safelist: ['p-4', '!text-white', '!underline'],
2022-01-29 13:57:29 +00:00
theme: {
extend: {
colors: {
primary: {
lighter: '#3b7aec',
DEFAULT: '#196aff',
darker: '#0064ff',
2022-01-29 17:53:15 +00:00
},
2022-01-29 13:57:29 +00:00
},
fontFamily: {
title: ['Quicksand', ...defaultTheme.fontFamily.sans],
},
backgroundImage: {
'hero-llama': "url('/images/bg-3.jpg')",
},
},
},
2022-01-29 17:53:15 +00:00
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')],
};