-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
29 lines (27 loc) · 894 Bytes
/
tailwind.config.js
File metadata and controls
29 lines (27 loc) · 894 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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
"./storage/framework/views/*.php",
"./resources/views/**/*.blade.php",
"./resources/js/**/*.jsx",
'node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}'
],
theme: {
extend: {
colors: {
primary: "#1aaedb",
// dark: "#26282A",
// darker: "#202021",
dark: "#1E293B",
darker: "#0F172A",
},
fontFamily: {
// sans: ["Figtree", ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [require("@tailwindcss/forms"), require('flowbite/plugin')],
};