-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
67 lines (67 loc) · 1.99 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
import defaultTheme from "tailwindcss/defaultTheme";
const plugin = require("tailwindcss/plugin");
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
"./storage/framework/views/*.php",
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
extend: {
colors: {
milk: "#f5f5f7",
brand: {
300: "#90A955",
400: "#596934",
500: "#3f4a25",
600: "#2d3520",
},
neutral: {
150: "#EBEBEB",
},
upcoming: {
light: "#E1F1E9",
main: "#3f4a25",
},
ongoing: {
light: "#FFF2E0",
main: "#FF9904",
},
completed: {
light: "#E0F6FB",
main: "#00B5DD",
},
cancelled: {
light: "#ECEBF4",
main: "#6258A6",
},
noshows: {
light: "#fae0e0",
main: "#642727",
},
},
size: {
17: "4.25rem",
18: "4.5rem",
19: "4.75rem",
},
fontFamily: {
clash: ["ClashDisplay-Variable", "sans-serif"],
poppins: ["Poppins", "sans-serif"],
},
gridTemplateColumns: {
3: "repeat(3, minmax(0, 1fr))",
},
screens: {
"3xl": "1600px", // Custom 3X large devices
"4xl": "1920px", // Custom 4X large devices
ultra: "2560px",
},
},
},
plugins: [],
darkMode: "class",
};