next-shopify-storefront
Version:
A Shopping Cart built with TypeScript, Tailwind CSS, Headless UI, Next.js, React.js, Shopify Hydrogen React,... and Shopify Storefront GraphQL API.
22 lines (20 loc) • 472 B
JavaScript
const colors = require('tailwindcss/colors');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: colors.indigo,
secondary: colors.gray,
success: colors.green,
info: colors.cyan,
danger: colors.red,
warning: colors.orange,
light: colors.white,
dark: colors.black,
},
},
},
plugins: [],
};