Skip to content

Commit

Permalink
fix: use correct paths in tailwind config
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschonti committed Nov 4, 2024
1 parent 996c0ee commit 1411aaa
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { nextui } from '@nextui-org/theme';
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
Expand All @@ -13,6 +13,10 @@ module.exports = {
sans: ['var(--font-sans)'],
mono: ['var(--font-mono)'],
},
colors: {
brand: '#157DBC',
brandHover: '#0F6396',
},
},
},
darkMode: 'class',
Expand Down

0 comments on commit 1411aaa

Please sign in to comment.