-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtailwind.config.js
More file actions
24 lines (23 loc) · 698 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
24 lines (23 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { addIconSelectors } from '@iconify/tailwind'
import typography from '@tailwindcss/typography'
import daisyui from 'daisyui'
import dt from 'tailwindcss/defaultTheme'
import themes from 'daisyui/src/theming/themes'
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter Variable', ...dt.fontFamily.sans]
}
}
},
plugins: [addIconSelectors(['mdi']), typography, daisyui],
daisyui: {
themes: [
{ light: { ...themes['light'], primary: '#1C75BC', 'primary-content': 'white' } },
{ dark: { ...themes['dark'], primary: '#1C75BC' } }
]
}
}