25 lines
663 B
JavaScript
25 lines
663 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
DEFAULT: '#fca200',
|
|
hover: '#e69200',
|
|
light: '#fcb84d',
|
|
dark: '#d48c00'
|
|
}
|
|
},
|
|
screens: {
|
|
'3xl': '1920px', // TV/Large Desktop
|
|
'4xl': '2560px', // 4K TV/Large TV
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |