forked from gdgbari/2023-web-devfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
110 lines (108 loc) · 2.5 KB
/
tailwind.config.cjs
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
const websiteConfig = require("./src/config");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {},
},
plugins: [
require('daisyui'),
],
theme: {
extend: {
colors: {
black: "#1e1e1e",
red: {
dark: "#8C2820",
DEFAULT: "#EA4335",
half: "#FF7DAF",
pastel: "#F8D8D8",
},
blue: {
dark: "#285092",
DEFAULT: "#4285F4",
half: "#57CAFF",
pastel: "#C3ECF6",
},
green: {
dark: "#1F6532",
DEFAULT: "#34A853",
half: "#5CDB6D",
pastel: "#CCF6C5",
},
yellow: {
dark: "#956700",
DEFAULT: "#F9AB00",
half: "#FFD427",
pastel: "#FFE7A5",
},
},
spacing: {
128: "32rem",
192: "48rem",
220: "60rem",
256: "64rem",
"8xl": "88rem",
},
},
},
daisyui: {
themes: [
{
mytheme: {
"primary": "#EA4335",
"primary-content": "#ffffff",
"secondary": "#FF7DAF",
"accent": "#57CAFF",
"neutral": "#C4C4C4",
"base-100": "#1e1e1e",
"base-200": "#BDBCBC",
"base-300": "#DDDDDD",
"base-content": "#1e1e1e",
"info": "#C3ECF6",
"success": "#34A853",
"warning": "#F9AB00",
"error": "#EA4335",
},
},
],
},
safelist: [
"md:text-end",
"left-0",
"left-[-16rem]",
"bg-black/30",
"bg-black/0",
"xl:col-span-1",
"xl:col-span-2",
"xl:col-span-3",
"xl:col-span-4",
"xl:col-span-5",
"xl:col-span-6",
"xl:col-span-7",
"xl:col-span-8",
"xl:col-span-9",
"xl:col-span-10",
"row-span-1",
"row-span-2",
"row-span-3",
"row-span-4",
"row-span-5",
"row-span-6",
"row-span-7",
"row-span-8",
"row-span-9",
"row-span-10",
"xl:row-span-2",
"bg-[url(/assets/images/gallery/01.webp)]",
"bg-[url(/assets/images/gallery/02.webp)]",
"bg-[url(/assets/images/gallery/03.webp)]",
"bg-[url(/assets/images/gallery/04.webp)]",
"bg-[url(/assets/images/gallery/05.webp)]",
"bg-[url(/assets/images/gallery/06.webp)]",
"bg-[url(/assets/images/gallery/07.webp)]",
"bg-[url(/assets/images/gallery/08.webp)]",
"bg-[url(/assets/images/gallery/09.webp)]",
"bg-[url(/assets/images/gallery/10.webp)]"
],
};