-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (52 loc) · 1.74 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
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
accentColor: "rgb(var(--accent-color) / <alpha-value>)",
bgColor: "rgb(var(--bg-color) / <alpha-value>)",
textColor: "rgb(var(--text-color) / <alpha-value>)",
accentLight: "rgb(var(--accent-light) / <alpha-value>)",
lightGrey: "rgb(var(--light-grey) / <alpha-value>)",
lightDark: "rgb(var(--light-dark) / <alpha-value>)",
hrOdd: "rgb(var(--hr-odd) / <alpha-value>)",
hrDark: "rgb(var(--hr-dark) / <alpha-value>)",
darkBg: "rgb(var(--dark-bg) / <alpha-value>)",
darkText: "rgb(var(--dark-text) / <alpha-value>)",
hrDarkOdd: "rgb(var(--hr-dark-odd) / <alpha-value>)",
},
// colors: {
// accentColor: "#7C94D2",
// bgColor: "white",
// textColor: "#283453",
// accentLight: "#89a4e9",
// lightGrey: "#EAEDF5",
// lightDark: "#343945",
// hrOdd: "#F5EAF0",
// darkBg: "#1D212A",
// darkText: "#E7ECF8",
// hrDarkOdd: "#403C40",
// },
fontFamily: {
inter: ["Inter", "sans-serif"],
gfsDidot: ["GFS Didot", "serif"],
raleway: ["Raleway", "sans-serif"],
monoton: ["Monoton", "cursive"],
},
keyframes: {
waves: {
"0%": { transform: "translateX(0)" },
"50%": { transform: "translateX(-50%) scaleY(120%)" },
"100%": { transform: "translateX(0%) scaleY(100%)" },
},
},
animation: {
waves: "waves 20s ease-in-out infinite",
},
},
},
plugins: [],
};