21 lines
400 B
JavaScript
21 lines
400 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./app/**/*.{js,jsx,ts,tsx}",
|
|
"./components/**/*.{js,jsx,ts,tsx}",
|
|
"./hooks/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
presets: [require("nativewind/preset")],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
codex: "#10a37f",
|
|
claude: "#d97706",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|