-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.cjs
46 lines (43 loc) · 1.16 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
black: "#111111",
white: "#FFFFFF",
neutral: "#18181B",
"neutral-two": "2E3039",
"neutral-border": "#4B4C52",
"color-blue": "#1EA2F1",
"color-red": "#D03E3F",
"color-yellow": "#FBCC13",
footer: "#171717",
},
height: {
"1/2": "50vh",
},
variants: {
fill: ["hover", "focus"],
},
animation: {
"spin-slow": "spin 9s linear infinite",
},
backgroundImage: {
"blue-purple-gradient":
"linear-gradient(176deg, #2930A9 10.97%, #5D6BD1 290%)",
"radial-blur-gradient":
"radial-gradient(rgba(0, 0, 0, 0.45), transparent 70%)",
"grainy-gradient": "linear-gradient(to right, #FE3E70, transparent)",
},
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
},
fontSize: {
header: "3.5rem",
},
},
},
plugins: [],
};