-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (35 loc) · 872 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (35 loc) · 872 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
35
36
37
/** @type {import('tailwindcss').Config} */
import daisyui from "daisyui";
import typography from "@tailwindcss/typography";
export default {
content: ['./src/**/*.{svelte,js,ts}'],
plugins: [daisyui,typography],
daisyui: {
themes: [
{
abtheme: {
primary: "#36AB68",
"primary-content": "#ffffff",
secondary: "#5A3A31",
"secondary-content": "#ffffff",
accent: "#E96A56",
"accent-content": "#E96A56",
neutral: "#393E41",
"neutral-content": "#f9fafb",
"base-100": "#F0EEED",
"base-content": "#393E41",
"--btn-focus-scale": "1",
},
},
],
},
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'Verdana','sans-serif'],
serif: ['Inter', 'Verdana','serif']
},
},
},
darkmode: false
}