-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.cjs
47 lines (47 loc) · 1.36 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
light: {
fondo: {
primary: "#fafbfc",
secondary: "#fff",
},
texto: {
primary: "#191919",
secondary: "#252525",
},
gray: {
primary: "#666",
secondary: "#bbb",
},
},
dark: {
fondo: {
primary: "#121212",
secondary: "#1a1a1a",
},
texto: {
primary: "#f3f3f3",
secondary: "#ccc",
},
gray: {
primary: "#999",
secondary: "#555",
},
},
primary: "#006fff",
},
gridTemplateColumns: {
modal: "auto 23rem",
},
maxHeight: {
"accordion-expanded": "500px",
},
},
},
darkMode: "class",
plugins: [],
};