Fonts & theme toggle component

This commit is contained in:
Ahmed Al-Taiar
2024-08-07 23:58:43 -04:00
parent 14c20d4315
commit 35548bf37a
10 changed files with 158 additions and 13 deletions

View File

@ -1,10 +1,13 @@
/** @type {import('tailwindcss').Config} */
export const content = ['src/**/*.{js,jsx,ts,tsx}']
export const theme = {
extend: {},
extend: {
fontFamily: {
syne: ['Syne', 'sans-serif'],
inter: ['Inter', 'sans-serif'],
},
},
}
export const plugins = [require('daisyui')]
export const daisyui = { themes: ['light', 'dark'] }