Initial release v1.0.0

This commit is contained in:
Kevin O'Neill
2025-12-25 18:58:06 -06:00
commit 021aec7a63
439 changed files with 116588 additions and 0 deletions
+25
View File
@@ -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: [],
}