32 lines
724 B
TypeScript
32 lines
724 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
const config: Config = {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./node_modules/@ciphera-net/ui/dist/**/*.{js,mjs}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// * Brand color: Orange (#FD5E0F) - used as accent only
|
|
brand: {
|
|
orange: {
|
|
DEFAULT: '#FD5E0F',
|
|
hover: '#E54E00',
|
|
},
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['var(--font-plus-jakarta-sans)', 'system-ui', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
}
|
|
export default config
|