-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
85 lines (85 loc) · 2.3 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
animation: {
gradient: "gradient 6s linear infinite",
},
keyframes: {
gradient: {
to: { "background-position": "200% center" },
},
},
fontWeight: {
thin: "100",
extralight: "200",
light: "300",
normal: "400",
medium: "500",
semibold: "600",
bold: "700",
"extra-bold": "800",
black: "900",
},
fontFamily: {
sans: ["Overused\\ Grotesk", "sans-serif"],
display: ["Unbounded", "Overused\\ Grotesk"],
emblem: ["Neue Haas"],
symbol: ["Symbols"],
},
},
},
plugins: [require("daisyui")],
// daisyUI config (optional - here are the default values)
daisyui: {
themes: [
{
winnow: {
primary: "#507bf2",
"primary-focus": "#334a8a",
"primary-content": "#ffffff",
secondary: "#dc95ce",
"secondary-focus": "#ab6f9f",
"secondary-content": "#ffffff",
accent: "#f0ccaf",
"accent-focus": "#b89172",
"accent-content": "#000000",
neutral: "#2e2d2f",
"neutral-focus": "#171618",
"neutral-content": "#334a8a",
"base-100": "#080b15",
"base-200": "#0c101f",
"base-300": "#10172b",
"base-content": "#9fb6f7",
info: "#66c7ff",
success: "#87cf3a",
warning: "#e1d460",
error: "#ff6b6b",
},
levante: {
primary: "#ffffff",
"primary-focus": "#e6e6e6",
"primary-content": "#000000",
secondary: "#6491a2",
"secondary-focus": "#324d57",
"secondary-content": "#ffffff",
accent: "#924d57",
"accent-focus": "#6f3a42",
"accent-content": "#ffffff",
neutral: "#171618",
"neutral-focus": "#2e2d2f",
"neutral-content": "#80ccbf",
"base-100": "#151a19",
"base-200": "#2b4541",
"base-300": "#457069",
"base-content": "#c0f4eb",
info: "#66c7ff",
success: "#87cf3a",
warning: "#e1d460",
error: "#ff6b6b",
},
},
],
},
};