Skip to content
Snippets Groups Projects
tailwind.config.cjs 219 B
Newer Older
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["./src/**/*.{js,jsx,ts,tsx}",],
  theme: {
    extend: {
      colords: {
        'light-gray': '#718096',
      }
    },
  },
  plugins: [],
}