Files
openwork/packages/web/tailwind.config.js

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: []
};