mirror of
https://github.com/different-ai/openwork
synced 2026-05-12 18:16:24 +02:00
15 lines
296 B
JavaScript
15 lines
296 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brandInk: "#161019",
|
|
brandOrange: "#ef7b35",
|
|
brandBlue: "#00a6fb"
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|