sospedra/semantic-password-generator

View on GitHub
packages/website/src/css/tailwind.config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  purge: {
    mode: 'all',
    content: ['./src/index.html'],
  },
  theme: {
    extend: {
      fontFamily: {
        sans: [
          'Lato',
          'system-ui',
          '-apple-system',
          'BlinkMacSystemFont',
          'Segoe UI',
          'Roboto',
          'Helvetica Neue',
          'Arial',
          'Noto Sans',
          'sans-serif',
          'Apple Color Emoji',
          'Segoe UI Emoji',
          'Segoe UI Symbol',
          'Noto Color Emoji',
        ],
      },
    },
  },
  variants: {
    backgroundColor: ['responsive', 'hover', 'focus', 'active'],
  },
  plugins: [],
}