generated from twilson63/hypar
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (33 loc) · 786 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (33 loc) · 786 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
25
26
27
28
29
30
31
32
33
34
import daisyui from 'daisyui'
import typography from '@tailwindcss/typography'
export default {
content: ['./index.html', './src/**/*.{svelte,js,ts}'],
theme: {
extend: {
fontFamily: {
'poppins': ['Poppins']
},
},
},
plugins: [typography, daisyui],
daisyui: {
themes: [
{
now: {
primary: "#7189FF",
"primary-content": "#ffffff",
secondary: "#f000b8",
"secondary-content": "#ffffff",
accent: "#37cdbe",
"accent-content": "#163835",
neutral: "#3d4451",
"neutral-content": "#ffffff",
"base-100": "#ffffff",
"base-200": "#F2F2F2",
"base-300": "#E5E6E6",
"base-content": "#1f2937",
},
}
],
}
}