-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
94 lines (93 loc) · 2.47 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
89
90
91
92
93
94
const plugin = require("tailwindcss/plugin");
/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
extend: {
colors: {
secondary: {
DEFAULT: "#E2C2FF",
100: "#F7EDFF",
200: "#E2C2FF",
300: "#CD8BFF",
400: "#BA5FFF",
500: "#A937FF",
600: "#9A13FF",
},
primary: {
DEFAULT: "#271625",
100: "#2E232D",
200: "#2B1E2A",
300: "#291A27",
400: "#271625",
500: "#221520",
},
},
fontFamily: {
sans: ["Tektur"],
},
boxShadow: {
"inset-accent": "inset 0 0 10px #FCD0A1",
"inset-info": "inset 0 0 10px #78e5ee",
"inset-secondary": "inset 0 0 10px #E2C2FF",
"inset-left-info": "inset 15px 0 15px 15px #75e5ee",
},
textShadow: {
sm: "0 4px 8px var(--tw-shadow-color)",
DEFAULT: "0 2px 4px var(--tw-shadow-color)",
lg: "0 8px 16px var(--tw-shadow-color)",
},
animation: {
marquee: "marquee 30s linear infinite",
marquee2: "marquee2 30s linear infinite",
"spin-slow": "spin 3s linear infinite",
"spin-super-slow-backwards": "spin 60s linear infinite reverse",
"spin-super-slow": "spin 60s linear infinite",
"spin-even-slower": "spin 90s linear infinite",
"spin-even-slower-backwards": "spin 90s linear infinite reverse",
"bounce-slow": "bounce 3s linear infinite",
},
keyframes: {
marquee: {
"0%": { transform: "translateY(0%)" },
"100%": { transform: "translateY(-100%)" },
},
marquee2: {
"0%": { transform: "translateY(100%)" },
"100%": { transform: "translateY(0%)" },
},
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("daisyui"),
require("tailwind-scrollbar"),
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
"text-shadow": (value) => ({
textShadow: value,
}),
},
{ values: theme("textShadow") }
);
}),
],
content: [],
daisyui: {
themes: [
{
main: {
"base-100": "#1A0F1A",
"base-200": "#1e111d",
neutral: "#341D33",
accent: "#FCD0A1",
primary: "#271625",
info: "#78e5ee",
secondary: "#E2C2FF",
error: "#dc4762",
},
},
],
},
};