-
Notifications
You must be signed in to change notification settings - Fork 11
/
tailwind.config.js
32 lines (31 loc) · 938 Bytes
/
tailwind.config.js
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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
content: ["./resources/views/**/*.blade.php", "./resources/js/**/*.vue"],
theme: {
extend: {
fontFamily: {
sans: ["Figtree", ...defaultTheme.fontFamily.sans],
},
},
},
daisyui: {
themes: [
{
mytheme: {
primary: "#5eead4",
secondary: "#00beaa",
accent: "#00d3d5",
neutral: "#04040a",
"base-100": "#fffbff",
info: "#00daff",
success: "#00ff80",
warning: "#d3a100",
error: "#ff628c",
},
},
],
},
plugins: [require("daisyui"), require("@tailwindcss/typography")],
};