-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathtailwind.config.js
43 lines (42 loc) · 1.35 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
import forms from '@tailwindcss/forms';
import presetPowerGrid from './vendor/power-components/livewire-powergrid/tailwind.config.js';
import colors from 'tailwindcss/colors';
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./app/Livewire/**/*Table.php",
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
"./vendor/filament/**/*.blade.php",
"./vendor/power-components/livewire-powergrid/resources/views/**/*.php",
"./vendor/power-components/livewire-powergrid/src/Themes/Tailwind.php",
],
presets: [
presetPowerGrid,
],
theme: {
extend: {
colors: {
"primary-50": "#eef2ff",
"primary-100": "#e0e7ff",
"primary-200": "#c7d2fe",
"primary-300": "#a5b4fc",
"primary-400": "#818cf8",
"primary-500": "#6366f1",
"primary-600": "#4f46e5",
"primary-700": "#4338ca",
"primary-800": "#3730a3",
"uh-blue": "#3d5b99",
"border-200": "#e7e5e4",
"border-300": "#d6d3d1",
// PowerGrid
'pg-primary': colors.gray,
},
},
},
plugins: [
// forms({strategy: 'class'})
forms
],
};