-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
76 lines (68 loc) · 2.13 KB
/
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
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
74
75
76
const defaultTheme = require('tailwindcss/defaultTheme')
/** @type {import('tailwindcss').Config} */
module.exports = {
presets: [
require("./vendor/power-components/livewire-powergrid/tailwind.config.js"),
],
darkMode: 'media',
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.js',
'./app/Http/Livewire/**/*Table.php',
'./vendor/power-components/livewire-powergrid/resources/views/**/*.php',
'./vendor/power-components/livewire-powergrid/src/Themes/Tailwind.php',
'./app/Livewire/*.php',
'./app/PowerGridThemes/*.php'
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
colors: {
zephyr: {
50: "#f1fcf9",
100: "#cff8ec",
200: "#a0efda",
300: "#68e0c4",
400: "#38c8ab",
500: "#20ac92",
600: "#178a77",
700: "#166f61",
800: "#16594f",
900: "#174a42",
950: "#072c28",
},
dark: {
'eval-0': '#151823',
'eval-1': '#222738',
'eval-2': '#2A2F42',
'eval-3': '#2C3142',
},
},
},
},
daisyui: {
themes: [
{
light: {
...require("daisyui/src/theming/themes")["light"],
primary: "#20ac92",
},
dark: {
...require("daisyui/src/theming/themes")["dark"],
primary: "#20ac92",
},
},
],
},
plugins: [
require("daisyui"),
require('@tailwindcss/typography'),
require('@tailwindcss/forms')({
strategy: 'class',
})
],
}