-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtailwind.config.js
More file actions
74 lines (72 loc) · 2.22 KB
/
tailwind.config.js
File metadata and controls
74 lines (72 loc) · 2.22 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import defaultTheme from 'tailwindcss/defaultTheme';
const colors = require('tailwindcss/colors')
/** @type {import('tailwindcss').Config} */
export default {
presets: [
require("./vendor/power-components/livewire-powergrid/tailwind.config.js"),
],
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.css",
'./app/Traits/*.php',
'./app/Http/Livewire/**/*Table.php',
'./vendor/power-components/livewire-powergrid/resources/views/**/*.php',
'./vendor/power-components/livewire-powergrid/src/Themes/Tailwind.php'
],
safelist: [
'btn-primary',
'btn-secondary',
'btn-accent',
'btn-error'
],
theme: {
extend: {
fontFamily: {
sans: ['Futura', ...defaultTheme.fontFamily.sans],
},
colors: {
"pg-primary": colors.gray,
"pg-secondary": colors.red,
},
spacing: {
'120': '30rem',
'144': '36rem',
},
},
},
darkMode: 'class',
plugins: [require("daisyui")],
daisyui: {
themes: [
{
light: {
"primary": "#494694",
"secondary": "#336a6b",
"accent": "#374151",
"neutral": "#344052",
"base-100": "#ffffff",
"base-200": "#e5e7eb",
"base-300": "#d5d9e0",
"info": "#1d4ed8",
"success": "#047857",
"warning": "#6d28d9",
"error": "#be123c",
},
dark: {
"primary": "#8b86eb",
"secondary": "#63c2af",
"accent": "#e1e8e7",
"neutral": "#111827",
"base-100": "#29374a",
"base-200": "#1f2937",
"base-300": "#1b2431",
"info": "#1d4ed8",
"success": "#047857",
"warning": "#6d28d9",
"error": "#be123c",
},
},
],
},
}