forked from realodix/urlhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (48 loc) · 1.27 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
module.exports = {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
"./app/Livewire/**/*Table.php",
"./vendor/power-components/livewire-powergrid/resources/views/**/*.php",
"./vendor/power-components/livewire-powergrid/src/Themes/Tailwind.php",
],
presets: [
require('./vendor/power-components/livewire-powergrid/tailwind.config.js'),
],
theme: {
extend: {
colors: {
"uh-blue": "#3d5b99",
"uh-blue-2": "#005a9e",
"bg-primary": "#f8fafc",
"uh-bg-1": "#fff",
"uh-bg-2": "#f6f8fa",
"uh-border-color": "#d0d7de",
uh: {
1: "#344767",
"2a": "rgb(63 152 222)",
"2b": "rgb(53 140 208)",
"2c": "rgb(43 128 194)",
indigo: {
50: "rgb(247 246 253)",
100: "rgb(238 238 251)",
200: "rgb(213 212 245)",
300: "rgb(188 185 239)",
400: "rgb(138 133 228)",
500: "rgb(88 81 216)",
600: "rgb(79 73 194)",
700: "rgb(53 49 130)",
800: "rgb(40 36 97)",
900: "rgb(26 24 65)",
},
},
},
},
},
plugins: [
require("@tailwindcss/forms")({
strategy: "class",
}),
],
};