forked from spatie/laravel-medialibrary-pro-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
88 lines (85 loc) · 1.86 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
77
78
79
80
81
82
83
84
85
86
87
88
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
theme: {
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
},
colors: {
transparent: "transparent",
white: "#fff",
black: "#13034a",
blue: {
100: " #e4e8f5",
200: "#a19bb7",
300: "#938bae",
400: "#716993",
500: "#1288ff",
600: "#0574e3",
700: "#42376e",
800: "#1d4a75",
900: "#13034a",
},
indigo: {
100: " #d4d0e1",
200: "#a19bb7",
300: "#938bae",
400: "#716993",
500: "#1288ff",
600: "#0574e3",
700: "#42376e",
800: "#1d4a75",
900: "#13034a",
},
green: {
100: "#ebf9ea",
200: "#c7f0bf",
300: "#b6e4b3",
400: "rgb(135, 202, 138)",
500: "#5bba64",
600: "#429b59",
700: "#337c4d",
800: "#235c41",
900: "#133d35",
},
yellow: {
100: "#f5f1e4",
200: "#fde4a0",
300: "#ffe375",
400: "#fcc95c",
500: "#ffca2b",
600: "#da9215",
700: "#995218",
800: "#74431b",
900: "#4f331d",
},
red: {
100: "#f0e7e6",
200: "#f0d2d1",
300: "#de9fa6",
400: "#cc6875",
500: "#c42543",
600: "#a93147",
700: "#862f42",
800: "#632c3d",
900: "#402938",
},
gray: {
100: "#f5f3f1",
200: "#e5e3e1",
300: "#b8b5b0",
400: "#918f8b",
500: "#6b6a67",
600: "#575654",
700: "#4f4e4c",
800: "#3d3c3b",
900: "#242323",
}
},
extend: {},
},
variants: {
opacity: ["responsive", "hover", "focus", "group-hover"],
textColor: ["responsive", "hover", "focus", "group-hover"]
},
plugins: [],
}