LaLiga-FrontEnd/tailwind.config.js

33 lines
927 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}'
],
theme: {
extend: {
colors: {
primary: { 300: '#f1cb8a', 500: '#FFAF24', 800: '#ce8404', 900: '#FFB800' },
secondary: '#4087ff',
terciary: { 500: '#2D403E', 600: '#1E3231' },
colorTextGrey: { 500: '#EEE' }
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))'
},
screens: {
mobileXS: '365px',
mobileSM: '414px',
desktop: '1200px'
},
fontFamily: {
roboto: ['Roboto Condensed', 'sans-serif'],
DMSans: ['DM Sans', 'sans-serif']
}
}
},
plugins: []
}