Initial release v1.0.0
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
/** @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: [],
|
||||
}
|
||||
Reference in New Issue
Block a user