-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (36 loc) · 953 Bytes
/
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
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: {
pale: colors.cyan["100"],
lighter: colors.cyan["400"],
light: colors.cyan["500"],
DEFAULT: colors.cyan["700"],
dark: colors.cyan["800"],
darker: colors.cyan["900"],
},
},
fontFamily: {
display: ["Space Grotesk", ...defaultTheme.fontFamily.serif],
body: ["IBM Plex Sans", ...defaultTheme.fontFamily.sans],
},
animation: {
gradient: "bg-slide 15s ease infinite",
},
keyframes: {
"bg-slide": {
"0%, 100%": { backgroundPosition: "0% 50%" },
"50%": { backgroundPosition: "100% 50%" },
},
},
backgroundImage: {
"topograpy-pattern": "url('/svg/topography-pattern.svg')",
},
},
},
plugins: [require("@tailwindcss/forms")],
};