import defaultTheme from 'tailwindcss/defaultTheme'; import forms from '@tailwindcss/forms'; /** @type {import('tailwindcss').Config} */ export default { content: [ './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', './storage/framework/views/*.php', './resources/**/*.blade.php', './resources/**/*.js', './resources/**/*.vue', ], // TODO: We'll wants want to add something like a text colour, sub-text colour theme: { extend: { colors: { nexiPrimary: "rgb(var(--color-nexi-primary) / )", nexiSecondary: "rgb(var(--color-nexi-secondary) / )", nexiRed: "rgb(var(--color-nexi-red) / )", nexiGrey: "rgb(var(--color-nexi-grey) / )", nexiDarkerGrey: "rgb(var(--color-nexi-darker-grey) / )", nexiGreen: "rgb(var(--color-nexi-green) / )", nexiCyan: "rgb(var(--color-nexi-cyan) / )", nexiPurple: "rgb(var(--color-nexi-purple) / )", nexiOrange: "rgb(var(--color-nexi-orange) / )", }, fontFamily: { sans: ['Figtree', ...defaultTheme.fontFamily.sans], }, }, }, plugins: [forms], };