| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- const colors = require('tailwindcss/colors');
- module.exports = {
- purge: {
- enabled: process.env.NODE_ENV === 'production',
- content: ['./layouts/**/*.html', './content/integration/**/*.md', './content/case-study/**/*.md'],
- },
- darkMode: false, // or 'media' or 'class'
- theme: {
- extend: {
- minHeight: {
- '25': '25vh',
- '50': '50vh',
- '70': '70vh',
- }
- },
- colors: {
- transparent: 'transparent',
- current: 'currentColor',
- brand: '#17C1FF',
- black: colors.black,
- white: colors.white,
- gray: colors.trueGray,
- blue: colors.cyan,
- indigo: colors.indigo,
- red: colors.rose,
- green: colors.green,
- yellow: colors.amber,
- },
- fontFamily: {
- 'sans': ['"Inter"', 'sans-serif'],
- 'display': ['"Lexend Deca"', 'sans-serif'],
- 'wordmark': ['"Didact Gothic"', 'sans-serif'],
- },
- },
- variants: {
- extend: {
- grayscale: ['group-hover']
- },
- },
- plugins: [
- require('@tailwindcss/forms'),
- require('@tailwindcss/typography'),
- require('@tailwindcss/aspect-ratio'),
- ],
- }
|