theme/tailwind.config.js

33 lines
872 B
JavaScript

const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./src/*.css', './layouts/**/*.html'],
safelist: ['p-4', '!text-white', '!underline'],
theme: {
extend: {
colors: {
primary: {
lighter: '#3b7aec',
DEFAULT: '#196aff',
darker: '#0064ff',
},
},
fontFamily: {
title: ['Quicksand', ...defaultTheme.fontFamily.sans],
sans: ['Open Sans', ...defaultTheme.fontFamily.sans],
},
backgroundImage: {
'hero-llama': 'url(\'/images/bg-3.jpg\')',
'hero-llama-small': 'url(\'/images/hero-llamas-small.jpg\')',
'hero-llama-2-small': 'url(\'/images/hero-llamas-2-small.jpg\')',
'hero-llama-3-small': 'url(\'/images/hero-llamas-3-small.jpg\')',
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
],
}